A table 'students' that has some rows in it (table image is given below). How many rows this table have? I want to know that. So I will use SQL COUNT() function.

For this, SQL provides a COUNT() function. With the help of that, we can get the total number of rows.
SQL Count() function example
SELECT COUNT(*) FROM students;
Publish A Comment