Rename a table in MySQL

前端 未结 16 1473
逝去的感伤
逝去的感伤 2020-12-04 07:08

Renaming a table is not working in MySQL

RENAME TABLE group TO member;

The error message is



        
16条回答
  •  遥遥无期
    2020-12-04 07:19

    According to mysql docs: "to rename TEMPORARY tables, RENAME TABLE does not work. Use ALTER TABLE instead."

    So this is the most portable method:

    ALTER TABLE `old_name` RENAME `new_name`;
    

提交回复
热议问题