Which statement is used to count number of rows in table?

Which statement is used to count number of rows in table?
SELECT COUNT(*) FROM table_name;
Well Done. Your Answer is Correct Keep it Up!
SELECT COUNT ALL(*) FROM table_name;
SELECT ROWS(*) FROM table_name;
All options are correct

Leave a Reply

Your email address will not be published. Required fields are marked *