|
|
|
|
|
by ace32229
1985 days ago
|
|
Here's an alternative I use all the time (without window functions) that I don't think is widely known! Works on SQL Server and I think is more performant?: SELECT department, first_name, salary
FROM salary AS s
WHERE s.[salary] = (
SELECT MAX(ex.[salary])
FROM salary AS ex
WHERE s.[department] = ex.[department])
|
|