Answers for "alter mysql table data type"

SQL
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
9

alter table add column

ALTER TABLE table_name 
ADD column_name datatype;
Posted by: Guest on July-08-2020

Code answers related to "alter mysql table data type"

Code answers related to "SQL"

Browse Popular Code Answers by Language