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
I may be missing something mysql specific but this would work in sql server
SELECT COUNT(*) as num FROM users WHERE user_id = '$user_id' AND average IS NULL