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

Printer friendly page