mirror of
https://gitee.com/tawords/tawords-docs
synced 2025-01-11 11:58:14 +08:00
284 B
284 B
修改数据库表前缀
以下内容非最终代码,请不要直接复制运行。
Select CONCAT( 'ALTER TABLE ', table_name, 'RENAME TO bdc_', substring(table_name,CHAR_LENGTH('oldpre')+1)),';' )
FROM information_schema.tables
Where table_name LIKE 'oldpre_%';