ALTER TABLE ... ADD COLUMN
Jump to navigation
Jump to search
Add a column to a table
schema:scott
This is in the SQL standard <a href="http://sqlzoo.net/sql92.html#alter_table_statement">ALTER TABLE</a> The term COLUMN is optional.
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