mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 03:53:41 +00:00
862 B
862 B
machine_translated | machine_translated_rev | toc_priority | toc_title |
---|---|---|---|
true | b111334d66 |
39 | 数字 |
数字
numbers(N)
– Returns a table with the single ‘number’ 包含从0到N-1的整数的列(UInt64)。
numbers(N, M)
-返回一个表与单 ‘number’ 包含从N到(N+M-1)的整数的列(UInt64)。
类似于 system.numbers
表,它可以用于测试和生成连续的值, numbers(N, M)
比 system.numbers
.
以下查询是等效的:
SELECT * FROM numbers(10);
SELECT * FROM numbers(0, 10);
SELECT * FROM system.numbers LIMIT 10;
例:
-- Generate a sequence of dates from 2010-01-01 to 2010-12-31
select toDate('2010-01-01') + number as d FROM numbers(365);