在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
1 判断数据库是否存在 if exists (select * from sys.databases where name = '数据库名') 2 判断表是否存在 if exists (select * from sysobjects where id = object_id(N'[表名]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) 3 判断存储过程是否存在 if exists (select * from sysobjects where id = object_id(N'[存储过程名]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) 4 判断临时表是否存在 if object_id('tempdb..#临时表名') is not null 5 判断视图是否存在 --判断是否存在'MyView52'这个试图 6 判断函数是否存在 -- 判断要创建的函数名是否存在 7 获取用户创建的对象信息 SELECT [name],[id],crdate FROM sysobjects where xtype='U' 8 判断列是否存在 if exists(select * from syscolumns where id=object_id('表名') and name='列名') 9 判断列是否自增列 if columnproperty(object_id('table'),'col','IsIdentity')=1 10 判断表中是否存在索引 if exists(select * from sysindexes where id=object_id('表名') and name='索引名') 删除索引 drop index 表名.索引名 或: drop index 索引名 on 表名(貌似2000不行) 11 查看数据库中对象 SELECT * FROM sys.sysobjects WHERE name='对象名' SELECT * FROM sys.sysobjects WHERE name='对象名' |
请发表评论