标签:
//sp_和xp_开头的是系统存储过程:系统的存储过程不用加exec,自己写的存储过程才需要exec,一般自己创建的存储过程命名是usp_开头
create proc usp_helloworld---------创建存储过程(存储过程,顾名思义就是存储sql语句执行过程,类似一个方法)
as
begin -----------------------------begin相当于{
print ‘HELLO WORLD‘ --------------------------这里一般就是自定义的sql语句
end -----------------------------end相当于}
exec usp_helloworld ------------------调用存储过程exec
drop proc usp_helloworld -------------删除存储过程drop proc
alter proc usp_helloworld ------------修改存储过程alter proc
例子:
创建:
create proc usp_select_zgqx
as
begin
select * from dbo.Table_1
end
---------------带参数的存储过程---------
create proc usp_myselect_cs
@n1 int, --------------------------------@开头,后跟参数名称,空格跟参数类型
@n2 int
as
begin
select @n1+@n2 -------------------直接使用参数名
end
exec usp_myselect_cs 100,200 --------------调用时候存储过程名称后面,空格传入参数,以逗号分开
exec usp_myselect_cs @n1=100,@n2=200 --------------也可以这样写,更明了
调用:
exec usp_select_zgqx
标签:
原文地址:http://www.cnblogs.com/it-xcn/p/5733813.html