How to use COUNT CASE and WHEN statement in MySQL query, to count when data is NULL and when it is not NULL in one MySQL query?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Use:
That will sum up the column NULL & not NULL for the entire table. It's likely you need a GROUP BY clause, depending on needs. |
|||||
|
COUNT(col)= Number ofNOT NULL.COUNT(*) - COUNT(col)= Number ofNULLWhy do you needCASE? – Martin Smith Feb 18 '11 at 18:31