This SQL statement will return all rows from the 'Countries' table:
SELECT * FROM Countries;
Which of the following will return the number of rows in the Countries table?
1. SELECT * (COUNT) FROM Countries;
2. SELECT COUNT FROM Countries;
3. SELECT COUNT(*) FROM Countries;
4. All of the above.
Select one of the following: