Created
December 27, 2019 14:12
-
-
Save javrasya/95c57739caf107afb2ae09a9b4d048dc 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 | |
p.category, | |
p.product_name, | |
p.product_description | |
FROM ( | |
SELECT | |
p.category, | |
p.product_name, | |
p.product_description, | |
rank() over w1 rnk | |
FROM products p | |
window w1 AS ( PARTITION BY p.category ORDER BY p.product_id) | |
)t1 | |
WHERE t1.rnk<2 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment