1获取删除语句
Select CONCAT( ‘drop table ‘, table_name, ‘;‘ )
FROM information_schema.tables
Where table_schema=数据库名‘ table_name
LIKE
‘模糊
表名%
‘;
例子 : 获取mydatabase 库 下的所有 ‘’sql_‘’开头的表的删除语句;
Select CONCAT( ‘drop table ‘, table_name, ‘;‘ )
FROM information_schema.tables
Where table_schema=‘mydatabase‘ table_name
LIKE
‘ sql_%
‘
;
2 复制 输出的结果 再运行删除
时间: 2024-10-11 02:48:50