mysql存储过程几个小案例

来源:互联网 发布:软件系统租用合同范本 编辑:程序博客网 时间:2024/06/05 19:55
#存储过程的学习!!!!!!!


一、入门案例的学习


DROP PROCEDURE IF EXISTS proc_aa;  ##删除已经存在的过程
DELIMITER //
CREATE  PROCEDURE `proc_aa`(IN a int,IN b int,OUT c int)
BEGIN
    DECLARE temp int;  
    if a is null then set a = 1;
    ELSE  set a = a;
end if;
    if b is null then set b = 1;
    ELSE  set b = b;
end if;
    set temp  = a + b;
set c = temp;
END
//
DELIMITER ; 




#调用
SET @a = 29;
set @b = 33;
set @c = 44;
call proc_aa(@a,@b,@c);
select @c;




二、表操作
2.1 查询
delimiter//
drop procedure if exists sp//
CREATE PROCEDURE sp() select * from user //
call sp()//
DELIMITER;


2.2 插入数据
delimiter//
drop procedure if exists cc//
CREATE PROCEDURE cc(IN id int ,In age int) 
begin
insert into user (id,age) VALUES(id,age);
end
//
DELIMITER;
set @id = 333;
set @age = 444;
call cc(@id,@age);


2.3 更新数据
delimiter//
drop procedure if exists dd//
CREATE PROCEDURE dd(IN id int) 
begin
update user set age = 444 where `user`.id = id;
end
//
DELIMITER;
set @id = 333;
call dd(@id);




三、流程控制语句
3.1 if  then   ; elseif  then  ;  else     ;end if;
DELIMITER //
drop procedure if exists proc_if//
create procedure proc_if(IN type int)
BEGIN
declare c varchar(500);
IF type = 0 THEN
        set c = '参数是 0';
ELSEIF type = 1 THEN
        set c = '参数是 1';
else
        set c = '参数不是 1和0';
end if;
   select c;
end 
//
DELIMITER;
set @a = '33';
call proc_if(@a);


3.2 case   when   then   ; when   then   ; else   ; end case;
DELIMITER //
drop procedure if exists proc_if//
create procedure proc_if(IN type int)
BEGIN
declare c varchar(500);
case when type = 0 THEN
        set c = '参数是 0';
when  type = 1 THEN
        set c = '参数是 1';
else
        set c = '参数不是 1和0';
end case;
   select c;
end 
//
DELIMITER;
set @a = '33';
call proc_if(@a);
原创粉丝点击
热门问题 老师的惩罚 人脸识别 我在镇武司摸鱼那些年 重生之率土为王 我在大康的咸鱼生活 盘龙之生命进化 天生仙种 凡人之先天五行 春回大明朝 姑娘不必设防,我是瞎子 超市的水杯坏了怎么办 玩天涯明月刀卡怎么办? 想开童装店没什么经验怎么办 孕后期鼻炎犯了怎么办 酷狗国外听不了怎么办 酷狗音乐换手机怎么办 有优势卵泡不排卵怎么办 卵泡30mm不破怎么办 成熟的卵泡不破怎么办 卵泡大了不破怎么办 卵泡突然不长了怎么办 想怀孕卵泡不长怎么办 吉吉影音下载慢怎么办 辞职后社保断了怎么办 2岁泡泡糖咽下去怎么办 我在拼多多开团怎么办 养了一条鱼死了怎么办 鱼缸的鱼尾巴烂怎么办 捡到玉佛吊坠该怎么办 晚上睡不踏实多梦易醒怎么办 红米3s蓝屏怎么办 吃饭没给钱跑了怎么办 刚出生的宝宝红屁屁怎么办 刚出生的宝宝红屁股怎么办 眼镜配高了25度怎么办 广州摇号中签后怎么办 深圳摇号中签后怎么办 皮肤被紫外线晒伤怎么办 脸被太阳晒过敏怎么办 星际2买了的怎么办 脸被风吹红了怎么办 天谕背包满了怎么办 剑灵没用的武器怎么办 人老实心太善良怎么办 雷蛇鼠标滚轮响怎么办 唱歌唱的嗓子疼怎么办 额头又高又凸怎么办 40多岁满头白发怎么办 被梅毒的针扎了怎么办 小腿上有肌肉块怎么办 血沉方程k值高怎么办