Files
doris/docs/en/sql-manual/sql-functions/table-functions/explode-numbers.md
jiafeng.zhang 267e8b67c2 [refactor][doc]The new version of the document is online (#9272)
replace the `docs/` with `new-docs/`
2022-04-28 15:22:34 +08:00

1.2 KiB

title, language
title language
explode_numbers en

explode_numbers

description

Table functions must be used in conjunction with Lateral View.

Get a number sequence [0,n).

grammar:

explode_numbers(n)

example

mysql> select e1 from (select 1 k1) as t lateral view explode_numbers(5) tmp1 as e1;
+------+
| e1   |
+------+
|    0 |
|    1 |
|    2 |
|    3 |
|    4 |
+------+

keyword

explode_numbers