mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 15:42:02 +00:00
12 lines
555 B
SQL
12 lines
555 B
SQL
DROP TABLE IF EXISTS alter_test;
|
|
|
|
CREATE TABLE alter_test (CounterID UInt32, StartDate Date, UserID UInt32, VisitID UInt32, NestedColumn Nested(A UInt8, S String), ToDrop UInt32) ENGINE = MergeTree(StartDate, intHash32(UserID), (CounterID, StartDate, intHash32(UserID), VisitID), 8192);
|
|
|
|
INSERT INTO alter_test VALUES (1, '2014-01-01', 2, 3, [1,2,3], ['a','b','c'], 4);
|
|
|
|
ALTER TABLE alter_test ADD COLUMN Added0 UInt32;
|
|
ALTER TABLE alter_test ADD COLUMN Added2 UInt32;
|
|
ALTER TABLE alter_test ADD COLUMN Added1 UInt32 AFTER Added0;
|
|
|
|
DESC TABLE alter_test;
|