- generate_series(start, stop)
描述:生成一个数值序列,从start到stop,步长为1。
参数类型:int、bigint、numeric
返回值类型:setof int、setof bigint、setof numeric(与参数类型相同)
- generate_series(start, stop, step)
描述:生成一个数值序列,从start到stop,步长为step。
参数类型:int、bigint、numeric
返回值类型:setof int、setof bigint、setof numeric(与参数类型相同)
- generate_series(start, stop, step interval)
描述:生成一个数值序列,从start到stop,步长为step。
参数类型:timestamp或timestamp with time zone
返回值类型:setof