how to add a column to a an existing table mysql code example
Example 1: create column mysql terminal
alter table icecream add column flavor varchar (20) ;
Example 2: add new column to the table mysql
ALTER TABLE `TABLE_NAME`
ADD `COLUMN_NAME` VARCHAR(50) NULL
AFTER `COLUMN_NAME_AFTER`;
Example 3: mysql add column
ALTER TABLE table_name
ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];