标签:ble 删除语句 sel for 删除 mat tables cat 表名
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 复制 输出的结果 再运行删除
标签:ble 删除语句 sel for 删除 mat tables cat 表名
原文地址:http://www.cnblogs.com/hellozg/p/7930387.html