mysql批量修改表前綴

SQL語句:

SELECT CONCAT( 'ALTER TABLE ', table_name, ' RENAME TO db_', substring(table_name, 4), ';' ) FROM information_schema. TABLES WHERE table_name LIKE 'ct%';
相關文章
相關標籤/搜索