sqlserver 各种判断是否存在(表、视图、函数、存储过程等)

1、判断表是否存在

select * from sysobjects where id = object_id(表名) and OBJECTPROPERTY(id, N'IsUserTable') = 1

2、判断视图是否存在

select table_name from information_schema.views where table_name = 视图名

或者

SELECT * FROM dbo.sysobjects WHERE id = object_id('视图名') AND OBJECTPROPERTY(id, N'IsView') = 1

3、判断函数是否存在

select * from sysobjects where xtype='fn' and name='函数名'

或者

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

4、判断字段是否存在

select 1 from syscolumns where id=object_id('表名') and name='字段名'

5、判断索引是否存在

  1.  
    if not exists( select * from sysindexes where id=object_id('表名') and name='索引名')
  2.  
    create nonclustered index [索引名] on [表名](字段 asc,字段 asc)
  3.  
    go

6、判断存储过程是否存在

  1.  
    IF exists(SELECT * FROM sysobjects WHERE id=object_id(N'[master].[存储过程名称]') and xtype='P')
  2.  
    begin
  3.  
    drop procedure [master].[存储过程名称]
  4.  
    End
  5.  
    GO

转载于:https://www.cnblogs.com/chenqingbin/p/11236284.html

你可能感兴趣的:(数据库)