2017-01-09 44 views

回答

-1

如果我理解正確的話,你想找到總數,與激活狀態,並停用狀態的行數的行數。

如果是的話,試試這個:

select 
    count(*) count_all, 
    count(case when status = 'Activate' then 1 end) Activated, 
    count(case when status = 'Deactivate' then 1 end) Deactivated 
from beauty_users 
+0

嗨GurV不錯2,先生,這是一個正確的查詢 –

相關問題