2018-03-13 23:33:56 +00:00
|
|
|
|
# numbers
|
|
|
|
|
|
2018-04-23 06:20:21 +00:00
|
|
|
|
`numbers(N)` – Returns a table with the single 'number' column (UInt64) that contains integers from 0 to N-1.
|
2018-03-13 23:33:56 +00:00
|
|
|
|
|
2018-04-23 06:20:21 +00:00
|
|
|
|
Similar to the `system.numbers` table, it can be used for testing and generating successive values.
|
|
|
|
|
|
|
|
|
|
The following two queries are equivalent:
|
2018-03-13 23:33:56 +00:00
|
|
|
|
|
|
|
|
|
```sql
|
|
|
|
|
SELECT * FROM numbers(10);
|
|
|
|
|
SELECT * FROM system.numbers LIMIT 10;
|
|
|
|
|
```
|
|
|
|
|
|
2018-04-23 06:20:21 +00:00
|
|
|
|
Examples:
|
|
|
|
|
|
2018-03-13 23:33:56 +00:00
|
|
|
|
```sql
|
2018-04-23 06:20:21 +00:00
|
|
|
|
-- Generate a sequence of dates from 2010-01-01 to 2010-12-31
|
2018-03-13 23:33:56 +00:00
|
|
|
|
select toDate('2010-01-01') + number as d FROM numbers(365);
|
|
|
|
|
```
|
2018-04-23 06:20:21 +00:00
|
|
|
|
|