13

Consider the following SQL query and response:

CREATE TEMPORARY TABLE dreams (name text, type text);
INSERT INTO dreams VALUES ('Monkey', 'nice');
INSERT INTO dreams VALUES ('Snake', 'Not nice');
INSERT INTO dreams VALUES ('Donkey', 'nice');
INSERT INTO dreams VALUES ('Bird', 'nice');

SELECT name from dreams WHERE type='nice' ORDER BY name;
  name
--------
 Bird
 Donkey
 Monkey
(3 rows)

I would like to enumerate the results by the order of appearance, regardless of any existing ids, for convenience. The expected result should be something a-la:

SELECT <magic_enumeration>, name from dreams WHERE type='nice' ORDER BY name;

 magic_enumeration |  name
-------------------+--------
 1                 | Bird
 2                 | Donkey
 3                 | Monkey
(3 rows)    

Any ideas how to enumerate the query result by order of appearance?

1 Answer 1

18

Try using row_number, which is a windowing function

SELECT row_number() OVER (ORDER BY name) sid, <-- magic enumeration!
       name 
  FROM dreams 
  WHERE type='nice' 
  ORDER BY name;
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.