コード:
SELECT
count(*) as count,
sum(Status = 'test1') as count_test1,
sum(Status = 'test2') as count_test2
FROM Table
WHERE Type = 'test'
その結果、次のように表示されます。
count count_test1 count_test2
0 NULL NULL
教えてください NULL の代わりに 0 を表示することは可能ですか?
PS: その結果は次のとおりです。
count count_test1 count_test2
0 0 0