ALTER TABLE ... ADD COLUMN
From SQLZOO
Add a column to a table
schema:scott
Naturally, all of the data in the table is lost when the table is dropped.
Foreign Key references can cause problems.
DROP TABLE a
CREATE TABLE a(x INTEGER, y INTEGER); INSERT INTO a VALUES (1,2);
ALTER TABLE a ADD COLUMN z INTEGER
ALTER TABLE a ADD z INTEGER
ALTER TABLE ... ADD COLUMN