在SQL中存储过程的一般语法是什么?
在SQL中存储过程的一般语法是什么?
日期:2019-08-01 09:24:18 人气:1
1、 创建语法
create proc | procedure pro_name
[{@参数数据类型} [=默认值] [output],
{@参数数据类型} [=默认值] [output],
....
]
as
SQL_statements
2、 创建不带参数存储过程
--创建存储过程
if (exists (select * from sys.objects where name = 'proc_get_student'))
drop proc proc_get_student
go