SQL -Structured Query Language - Sql Select - Select - First Tutorial
To retrieve the first value of the specific column from the existing created table. Then we can use a ' SELECT ' statement with First Function.
Syntax-
The basic syntax of the SELECT statement with the First Function is given below –
SELECT FIRST(column_name) FROM table_name;
For example-
SELECT FIRST(name) FROM user_detail;
Here it will retrieve the first value of the name column from the user_detail table.