mysql基础四 存储过程
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mysql基础四 存储过程相关的知识,希望对你有一定的参考价值。
一、存储过程:变量的声明和赋值。
create procedure p1()
begin
declare age int default 18;
set age :=age+20;
select age from dual;
end;
调用存储过程:call p1(); 其结果是如下:
二、存储过程:简单的控制语句。
create procedure p2()
begin
declare age int default 18;
if age>=18 then
select ‘已成年‘ ;
else
select ‘未成年‘;
end if;
end;
调用存储过程:call p2(); 其结果是如下:
以上是关于mysql基础四 存储过程的主要内容,如果未能解决你的问题,请参考以下文章