Answers for "how to add a new column in existing table in mysql"

SQL
22

mysql alter table add column

ALTER TABLE vendors ADD COLUMN phone VARCHAR(15) AFTER name;
Posted by: Guest on November-07-2020
5

add column in mysq

ALTER TABLE Table_name ADD name_column INT(255);
Posted by: Guest on March-12-2020

Code answers related to "how to add a new column in existing table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language