数据库对象-修改、删除

修改存储过程

    alter proc 存储过程的名字

    AS

    begin

      ……想要改成什么样就怎么写

    end

  删除存储过程

      drop proc 存储过程的名字

原文地址:https://www.cnblogs.com/zhangchaoran/p/7133381.html