欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

sql server中判断表或临时表是否存在的方法

程序员文章站 2022-11-20 15:34:38
1、判断数据表是否存在 方法一: use yourdb; go if object_id(n'tablename',n'u') is not null...

1、判断数据表是否存在

方法一:

use yourdb;
go

if object_id(n'tablename',n'u') is not null
print '存在'
else 
print '不存在'

例如:

use fireweb;
go

if object_id(n'temp_tbl',n'u') is not null
print '存在'
else 
print '不存在'

方法二:

use [实例名] 
go 

if exists (select * from dbo.sysobjects where id = object_id(n'[表名]') and objectproperty(id, 'istable') = 1) 
print '存在' 
else 
print'不存在'

例如:

use fireweb;
go

if exists (select * from dbo.sysobjects where id = object_id(n'temp_tbl') and objectproperty(id, 'istable') = 1) 
print '存在' 
else 
print'不存在'

2、临时表是否存在:

方法一:

use fireweb;
go

if exists(select * from tempdb..sysobjects where id=object_id('tempdb..##temp_tbl'))
print '存在' 
else 
print'不存在'

方法二:

use fireweb;
go

if exists (select * from tempdb.dbo.sysobjects where id = object_id(n'tempdb..#temp_tbl') and type='u')
print '存在' 
else 
print'不存在'

下面是补充介绍:

在sqlserver(应该说在目前所有数据库产品)中创建一个资源如表,视图,存储过程中都要判断与创建的资源是否已经存在
在sqlserver中一般可通过查询sys.objects系统表来得知结果,不过可以有更方便的方法
如下:

  if  object_id('tb_table') is not null 
    print 'exist' 
  else 
    print'not exist' 

如上,可用object_id()来快速达到相同的目的,tb_table就是我将要创建的资源的名称,所以要先判断当前数据库中不存在相同的资源
object_id()可接受两个参数,第一个如上所示,代表资源的名称,上面的就是表的名字,但往往我们要说明我们所要创建的是什么类型的资源,
这样sql可以明确地在一种类型的资源中查找是否有重复的名字,如下:

  if  object_id('tb_table','u') is not null 
    print 'exist' 
  else 
    print'not exist' 

第二个参数 "u" 就表示tb_table是用户创建的表,即:user_table地首字母简写
查询sys.objects中可得到各种资源的类型名称(type列),这里之举几个主要的例子
u ----------- 用户创建的表,区别于系统表(user_table)
s ----------- 系统表(system_table)
v ----------- 视图(view)
p ----------- 存储过程(sql_stored_procedure)
可使用select distinct type ,type_desc from sys.objects 获得全部信息


库是否存在

if exists(select * from master..sysdatabases where name=n'库名') 
print 'exists'
else
print 'not exists'
--------------- 
-- 判断要创建的表名是否存在 
if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[表名]') and objectproperty(id, n'isusertable') = 1) 
-- 删除表 
drop table [dbo].[表名] 
go 
--------------- 
-----列是否存在 
if col_length( '表名','列名') is null
print 'not exists'
else
print 'exists'
alter table 表名 drop constraint 默认值名称 
go 
alter table 表名 drop column 列名 
go 
----- 
--判断要创建临时表是否存在 
if object_id('tempdb.dbo.#test') is not null
begin
print '存在'
end
else
begin
print '不存在'
end
--------------- 
-- 判断要创建的存储过程名是否存在 
if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[存储过程名]') and objectproperty(id, n'isprocedure') = 1) 
-- 删除存储过程 
drop procedure [dbo].[存储过程名] 
go 
--------------- 
-- 判断要创建的视图名是否存在 
if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[视图名]') and objectproperty(id, n'isview') = 1) 
-- 删除视图 
drop view [dbo].[视图名] 
go 
--------------- 
-- 判断要创建的函数名是否存在 
if exists (select * from sysobjects where xtype='fn' and name='函数名') 
if exists (select * from dbo.sysobjects where id = object_id(n'[dbo].[函数名]') and xtype in (n'fn', n'if', n'tf')) 
-- 删除函数 
drop function [dbo].[函数名] 
go 
if col_length('表名', '列名') is null
print '不存在'
select 1 from sysobjects where id in (select id from syscolumns where name='列名') and name='表名'