Reputation: 583
How can I make a range in a select in PostgreSQL? I'd like to have this result:
num
---
1
2
3
4
5
6
From a query like:
SELECT range(1,6) AS num;
Upvotes: 46
Views: 34952
Reputation: 425371
SELECT *
FROM generate_series(1, 6) num
https://www.postgresql.org/docs/current/functions-srf.html
Upvotes: 92