码迷,mamicode.com
首页 > 其他好文 > 详细

存储过程的增删改

时间:2018-04-16 23:55:54      阅读:228      评论:0      收藏:0      [点我收藏+]

标签:delete   procedure   行修改   bsp   into   creat   操作   学生   选项参数   

就比如写一个存储过程对学生表进行你说的操作吧,Options是操作选项。
create procedure OperationData @Options Int,@StuId VarChar(10),@StuNameVarChar(8)
 as
 begin
  if Options=0 --选项参数值0执行删除操作
   delete Student where Student .StuId=@StuId
  else ifI Options=1 --选项参数值为1则执行修改操作


   begin
   updata Student 
    set Student .StuId=@StuId
    set Student.StuName = @StuName where  Student.StuId=@StuId
   end


  else if  Options=2
  insert into Student values(StuId, StuName)E 

   end

存储过程的增删改

标签:delete   procedure   行修改   bsp   into   creat   操作   学生   选项参数   

原文地址:https://www.cnblogs.com/Tianxf815/p/8859098.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!