Which function returns the number of rows in a result set including those with NULL values in a column?
- A COUNT(column)
- B COUNT(*)
- C SUM(column)
- D TOTAL(*)
Answer
COUNT(*)
COUNT(*) counts rows. COUNT(column) counts only rows where that column is not NULL, which is a frequent source of unexpected results.





