SQL COUNT() returns the number of rows
Table – Students
+—–+——+——-+——-+——-+
| sid | name | mark1 | mark2 | mark3 |
+—–+——+——-+——-+——-+
| 1 | AAAA | 30 | 35 | 40 |
| 2 | BBBB | 36 | 37 | 38 |
| 3 | CCCC | 42 | 43 | 44 |
| 4 | DDDD | 43 | 32 | 39 |
+—–+——+——-+——-+——-+
Example
mysql> SELECT COUNT(*) AS total FROM students ;
+——-+
| total |
+——-+
| 4 |
+——-+
1 row in set (0.01 sec)