Bootstrap

MYSQL批量修改数据表前缀

生成批量替换sql语句

说明:将art_修改为pc_,表示从art_后面字符开始( 4 = ("art_"的字符串长度+1));table_schema:指定数据库名称(如web3_com);

SELECT CONCAT( 'ALTER TABLE ', table_name, ' RENAME TO pc_', substring(table_name, 4),';') 
FROM information_schema.tables 
where table_schema='web3_com' and table_name LIKE 'art_%';

执行上面命令,然后复制下方生成的sql语句执行替换

 

;