Answers for "how to add column in mysql server"

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

mysql add column to table

ALTER TABLE contacts
  ADD last_name varchar(40) NOT NULL
    AFTER contact_id;
Posted by: Guest on August-12-2021

Code answers related to "how to add column in mysql server"

Code answers related to "SQL"

Browse Popular Code Answers by Language