Answers for "mysql select row with max value group by"

SQL
2

mysql select row with max value group by

SELECT t1.*
FROM employees t1
INNER JOIN (
    SELECT id, max(salary) AS salary FROM employees GROUP BY id
) t2 ON t1.id = t2.id AND t1.salary = t2.salary;
Posted by: Guest on April-22-2021

Code answers related to "mysql select row with max value group by"

Code answers related to "SQL"

Browse Popular Code Answers by Language