Mysql
 sql >> Datenbank >  >> RDS >> Mysql

FALL WÄHLEN, WENN DANN (WÄHLEN)

Sie könnten das andere Format für die Case-Anweisung ausprobieren

CASE WHEN Product.type_id = 10
THEN
(
  Select Statement
)
ELSE
(
  Other select statement

)  
END
FROM Product 
WHERE Product.product_id = $pid

Siehe http://msdn.microsoft.com/en-us/library/ ms181765.aspx für weitere Informationen.