Which of the following queries on table STUDENT will return number 2 as a result?
A) SELECT COUNT(*) FROM student;
B) SELECT COUNT(name) FROM student;
C) SELECT COUNT(class) FROM student;
D) SELECT COUNT(DISTINCT class) FROM student;
D
Business