赞
踩
此篇文章是通过存储过程来介绍的
1、if语句:
a、单分支 语法格式:
create procedure p1(参数)
begin
if 表达式 then 代码1;
end if;
end;
示例:
create procedure p1(a int)
begin
declare i int default 3;
if a>i then select "春天" as "季节" ;
end if;
end;
b、双分支语法格式
create procedure p1(参数)
begin
if 表达式 then 代码1;
else 代码 2
end if;
end;
示例:create procedure p9(a int)
begin
declare i int default 3;
if a>i then select "春天" as "季节" ;
ELSE
select "夏天" as "季节" ;
end if;
end;
语法格式:
create procedure p1(参数)
begin
case 变量 when 值 then 代码1;
when 值 then 代码2;
else 代码3;
end case;
end;
示例:
create procedure p11(a int)
begin
case a when 1 then select "夏" as "季节" ;
when 2 then select "春天" as "季节" ;
else select "秋天" as "季节" ;
end case;
end;
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。