MySQL存储过程入门

一、简单的存储过程

1、无参存储过程

(1)编写

  create procedure student()

   begin

   select * from student;

   end;

 

(2)调用存储过程

 

call student();

 

2、有参存储过程

    这个参数分为:传入参数、传出参数

 (1)编写

  create procedure study(

   out    l1 decimal(8,2),

   out    l2 decimal(8,2),

   in      l3  int

  )

  begin

  select sum(uid) into l1 from  student where  order_name=l3;

  select avg(uid) into l2  from student;

  end;

 

注意:l1和l2是用来存储要传出去的值,而l3则是存储传入进存储过程作为条件的值

 

(2)调用有参存储过程

     

call study(@stuSum,@stuAvg,1511010);

 

(3)查看存储过程运行完的结果

     

select @stuSum,@stuAvg;

 

3、删除存储过程

  drop procedure study;

   

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值