ClickHouse/dbms/tests/queries/0_stateless/00014_1_create_table_with_nested.sql

4 lines
230 B
MySQL
Raw Normal View History

DROP TABLE IF EXISTS nested_test;
CREATE TABLE nested_test (s String, nest Nested(x UInt8, y UInt32)) ENGINE = Memory;
INSERT INTO nested_test VALUES ('Hello', [1,2], [10,20]), ('World', [3,4,5], [30,40,50]), ('Goodbye', [], []);