Sql Server 判断表是否存在方法总结
Posted willingtolove
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sql Server 判断表是否存在方法总结相关的知识,希望对你有一定的参考价值。
#使用场景:
1、在创建表之前,需要先判断该表是否已经存在;
2、在删除表之前,需要先判断该表是否已经存在;
#方法总结:
1、判断实体表是否存在的方法:
1)、方法一:
if Exists(select top 1 * from sysObjects where Id=OBJECT_ID(N‘UserInfos‘) and xtype=‘U‘) print ‘表UserInfos 存在‘ else print ‘表UserInfos 不存在‘
2)、方法二:
if OBJECT_ID(N‘UserInfos‘,N‘U‘) is not null print ‘表UserInfos 存在!‘ else print ‘表UserInfos 不存在!‘
2、判断临时表是否存在的方法:
1)、方法一:
if exists (select * from tempdb.dbo.sysobjects where id = object_id(N‘tempdb..#TempUsers‘) and type=‘U‘) print ‘临时表#TempUsers 存在!‘ else print ‘临时表#TempUsers 不存在!‘
2)、方法二:
if OBJECT_ID(N‘tempdb..#TempUsers‘,N‘U‘) is not null print ‘临时表#TempUsers 存在!‘ else print ‘临时表#TempUsers 不存在!‘
————————————————————————————————————
以上是关于Sql Server 判断表是否存在方法总结的主要内容,如果未能解决你的问题,请参考以下文章