首先在mysql中运行以下sql语句:
Select CONCAT( 'ALTER TABLE ', 表名, 'RENAME TO xxxx_', substring(表名,数字),';' )
FROM information_schema.tables
Where table_name LIKE '前缀%';
得到批量重命名的sql语句
然后执行这些sql语句
首先在mysql中运行以下sql语句:
Select CONCAT( 'ALTER TABLE ', 表名, 'RENAME TO xxxx_', substring(表名,数字),';' )
FROM information_schema.tables
Where table_name LIKE '前缀%';
得到批量重命名的sql语句
然后执行这些sql语句
© 著作权归作者所有