Mysql
 sql >> Database >  >> RDS >> Mysql

MySql:è possibile 'SUM IF' o 'COUNT IF'?

Puoi usare un CASE dichiarazione:

SELECT count(id), 
    SUM(hour) as totHour, 
    SUM(case when kind = 1 then 1 else 0 end) as countKindOne