mysql 快速 修改 表名

由於大小寫敏感問題,先把mysql設置爲大小寫敏感,修改表名後,再修改成不敏感。mysql

第一步 把表名複製出來

nano /etc/mysql/my.cnfsql

select table_name from information_schema.tables where table_schema='scm' ;

第二步 重命名

使用編輯器,能夠批量修改服務器

alter table BUNDLE_ACTIONS rename bundle_actions;

第三步 重啓服務器

/etc/init.d/mysql stop && /etc/init.d/mysql start
相關文章
相關標籤/搜索