Online Course Support

For a table of students enrolled at a college, the query SELECT MIN(age) FROM students; gave one row in the results, with only one column. The value was 16. The query SELECT COUNT(*) FROM students WHERE age IS NULL returned the value 2827. Choose which of the following statements is most accurate and informative:

Question 7
For a table of students enrolled at a college, the query SELECT MIN(age) FROM students; gave one row in the results, with only one column. The value was 16. The query SELECT COUNT(*) FROM students WHERE age IS NULL returned the value 2827. Choose which of the following statements is most accurate and informative:

1 point

The lowest known age of a student in the students table is 16.

The lowest age of a student in the students table is 16.

The lowest age of a student in the students table is unknown.

Similar Posts