举例说明存储过程的定义与调用(数据库习题) 基于SQL server
发布网友
发布时间:2022-04-09 10:50
我来回答
共2个回答
热心网友
时间:2022-04-09 12:19
语法
CREATE PROC [ EDURE ] procere_name [ ; number ]
[ { @parameter data_type }
[ VARYING ] [ = default ] [ OUTPUT ]
] [ ,...n ]
[ WITH
{ RECOMPILE | ENCRYPTION | RECOMPILE , ENCRYPTION } ]
[ FOR REPLICATION ]
AS sql_statement [ ...n ]
举例:
创建一存储过程,getDetailByName,参数学生姓名,筛选学生基本信息,不存在的话做检测。打印不存在此学生
create procere getDetailByName
@studentname char(10)
as
if exists(select * from student where sname=@studentname)
select * from student
else
print '此学生不存在'
go
exec getDetailByName '张三'
热心网友
时间:2022-04-09 13:37
存储过程定义:
--定义存储过程头
create proc proc_name
as
--定义存储过程操作
select * from table
--调用存储过程
exec proc_name