Created
December 27, 2019 14:16
-
-
Save javrasya/63b15a5548c160c0c1dd741f3cb824ed 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, | |
(percent_rank() OVER w1) * 100 AS percent_rnk | |
FROM products p | |
window w1 AS ( PARTITION BY p.category ORDER BY p.product_id) | |
)t1 | |
WHERE t1.percent_rnk<50 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment