how to change the data type of a column in 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_name
ADD column_name datatype;