Answers for "add column to table that has data"

SQL
15

add column in mysq

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

mysql alter table add column

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

Code answers related to "add column to table that has data"

Code answers related to "SQL"

Browse Popular Code Answers by Language