Answers for "alter column of a table in mysql"

SQL
5

how to alter table column name in mysql

ALTER TABLE your_table_name RENAME COLUMN original_column_name TO new_column_name;
Posted by: Guest on August-28-2020
1

alter table mysql

ALTER TABLE contacts
  ADD last_name varchar(40) NOT NULL
    AFTER contact_id,
  ADD first_name varchar(35) NULL
    AFTER last_name;
Posted by: Guest on April-14-2020

Code answers related to "alter column of a table in mysql"

Code answers related to "SQL"

Browse Popular Code Answers by Language