mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
5 lines
184 B
SQL
5 lines
184 B
SQL
WITH round(exp(number), 6) AS x, toUInt64(x) AS y, toInt32(x) AS z
|
|
SELECT formatReadableQuantity(x), formatReadableQuantity(y), formatReadableQuantity(z)
|
|
FROM system.numbers
|
|
LIMIT 50;
|