| SQL MIN |
|
When you need to find the minimum value of a column, you can use the SQL MIN function. The result will return a single record with the lowest value of the specified column. The syntax for the MIN function is: SELECT MIN("column_name") Table: Student
For example if want to find the minimum value of a course fees we would use the following statement:
RESULT:
|