ClickHouse/docs/en/query_language/table_functions/generate.md

39 lines
1.9 KiB
Markdown
Raw Normal View History

2020-03-06 02:19:55 +00:00
# generateRandom
2020-02-04 10:59:26 +00:00
Generates random data with given schema.
Allows to populate test tables with data.
2020-02-04 12:25:09 +00:00
Supports all data types that can be stored in table except `LowCardinality` and `AggregateFunction`.
2020-02-04 10:59:26 +00:00
```sql
generateRandom('name TypeName[, name TypeName]...', [, 'random_seed'[, 'max_string_length'[, 'max_array_length']]]);
2020-02-04 10:59:26 +00:00
```
**Parameters**
- `name` — Name of corresponding column.
- `TypeName` — Type of corresponding column.
- `limit` — Number of rows to generate.
- `max_array_length` — Maximum array length for all generated arrays. Defaults to `10`.
- `max_string_length` — Maximum string length for all generated strings. Defaults to `10`.
- `random_seed` — Specify random seed manually to produce stable results. If NULL — seed is randomly generated.
2020-02-04 10:59:26 +00:00
**Returned Value**
A table object with requested schema.
## Usage Example
```sql
SELECT * FROM generateRandom('a Array(Int8), d Decimal32(4), c Tuple(DateTime64(3), UUID)', 1, 10, 2);
2020-02-04 10:59:26 +00:00
```
```text
┌─a────────┬────────────d─┬─c──────────────────────────────────────────────────────────────────┐
│ [77] │ -124167.6723 │ ('2061-04-17 21:59:44.573','3f72f405-ec3e-13c8-44ca-66ef335f7835') │
│ [32,110] │ -141397.7312 │ ('1979-02-09 03:43:48.526','982486d1-5a5d-a308-e525-7bd8b80ffa73') │
│ [68] │ -67417.0770 │ ('2080-03-12 14:17:31.269','110425e5-413f-10a6-05ba-fa6b3e929f15') │
└──────────┴──────────────┴────────────────────────────────────────────────────────────────────┘
```
[Original article](https://clickhouse.tech/docs/en/query_language/table_functions/generate/) <!--hide-->