Answers for "sql query max results"

SQL
6

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
1

sql limit to 5 results

SELECT expressions
FROM tables
[WHERE conditions]
[ORDER BY expression [ ASC | DESC ]]
LIMIT number_rows [ OFFSET offset_value ];
Posted by: Guest on August-14-2020

Code answers related to "sql query max results"

Code answers related to "SQL"

Browse Popular Code Answers by Language