MySQL进阶之条件控制(IF,CASE)

IF

if 用于做条件判断,语法结构为:

IF 条件1 THEN
.....
ELSEIF 条件2 THEN -- 可选
.....
ELSE -- 可选
.....
END IF;

在if条件判断的结构中,ELSE IF 结构可以有多个,也可以没有。 ELSE结构可以有,也可以没有。

create procedure p3()
begin
    declare score int default 58;
    declare result varchar(10);

    if score >= 85 then
        set result = '优秀';
    elseif score >= 60 then
        set result := '及格';
    else
        set result := '不及格';

    end if;
    select result;

end;

call p3();

 

参数

类型 含义
IN 该参数作为输入,也就是需要调用时传入值(默认)
OUT 该类参数作为输出,也就是该参数可以作为返回值
INOUT 既可以作为输入参数,也可以作为输出参数
create procedure p4(in score int, out result varchar(10))
begin

    if score >= 85 then
        set result = '优秀';
    elseif score >= 60 then
        set result := '及格';
    else
        set result := '不及格';

    end if;
    select result;

end;

call p4(18,@result);
select @result;

 

create procedure p5(inout score double)
begin
    set score := score * 0.5;
end;

set @score = 199;
call p5(@score);
select @score;

CASE

语法一:

-- 含义: 当case_value的值为 when_value1时,执行statement_list1,当值为 when_value2时,
执行statement_list2, 否则就执行 statement_list
CASE case_value
WHEN when_value1 THEN statement_list1
[ WHEN when_value2 THEN statement_list2] ...
[ ELSE statement_list ]
END CASE;

语法二:

-- 含义: 当条件search_condition1成立时,执行statement_list1,当条件search_condition2成
立时,执行statement_list2, 否则就执行 statement_list
CASE
WHEN search_condition1 THEN statement_list1
[WHEN search_condition2 THEN statement_list2] ...
[ELSE statement_list]
END CASE;

 

案例:
create procedure p6(in month int)
begin
    declare result varchar(10);
    case
        when month >= 1 and month <= 3 then
            set result := '第一季度';
        when month >= 4 and month <= 6 then
            set result := '第二季度';
        when month >= 7 and month <= 9 then
            set result := '第三季度';

        when month >= 10 and month <= 12 then
            set result := '第四季度';
        else
            set result := '非法参数';
        end case ;
select concat('您输入的月份为: ',month, ', 所属的季度为: ',result);
end;
call p6(18);

你可能感兴趣的:(mysql,mysql,数据库,sql)