You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WITH toks AS (
SELECT DATETIME "2024-01-07 00:00:00"as dt
UNION ALLSELECT DATETIME "2024-01-01 00:00:00"UNION ALLSELECTnull
)
SELECT dt,
ROW_NUMBER() OVER (ORDER BY dt DESC NULLS FIRST),
ROW_NUMBER() OVER (ORDER BY dt DESC NULLS LAST)
FROM toks
Expected
dt
rn1
rn2
2024-01-07 00:00:00
2
1
2024-01-01 00:00:00
3
2
null
1
3
Actual
dt
rn1
rn2
2024-01-07 00:00:00
2
2
2024-01-01 00:00:00
3
3
null
1
1
The text was updated successfully, but these errors were encountered:
ohaibbq
changed the title
[Windowing] ORDER BY .. NULLS FIRST /. LAST not implemented
[Windowing] ORDER BY .. NULLS FIRST /.LAST not implemented
Feb 1, 2024
ohaibbq
changed the title
[Windowing] ORDER BY .. NULLS FIRST /.LAST not implemented
[Windowing] ORDER BY .. NULLS FIRST / LAST not implemented
Feb 1, 2024
Expected
Actual
The text was updated successfully, but these errors were encountered: