Answers for "how to get the right row value with the max of another column in sql"

SQL
1

sql select whole row max column

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 "how to get the right row value with the max of another column in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language