You need to enable JavaScript to run this app.
导航
system.numbers_mt
最近更新时间:2025.10.30 16:43:30首次发布时间:2025.10.30 16:43:30
复制全文
我的收藏
有用
有用
无用
无用

系统表 system.numbers_mt 与系统表 system.numbers 相同,但其读取是并行化的,数字可以按任意顺序返回。适合用于生成测试数据或进行数据填充。
示例
查询数据:

SELECT * FROM system.numbers_mt LIMIT 10;

查询结果:

┌─number─┐
│      0 │
│      1 │
│      2 │
│      3 │
│      4 │
│      5 │
│      6 │
│      7 │
│      8 │
│      9 │
└────────┘