mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-08 16:42:04 +00:00
8 lines
362 B
SQL
8 lines
362 B
SQL
DROP TABLE IF EXISTS columns_transformers;
|
|
|
|
CREATE TABLE columns_transformers (i int, j int, k int, a_bytes int, b_bytes int, c_bytes int) Engine=TinyLog;
|
|
INSERT INTO columns_transformers VALUES (100, 10, 324, 120, 8, 23);
|
|
SELECT * EXCEPT 'bytes', COLUMNS('bytes') APPLY formatReadableSize FROM columns_transformers;
|
|
|
|
DROP TABLE IF EXISTS columns_transformers;
|