创建

create proc 存储过程名

(参数列表)

as

sql 语句

go

执行

exec 存储过程名 参数1,参数2

删除

drop procedure  存储过程名

注:

存储过程名最好以_proc结尾

05-23 02:44