Answers for "sql query highest value in column"

SQL
5

sql display max value

SELECT MAX(<numeric column>) FROM <table>;
SELECT MAX(<numeric column>) FROM <table> GROUP BY <other column>;
Posted by: Guest on April-01-2020

Code answers related to "sql query highest value in column"

Code answers related to "SQL"

Browse Popular Code Answers by Language