sqlserver2005判断临时表是否存在。
发布时间:2020-12-12 16:05:00 所属栏目:MsSql教程 来源:网络整理
导读:Way 1 if(exists(select name from tempdb..sysobjects where name like'%temptab%' and type='U')) ?? drop table #temptab Way 2? www.2cto.com? if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'tempdb..#tempcitys') and type='
Way 1 if(exists(select name from tempdb..sysobjects where name like'%temptab%' and type='U')) ?? drop table #temptab Way 2? www.2cto.com? if exists (select * from tempdb.dbo.sysobjects where id = object_id(N'tempdb..#tempcitys') and type='U') ?? drop table #tempcitys Way 3 IF OBJECT_ID('tempdb..#') IS NOT NULL ?? DROP TABLE # OBJECT_ID此函数返回数据库对象标识号 判断数据库里有没有存在PerPersonData这样一张表 if exists (select * from sysobjects where objectproperty(object_id('PerPersonData'),'istable') = 1) OBJECTPROPERTY:返回当前数据库中对象的有关信息。1表“真”。同样可以写成OBJECTPROPERTY(id,isUserTable) = 1? www.2cto.com? if exists (select * from sysobjects where id = object_id(N'PerPersonData') and OBJECTPROPERTY(id,N'IsUserTable') = 1) drop table 'PerPersonData' 判断试图是否存在 if exists (select * from sysobjects where id = object_id(N‘[dbo].[ESTMP]‘) and OBJECTPROPERTY(id,N‘IsView‘) = 1) ? drop view ESTMP 转自:http://www.2cto.com/database/201209/157718.html
(编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |