Parameter | Type |
---|---|
start | integer |
end | integer |
step | integer |
Returns: array
Example
Arrays are currently only supported on tables from a live connection to an Athena database. You cannot use them with other databases or with tables derived from an Athena database.
query:
SELECT GENERATE_SERIES(1, 5, 2)
results:
generate_series |
---|
1, 3, 5 |