存储过程的增删改
Posted Tianxf
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了存储过程的增删改相关的知识,希望对你有一定的参考价值。
就比如写一个存储过程对学生表进行你说的操作吧,Options是操作选项。
create procedure OperationData @Options Int,@StuId VarChar(10),@StuNameVarChar(8)
as
begin
if Options=0 --选项参数值0执行删除操作
delete Student where Student [email protected]
else ifI Options=1 --选项参数值为1则执行修改操作
begin
updata Student
set Student [email protected]
set Student.StuName = @StuName where [email protected]
end
else if Options=2
insert into Student values(StuId, StuName)E
end
以上是关于存储过程的增删改的主要内容,如果未能解决你的问题,请参考以下文章