select id, work
from (
select id, work, row_number() over (order by work) as rn
from x
) t
where rn = 1 -- or 2 or 3 ...
WPRKSPACES - In September 2025, Snowflake introduced Workspaces, which combines the functionality of Worksheets, Notebooks, File Manager, Q...
No comments:
Post a Comment