Untitled

Anonymous
plain_text
04/20/2023 8:04 PM
204 B
10
Indexable
WITH p AS
    (SELECT *,
       ROW_NUMBER() OVER (ORDER BY created_at) AS rang
    FROM tools_shop.users)
SELECT user_id
FROM p
WHERE rang = 2021;
Editor is loading...