例如我要删除库中所有以order开头的表,那我可以先执行如下代码,列出所有drop这些表的语句,然后我再选择性地把这些语句复制出来执行即可
假设我自己建的表都是库mall.order_0~ mall.order_99
Select CONCAT( 'drop table ', table_name, ';' )FROM information_schema.tables
where TABLE_SCHEMA = 'mall'
and table_name LIKE 'order_%';
批量修改的话是这样的:
Select CONCAT( 'ALTER TABLE ', table_name, 'RENAME TO ', table_name,';' )
FROM information_schema.tables Where table_name LIKE 'SB_%';