range
table-valued function
Returns a table of values within a specified range.
Arguments
start
: An optional BIGINT literal defaulted to 0, marking the first value generated.end
: A BIGINT literal marking endpoint (exclusive) of the number generation.step
: An optional BIGINT literal defaulted to 1, specifying the increment used when generating values.numParts
: An optional INTEGER literal specifying how the production of rows is spread across partitions,