Return to Snippet

Revision: 65102
at October 24, 2013 19:24 by lyroge


Initial Code
/* Add Column */
ALTER TABLE [TableName] ADD COLUMN [ColumnName] VARCHAR(20);

/* Drop Column */
ALTER TABLE [TableName] DROP [ColumnName];

Initial URL


Initial Description
Drop and Add Column for Table of Mysql

Initial Title
Drop and Add Column for Table of Mysql

Initial Tags
mysql

Initial Language
MySQL