ClickHouse/docs/tr/sql-reference/table-functions/numbers.md
Ivan Blinkov d91c97d15d
[docs] replace underscores with hyphens (#10606)
* Replace underscores with hyphens

* remove temporary code

* fix style check

* fix collapse
2020-04-30 21:19:18 +03:00

31 lines
943 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
machine_translated: true
machine_translated_rev: e8cd92bba3269f47787db090899f7c242adf7818
toc_priority: 39
toc_title: "\u015Fiir"
---
# şiir {#numbers}
`numbers(N)` Returns a table with the single number 0dan n-1e kadar tamsayılar içeren sütun (Uİnt64).
`numbers(N, M)` - Tek bir tablo döndürür number nden (n + M - 1) tamsayıları içeren sütun (Uİnt64).
Benzer `system.numbers` tablo, ardışık değerleri test etmek ve üretmek için kullanılabilir, `numbers(N, M)` daha verimli `system.numbers`.
Aşağıdaki sorgular eşdeğerdir:
``` sql
SELECT * FROM numbers(10);
SELECT * FROM numbers(0, 10);
SELECT * FROM system.numbers LIMIT 10;
```
Örnekler:
``` sql
-- Generate a sequence of dates from 2010-01-01 to 2010-12-31
select toDate('2010-01-01') + number as d FROM numbers(365);
```
[Orijinal makale](https://clickhouse.tech/docs/en/query_language/table_functions/numbers/) <!--hide-->