SQL - Aggregate Functions
Which of the following is the correct syntax to count only non-NULL values in the column
age from the table persons?age from the table persons?COUNT(column) counts only non-NULL values in that column.SELECT COUNT(age) FROM persons; correctly counts non-NULL age values.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions