sql 判斷函數(shù)、存儲(chǔ)過(guò)程是否存在
來(lái)源:易賢網(wǎng) 閱讀:4963 次 日期:2014-09-15 09:46:25
溫馨提示:易賢網(wǎng)小編為您整理了“sql 判斷函數(shù)、存儲(chǔ)過(guò)程是否存在”,方便廣大網(wǎng)友查閱!

介紹sql下用了判斷各種資源是否存在的代碼,需要的朋友可以參考下,希望對(duì)您學(xué)習(xí)sql的函數(shù)及數(shù)據(jù)庫(kù)能夠有所幫助。

1

-- 庫(kù)是否存在

2

if exists(select * from master..sysdatabases where name=N'庫(kù)名')

3

print 'exists'

4

else

5

print 'not exists'

1

-- 判斷要?jiǎng)?chuàng)建的表名是否存在

2

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)

3

-- 刪除表

4

drop table [dbo].[表名]

5

GO

1

--判斷要?jiǎng)?chuàng)建臨時(shí)表是否存在

2

If Object_Id('Tempdb.dbo.#Test') Is Not Null

3

Begin

4

print '存在'

5

End

6

Else

7

Begin

8

print '不存在'

9

End

01

-- 判斷要?jiǎng)?chuàng)建的存儲(chǔ)過(guò)程名是否存在

02

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[存儲(chǔ)過(guò)程名]') andOBJECTPROPERTY(id, N'IsProcedure') = 1)

03

-- 刪除存儲(chǔ)過(guò)程

04

drop procedure [dbo].[存儲(chǔ)過(guò)程名]

05

GO

06

-- 判斷要?jiǎng)?chuàng)建的視圖名是否存在

07

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[視圖名]') and OBJECTPROPERTY(id, N'IsView') = 1)

08

-- 刪除視圖

09

drop view [dbo].[視圖名]

10

GO

11

-- 判斷要?jiǎng)?chuàng)建的函數(shù)名是否存在

12

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[函數(shù)名]') and xtype in (N'FN', N'IF', N'TF'))

13

-- 刪除函數(shù)

14

drop function [dbo].[函數(shù)名]

15

GO

16

if col_length('表名', '列名') is null

17

print '不存在'

18

select 1 from sysobjects where id in (select id from syscolumns where name='列名') and name='表名'

更多信息請(qǐng)查看IT技術(shù)專欄

更多信息請(qǐng)查看數(shù)據(jù)庫(kù)
易賢網(wǎng)手機(jī)網(wǎng)站地址:sql 判斷函數(shù)、存儲(chǔ)過(guò)程是否存在
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢?yōu)闇?zhǔn)!
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢 | 簡(jiǎn)要咨詢須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專用圖標(biāo)
聯(lián)系電話:0871-65317125(9:00—18:00) 獲取招聘考試信息及咨詢關(guān)注公眾號(hào):hfpxwx
咨詢QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專用圖標(biāo)