change type column mysql code example
Example 1: alter table column change data type to text mysql
ALTER TABLE tablename MODIFY columnname INTEGER;
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: alter table add column
ALTER TABLE table
ADD COLUMN column VARCHAR (255) NOT NULL AFTER column;
Example 4: mysql alter table add column
ALTER TABLE table ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];