How to count NULL values in MySQL?

前端 未结 7 1154
猫巷女王i
猫巷女王i 2021-02-04 03:56

I want to know how can i find all the values that are NULL in the MySQL database for example I\'m trying to display all the users who don\'t have an average yet.

Here i

相关标签:
7条回答
  • 2021-02-04 04:58

    This is a one liner that also could be used for this problem :

    SELECT COUNT(IF(average IS NULL,1,0))
    FROM table; 
    

    It worked like a charm for me!

    0 讨论(0)
提交回复
热议问题