Mysql批量刪除和修改某個字首的表

2022-06-18 17:00:11 字數 483 閱讀 9750

1、批量刪除某個字首的表名,首先選出這些個表。

select concat( '

drop table

', table_name, '

;' ) from information_schema.tables where table_name like

'dede_%

';

以上為刪除date_為字首的表,然後複製生成指令碼執行即可完成刪除。

2、修改某個字首的表名

select concat( '

alter table

', table_name, '

rename to

', table_name, '

;' ) from information_schema.tables where table_name like

'dede_%

';

使用方法同上。

mysql批量刪除或修改

mysql error code 1093 you can t specifytarget table x for update in from clause 當子查詢作為條件,執行delete跟update操作時,會出現 error code 1093 you can t specify targ...

mysql 替換 字首 批量修改mysql表字首

header content type text html charset utf 8 設定好相關資訊 dbserver 127.0.0.1 連線的伺服器一般為localhost dbname test 資料庫名 dbuser root 資料庫使用者名稱 dbpassword root 資料庫密碼 ...

hibernate批量修改,批量刪除

在hibernate應用中如何處理批量更新和批量刪除?批量更新是指在乙個事務中更新大批量資料,批量刪除是指在乙個事務中刪除大批量資料。以下程式直接通過hibernate api批量更新customers表中年齡大於零的所有記錄的age欄位 tx session.begintransaction it...