Created
May 12, 2017 00:16
-
-
Save vincentdesmares/ab48aa9b9059641f368f061372d08bfd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT * | |
FROM ( | |
SELECT | |
*, | |
row_number() | |
OVER ordered_report_by_category | |
FROM | |
employe | |
WINDOW ordered_report_by_category AS ( | |
PARTITION BY | |
category | |
ORDER BY | |
salary DESC | |
RANGE | |
BETWEEN UNBOUNDED PRECEDING | |
AND UNBOUNDED FOLLOWING | |
) | |
) tmp | |
WHERE | |
row_number <= 2 | |
; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment