Answers for "mysql how to add a column to table"

SQL
15

add column in mysq

ALTER TABLE Table_name
ADD Email varchar(255);
Posted by: Guest on March-10-2020
1

mysql alter table add column

ALTER TABLE table ADD [COLUMN] column_name column_definition [FIRST|AFTER existing_column];
Posted by: Guest on October-06-2020

Code answers related to "mysql how to add a column to table"

Code answers related to "SQL"

Browse Popular Code Answers by Language