Oracle存储过程(增、删、改)写法
来源:深圳教育在线 作者:well 时间:2010/9/21 9:53:03

  -

  插入:

  1 CREATE OR REPLACE Procedure p_insert_t_stu --存储过程名称

  2  (

  3   p_stuid in Number,

  4   p_stuname in Nvarchar2,

  5   p_stusex in Nvarchar2,

  6   p_stuadd in Nvarchar2

  7 )

  8  as

  9  BEGIN

  10 insert into t_stu

  11 values

  12 (p_stuid,p_stuname,p_stusex,p_stuadd);

  13 commit;

  14 end;

  删除:

  1 CREATE OR REPLACE Procedure p_delete_t_stu --存储过程名称

  2 (

  3   p_stuid in Number,

  4   p_msg Out Nvarchar2

  5 )

  6 Is

  7 flag Integer := 1;

  8 v_stuid Number;

  9 Begin

  10 Select flag Into v_stuid From t_stu Where stuid=p_stuid;

  11 Delete t_stu

  12 Where

  13 stuid=p_stuid;

  14 commit;

  15 If flag=1 Then

  16  Begin

  17    p_msg:='删除成功';  18  End;

  19 End If;

  20 Exception  21  When Others Then

  22    p_msg:=Sqlerrm || ',' || '删除失败';

  23 END;

  修改:

  1 CREATE OR REPLACE Procedure p_update_t_stu --存储过程名称

  2 (

  3   p_stuid in Number,

  4   p_stuname in Nvarchar2,

  5   p_stusex in Nvarchar2,

  6   p_stuadd in Nvarchar2

  7 )

  8 as

  9 BEGIN

  10 Update t_stu Set stuname=p_stuname,stusex=p_stusex,stuadd=p_stuadd

  11 Where

  12 stuid=p_stuid;

  13 commit;

  14 end;

免责声明:本文仅代表作者个人观点,与总裁世界无关。其原创性以及文中陈述内容的真实性、完整性、及时性本站不作任何保证或承诺,总裁世界对所有观点均保持中立态度,请读者仅作参考,并请自行核实相关内容。
网站首页 - 关于我们 - 版权声明 - 广告服务 - 网站地图 - 会员专区 - 客户服务 - 疑难解答 - 联系我们
总裁世界 版权所有Copyright © 2004 - 2017 www.ceoedu.com/www.ceoedu.com
总机电话:0755-88844436   业务联系:0755-83692700   中国·深圳 粤ICP备14047004号
客服咨询
24小时客服在线
马上咨询