创建存储过程

create procedure test
@a int=null,
@b int=null,
@c int=3
as
select @a,@b,@c
go
--drop proc test

exec test --调用存储过程
go

posted on 2011-11-27 21:23  tienco  阅读(82)  评论(0)    收藏  举报

导航