FIRST function in MySQL
MySQL FIRST The MySQL FIRST function is used to get the first value of a column. Syntax: SELECT column, FROM table_name LIMIT num_rows; Parameters: num_rows: It is used to specify the number of rows to be displayed from the first row of the selected column. Example 1: Students Table: ID NAME AGE 1 Joy 10 … Read more