我想根据表打印1到10个数字。
表1
空
1 2 3 4 。 。 10
我有一张表,表中只包含一条记录...使用此表我想打印1到10个数字请告诉我
我是这样写的......有没有其他方式来写这个
select 1 union all select 2 union all select 3 union all select 4 union all select 5 union all from table1;
或 从table1中选择generate_series(1,10);
答案 0 :(得分:3)
因为你的问题几乎没有有用的信息,所以我只是简单地提供一个指向文档的链接。看看generate_series()
http://www.postgresql.org/docs/current/static/functions-srf.html