mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
10 lines
331 B
SQL
10 lines
331 B
SQL
DROP TABLE IF EXISTS tuple;
|
|
CREATE TABLE tuple (t Tuple(Date, UInt32, UInt64)) ENGINE = Memory;
|
|
INSERT INTO tuple VALUES ((concat('2000', '-01-01'), /* Hello */ 12+3, 45+6));
|
|
|
|
SET input_format_values_interpret_expressions = 0;
|
|
INSERT INTO tuple VALUES (('2000-01-01', 123, 456));
|
|
|
|
SELECT * FROM tuple ORDER BY t;
|
|
DROP TABLE tuple;
|