mirror of
https://github.com/GreptimeTeam/greptimedb.git
synced 2026-01-12 16:22:59 +00:00
* feat: status_code in response header * chore: parese grpc response * fix: sqlness failed * chore: fix sqlness
16 lines
283 B
SQL
16 lines
283 B
SQL
CREATE TABLE test(i BIGINT TIME INDEX, j INTEGER, k INTEGER NOT NULL);
|
|
|
|
INSERT INTO test VALUES (1, 1, 11), (2, 2, 12);
|
|
|
|
SELECT * FROM test;
|
|
|
|
ALTER TABLE test DROP COLUMN j;
|
|
|
|
INSERT INTO test VALUES (3, NULL);
|
|
|
|
INSERT INTO test VALUES (3, 13);
|
|
|
|
SELECT * FROM test;
|
|
|
|
DROP TABLE test;
|