alter change col name mysql code example

Example 1: how to edit table name in mysql

RENAME TABLE tb1 TO tb2;

Example 2: change column name mysql command line

ALTER TABLE `members` CHANGE COLUMN `full_names` `fullname` varchar(100) NOT NULL;

Example 3: how to alter table name in mysql

ALTER TABLE table_name
  RENAME TO new_table_name;

Example 4: rename column mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);
(you can remove the backticks if it doesn't work)

Tags:

Sql Example