主頁 > 知識(shí)庫 > sql server中判斷表或臨時(shí)表是否存在的方法

sql server中判斷表或臨時(shí)表是否存在的方法

熱門標(biāo)簽:南通智能外呼系統(tǒng)怎么樣 真3地圖標(biāo)注 樂昌電話機(jī)器人 地圖標(biāo)注可以編輯地名嗎 濮陽清豐400開頭的電話申請(qǐng) 南京怎么申請(qǐng)400這種電話 臺(tái)灣外呼系統(tǒng)軟件 地圖標(biāo)注跑線下市場(chǎng) 疫情時(shí)期電話機(jī)器人

1、判斷數(shù)據(jù)表是否存在

方法一:

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 [實(shí)例名] 
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、臨時(shí)表是否存在:

方法一:

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'不存在'

下面是補(bǔ)充介紹:

在sqlserver(應(yīng)該說在目前所有數(shù)據(jù)庫產(chǎn)品)中創(chuàng)建一個(gè)資源如表,視圖,存儲(chǔ)過程中都要判斷與創(chuàng)建的資源是否已經(jīng)存在
在sqlserver中一般可通過查詢sys.objects系統(tǒng)表來得知結(jié)果,不過可以有更方便的方法
如下:

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

如上,可用object_id()來快速達(dá)到相同的目的,tb_table就是我將要?jiǎng)?chuàng)建的資源的名稱,所以要先判斷當(dāng)前數(shù)據(jù)庫中不存在相同的資源
object_id()可接受兩個(gè)參數(shù),第一個(gè)如上所示,代表資源的名稱,上面的就是表的名字,但往往我們要說明我們所要?jiǎng)?chuàng)建的是什么類型的資源,
這樣sql可以明確地在一種類型的資源中查找是否有重復(fù)的名字,如下:

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

第二個(gè)參數(shù) "u" 就表示tb_table是用戶創(chuàng)建的表,即:USER_TABLE地首字母簡(jiǎn)寫
查詢sys.objects中可得到各種資源的類型名稱(TYPE列),這里之舉幾個(gè)主要的例子
u ----------- 用戶創(chuàng)建的表,區(qū)別于系統(tǒng)表(USER_TABLE)
s ----------- 系統(tǒng)表(SYSTEM_TABLE)
v ----------- 視圖(VIEW)
p ----------- 存儲(chǔ)過程(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'
--------------- 
-- 判斷要?jiǎng)?chuàng)建的表名是否存在 
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 默認(rèn)值名稱 
go 
alter table 表名 drop column 列名 
go 
----- 
--判斷要?jiǎng)?chuàng)建臨時(shí)表是否存在 
If Object_Id('Tempdb.dbo.#Test') Is Not Null
Begin
print '存在'
End
Else
Begin
print '不存在'
End
--------------- 
-- 判斷要?jiǎng)?chuàng)建的存儲(chǔ)過程名是否存在 
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[存儲(chǔ)過程名]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) 
-- 刪除存儲(chǔ)過程 
drop procedure [dbo].[存儲(chǔ)過程名] 
GO 
--------------- 
-- 判斷要?jiǎng)?chuàng)建的視圖名是否存在 
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[視圖名]') and OBJECTPROPERTY(id, N'IsView') = 1) 
-- 刪除視圖 
drop view [dbo].[視圖名] 
GO 
--------------- 
-- 判斷要?jiǎng)?chuàng)建的函數(shù)名是否存在 
if exists (select * from sysobjects where xtype='fn' and name='函數(shù)名') 
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[函數(shù)名]') and xtype in (N'FN', N'IF', N'TF')) 
-- 刪除函數(shù) 
drop function [dbo].[函數(shù)名] 
GO 
if col_length('表名', '列名') is null
print '不存在'
select 1 from sysobjects where id in (select id from syscolumns where name='列名') and name='表名'
您可能感興趣的文章:
  • SQLServer中臨時(shí)表與表變量的區(qū)別分析
  • sql server創(chuàng)建臨時(shí)表的兩種寫法和刪除臨時(shí)表
  • sqlserver 臨時(shí)表的用法
  • sql server 臨時(shí)表 查找并刪除的實(shí)現(xiàn)代碼
  • sqlserver 臨時(shí)表 Vs 表變量 詳細(xì)介紹
  • SQL Server 向臨時(shí)表插入數(shù)據(jù)示例
  • sqlserver 動(dòng)態(tài)創(chuàng)建臨時(shí)表的語句分享
  • SQL Server 表變量和臨時(shí)表的區(qū)別(詳細(xì)補(bǔ)充篇)
  • sql server 創(chuàng)建臨時(shí)表的使用說明
  • SQL SERVER臨時(shí)表排序問題的解決方法

標(biāo)簽:通遼 河北 福建 阿里 南京 陜西 馬鞍山 廣安

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《sql server中判斷表或臨時(shí)表是否存在的方法》,本文關(guān)鍵詞  sql,server,中,判斷,表,或,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請(qǐng)?zhí)峁┫嚓P(guān)信息告之我們,我們將及時(shí)溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《sql server中判斷表或臨時(shí)表是否存在的方法》相關(guān)的同類信息!
  • 本頁收集關(guān)于sql server中判斷表或臨時(shí)表是否存在的方法的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章