Answers for "add column mysql before column"

SQL
22

mysql alter table add column

ALTER TABLE vendors ADD COLUMN phone VARCHAR(15) AFTER name;
Posted by: Guest on November-07-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
11

mysql add column

ALTER TABLE table_name
ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];
Posted by: Guest on March-04-2020

Code answers related to "add column mysql before column"

Code answers related to "SQL"

Browse Popular Code Answers by Language