sybase 脚本删除存储过程
if exists (select 1
from sysobjects
where id = object_id('P_add_user')
and type = 'P')
drop procedure P_add_user
go
sybase 脚本删除存储过程
if exists (select 1
from sysobjects
where id = object_id('P_add_user')
and type = 'P')
drop procedure P_add_user
go