Is there a better (more performant) way to join on the MAX(id) (without using a subselect) than my actual way? We are dealing with huge databases and are trying to optimize as much as possible
SELECT e.*, r.report_name FROM report r
LEFT JOIN engineer e ON e.id = r.id
WHERE e.id = (SELECT MAX(id) FROM engineer WHERE process = r.process)
Thanks in advance!
One other option: pre-aggregate the entire set, then
JOIN
to it to filter your other tables. This will treat it like a table, rather than executing the same SELECT for every single row that you run into; set-based logic versus row-by-agonizing-row.