Skip to content

Instantly share code, notes, and snippets.

@James-McNeill
Created February 19, 2022 20:47
Show Gist options
  • Save James-McNeill/37c9f344c6bd36c06e05b32d859a47b4 to your computer and use it in GitHub Desktop.
Save James-McNeill/37c9f344c6bd36c06e05b32d859a47b4 to your computer and use it in GitHub Desktop.
-- Ranking functions
SELECT *,
RANK()
OVER(
PARTITION BY t1.Area, t1.Property_type
ORDER BY t1.Value DESC
) rankValue,
ROW_NUMBER()
OVER(
PARTITION BY t1.Area, t1.Property_type
ORDER BY t1.Date
) rowNumber
FROM Medium.dbo.HPM09_202112 AS t1
WHERE t1.Value > 0
AND t1.Date BETWEEN '2020-01-01' AND '2020-06-01'
ORDER BY t1.Area, t1.Property_type, t1.Date
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment