如何判断SQL中是否已经存在某表,存储过程,函数等
展开全部
1、是否存在某表的判断
if exists(select 0 from sysobjects where name='表名' and xtype='U')
begin
--存在
end
2、是否存在某存储过程的判断
if exists(select 0 from sysobjects where name='存储过程名' and xtype='P')
begin
--存在
end
3、是否存在某函数的判断
if exists(select 0 from sysobjects where name='函数名' and xtype='FN')
begin
--存在
end
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询