摘要:
SQL Server判断对象是否存在(整理中...)1 判断数据库是否存在Sql代码if exists (select*fromsys.databaseswherename=’数据库名’)dropdatabase[数据库名] if exists (select * from sys.databases where name = ’数据库名’) drop database [数据库名]2 判断表是否存在Sql代码if exists (select*fromsysobjectswhereid = object_id(N’[表名]’)andOBJECTPROPERTY(id, N’IsUserTab 阅读全文