Answers for "how to find max in sql for the specified year"

SQL
1

sql where max date

SELECT report_id, computer_id, date_entered
FROM reports AS a
WHERE date_entered = ( SELECT MAX(date_entered) FROM reports );
Posted by: Guest on July-08-2021
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

Code answers related to "how to find max in sql for the specified year"

Code answers related to "SQL"

Browse Popular Code Answers by Language