Q. With SQL, how can you return the number of not null records in the “Persons” table? (Solved)
1. SELECT COUNT() FROM Persons
2. SELECT COLUMNS() FROM Persons
3. SELECT COLUMNS(*) FROM Persons
4. SELECT COUNT(*) FROM Persons
- a. SELECT COUNT() FROM Persons