|
Main Menu
Resources
|
SQL MIN
The SQL MIN aggregate function is used to determine the smallest values respectively in a column. The SQL MIN syntax is looks like this: SELECT MIN ( [COLUMN NAME] )
We can see with a simple example which is return smallest value of the scores in the table. Table GameScores
SQL statement : SELECT MIN(Scores) Result:
|
|||||||||||||||||||||||

Printer friendly page