由於大小寫敏感問題,先把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