存储过程用法
创建无参存储过程" title="存储过程">存储过程
1createprocedure proc_test012as3begin
4select*from myrptdetail
5end
执行无参存储过程
exec proc_test01
结果
创建带参存储过程
1createprocedure proc_test022@paramnvarchar(50)3as4begin
5select*from myrptdetail where myrptdetailid=@param
6end
执行带参存储过程
exec proc_test02 "66F58203-2C49-4B3B-B296-03D2A060172F"
结果
修改存储过程
1alterprocedure proc_test012as3begin
4select"这是在修改存储过程"as ps, *from myrptdetail
5end
查询存储过程
exec sp_helptext proc_test01
以上是 存储过程用法 的全部内容, 来源链接: utcz.com/z/531857.html