mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
42de5ac8f0
provide Chinese version of the doc
1.4 KiB
1.4 KiB
toc_priority | toc_title |
---|---|
46 | 随机数生成 |
随机数生成表引擎
随机数生成表引擎为指定的表模式生成随机数
使用示例:
- 测试时生成可复写的大表
- 为复杂测试生成随机输入
CH服务端的用法
ENGINE = GenerateRandom(random_seed, max_string_length, max_array_length)
生成数据时,通过max_array_length
设置array列的最大长度, max_string_length
设置string数据的最大长度
该引擎仅支持 SELECT
查询语句.
该引擎支持能在表中存储的所有数据类型 DataTypes ,除了 LowCardinality
和 AggregateFunction
.
示例
1. 设置 generate_engine_table
引擎表:
CREATE TABLE generate_engine_table (name String, value UInt32) ENGINE = GenerateRandom(1, 5, 3)
2. 查询数据:
SELECT * FROM generate_engine_table LIMIT 3
┌─name─┬──────value─┐
│ c4xJ │ 1412771199 │
│ r │ 1791099446 │
│ 7#$ │ 124312908 │
└──────┴────────────┘
实现细节
- 以下特性不支持:
ALTER
SELECT ... SAMPLE
INSERT
- Indices
- Replication