Q.

With SQL, how can you return the number of not null records in the “Persons” table?

A. SELECT COUNT() FROM Persons
B. SELECT COLUMNS() FROM Persons
C. SELECT COLUMNS(*) FROM Persons
D. SELECT COUNT(*) FROM Persons
Answer» D. SELECT COUNT(*) FROM Persons
810
0
Do you find this helpful?
8

Discussion

D. Deepak (Desktop)
5 months ago

Corrected
Answer is D
1

Related MCQs