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