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