当我们需要查询数据库中是否出现名为myproc的存储过程,如果有同名的,则删除该存储过程,可以使用以下那条语句来实现。
A.
if exists(select * from sysobjects where type='myproc') drop proc myproc go
B.
if exists(select * from sysobjects where name=myproc) drop proc myproc go
C.
if not exists(select * from sysobjects where name='myproc') drop proc myproc go
D.
if exists(select * from sysobjects where name='myproc') drop proc myproc go