mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-05-16 21:10:38 +00:00
10 lines
171 B
SQL
10 lines
171 B
SQL
CREATE TABLE test(i INTEGER, j BIGINT TIME INDEX);
|
|
|
|
INSERT INTO test VALUES (1, 1), (2, 2);
|
|
|
|
ALTER TABLE test ADD COLUMN k INTEGER;
|
|
|
|
SELECT * FROM test;
|
|
|
|
DROP TABLE test;
|