mysql command add column to table code example
Example 1: add new column to the table mysql
ALTER TABLE `TABLE_NAME`
ADD `COLUMN_NAME` VARCHAR(50) NULL
AFTER `COLUMN_NAME_AFTER`;
Example 2: mysql alter table add column
ALTER TABLE table ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];