Answers for "how to change column type with data in mysql"

SQL
6

alter table column change data type to text mysql

ALTER TABLE tablename MODIFY columnname INTEGER;
Posted by: Guest on September-12-2020
9

add new column to the table mysql

ALTER TABLE `TABLE_NAME` 
	ADD `COLUMN_NAME` VARCHAR(50) NULL
    AFTER `COLUMN_NAME_AFTER`;
Posted by: Guest on August-20-2020

Code answers related to "how to change column type with data in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language