mysql alter table name code example

Example 1: how to edit table name in mysql

RENAME TABLE tb1 TO tb2;

Example 2: how to alter table name in mysql

ALTER TABLE table_name
  RENAME TO new_table_name;

Example 3: rename table in mysql

RENAME TABLE old_table TO new_table;

Example 4: how to alter table column name in mysql

ALTER TABLE your_table_name RENAME COLUMN original_column_name TO new_column_name;

Example 5: change column name in mysql

ALTER TABLE tableName CHANGE `oldcolname` `newcolname` datatype(length);

Example 6: rename table column name in mysql

ALTER TABLE table_name CHANGE old_column_name new_column_name datatype(length);

Tags:

Sql Example