时间:2021-07-01 10:21:17 帮助过:42人阅读
create procedure语句必须是批处理的第一句,所以必须加go。
调用:
--测试 declare @result_count int --调用带返回参数的存储过程时,参数后面要加output --execute get_emp_count @age=22,@count=@result_count output execute get_emp_count 22,@result_count output --select @result_count as count select count=@result_count --打印该变量 print @result_count go
sqlserver的存储过程
标签:保存 compile 语法 提升 where 网络通信 t-sql te pro sys