创建存储过程,修改存储过程

创建无参数的存储过程
create procedure zyx_test
as
begin --begin 开始
print 'hello' --print 是打印
end --结束
execute zyx_test --execute 执行

修改存储过程,直接修改执行就行




原文地址:https://www.cnblogs.com/bellwether/p/15567038.html