Rename a table in MySQL

前端 未结 16 1491
逝去的感伤
逝去的感伤 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

    For Mysql 5.6.18 use the following command

    ALTER TABLE `old_table` RENAME TO `new_table`

    Also if there is an error saying ".... near RENAME TO ..." try removing the tick `

提交回复
热议问题