SQL FIRST() returns the first value of the selected column.
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
SELECT FIRST(*) AS total FROM students ;