I got a database contain employee name and month days in front of it
id name 1 2 3 4
----- ------ --- -- --- ---
1 Mark half full full half
i would like to count the number of columns which contain value half and number of columns which contain full value
like if i want to count null values i write
select is null(`1`)+ is null (`2`) as count from employee where id = 280
so what should i do or which query can solve this problem for me