Which of the following commands will return the number of null values in the member_id column?
- ASELECT count(member_id) FROM my_table;
- BSELECT count(member_id) - count_null(member_id) FROM my_table;
- CSELECT count_if(member_id IS NULL) FROM my_table; (correct answer)
- DSELECT null(member_id) FROM my_table;
- ESELECT count_null(member_id) FROM my_table;
Reveal answer & explanationHide answer
The correct answer is C. Option C: SELECT count_if(member_id IS NULL) FROM my_table;




