程序员人生 网站导航

MySQL存储过程in、out、inout的特性

栏目:MySql时间:2014-05-13 01:10:51

  网(LieHuo.Net)教程 MySQL 存储过程参数有三种类型:in、out、inout。它们各有什么作用和特点呢?今天我们就来一一的分析与讲解一下,希望对各位站长和网络工程师有所帮助。

一、MySQL 存储过程参数(in)
MySQL 存储过程 “in” 参数:跟 C 语言的函数参数的值传递类似, MySQL 存储过程内部可能会修改此参数,但对 in 类型参数的修改,对调用者(caller)来说是不可见的(not visible)。

drop procedure if exists pr_param_in;
create procedure pr_param_in
(
in id int -- in 类型的 MySQL 存储过程参数
)
begin
if (id is not null) then
set id = id + 1;
end if;
select id as id_inner;
end;

set @id = 10;
call pr_param_in(@id);
select @id as id_out;

mysql> call pr_param_in(@id);
+----------+
| id_inner |
+----------+
| 11 |
+----------+
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 10 |
+--------+

可以看到:用户变量 @id 传入值为 10,执行存储过程后,在过程内部值为:11(id_inner),但外部变量值依旧为:10(id_out)。

------分隔线----------------------------
------分隔线----------------------------

最新技术推荐