sql select the record with max date code example
Example 1: sql select row with max date
SELECT t1.*
FROM employees t1
INNER JOIN (
SELECT id, max(job_start) AS job_start FROM employees GROUP BY id
) t2 ON t1.id = t2.id AND t1.job_start = t2.job_start;
Example 2: where date = max(date) in sql
SELECT report_id, computer_id, date_entered
FROM reports AS a
WHERE date_entered = ( SELECT MAX(date_entered) FROM reports );