首页  编辑  

批量删除表

Tags: /超级猛料/Database.数据库相关/SQL Server/   Date Created:

批量删除类似名字的表,支持通配符

exec sp_msforeachtable @whereand = "and o.name like ' tb_name %'" , @command1 = "drop table ?"