mysql:add_a_column_to_an_existing_table
This is an old revision of the document!
MySQL - Add a column to an existing table
ALTER TABLE table_name ADD new_column INT NOT NULL; ALTER TABLE table_name ADD new_column VARCHAR(50) AFTER existing_column; ALTER TABLE table_name ADD new_column VARCHAR(50) FIRST;
mysql/add_a_column_to_an_existing_table.1467419477.txt.gz · Last modified: 2020/07/15 09:30 (external edit)