简单的存储过程
摘要://创建存储过程 create proc usp_add @num int, @num1 int as begin select @num+@num1 end //调用存储过程 exec usp_add @num=1,@num1=3
阅读全文
posted @ 2017-12-12 19:18
posted @ 2017-12-12 19:18
posted @ 2017-12-12 19:04