79160268

Date: 2024-11-05 18:21:02
Score: 0.5
Natty:
Report link

An even simpler solution is to use WHERE to filter out all NULL from VALUE:

SELECT USER_ID, VALUE, RANK() OVER(ORDER BY VALUE DESC) FROM yourtable
WHERE VALUE IS NOT NULL
Reasons:
  • Whitelisted phrase (-1): solution is
  • Low length (1):
  • Has code block (-0.5):
  • Low reputation (1):
Posted by: NoKryst13