程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> MYSQL數據庫 >> MySQL綜合教程 >> 詳解MySQL存儲進程參數有三品種型(in、out、inout)

詳解MySQL存儲進程參數有三品種型(in、out、inout)

編輯:MySQL綜合教程

詳解MySQL存儲進程參數有三品種型(in、out、inout)。本站提示廣大學習愛好者:(詳解MySQL存儲進程參數有三品種型(in、out、inout))文章只能為提供參考,不一定能成為您想要的結果。以下是詳解MySQL存儲進程參數有三品種型(in、out、inout)正文


1、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)。

2、MySQL 存儲進程參數(out)
MySQL 存儲進程 “out” 參數:從存儲進程外部傳值給挪用者。在存儲進程外部,該參數初始值為 null,不管挪用者能否給存儲進程參數設置值。

drop procedure if exists pr_param_out;
create procedure pr_param_out
(
out id int
)
begin
select id as id_inner_1; -- id 初始值為 null
if (id is not null) then
set id = id + 1;
select id as id_inner_2;
else
select 1 into id;
end if;
select id as id_inner_3;
end;
set @id = 10;
call pr_param_out(@id);
select @id as id_out;
mysql> set @id = 10;
mysql>
mysql> call pr_param_out(@id);

+------------+
| id_inner_1 |
+------------+
| NULL |
+------------+
+------------+
| id_inner_3 |
+------------+
| 1 |
+------------+
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 1 |
+--------+
可以看出,固然我們設置了用戶界說變量 @id 為 10,傳遞 @id 給存儲進程後,在存儲進程外部,id 的初始值老是 null(id_inner_1)。最初 id 值(id_out = 1)傳回給挪用者。

3、MySQL 存儲進程參數(inout)
MySQL 存儲進程 inout 參數跟 out 相似,都可以從存儲進程外部傳值給挪用者。分歧的是:挪用者還可以經由過程 inout 參數傳遞值給存儲進程。

drop procedure if exists pr_param_inout;
create procedure pr_param_inout
(
inout id int
)
begin
select id as id_inner_1; -- id 值為挪用者傳出去的值
if (id is not null) then
set id = id + 1;
select id as id_inner_2;
else
select 1 into id;
end if;
select id as id_inner_3;
end;
set @id = 10;
call pr_param_inout(@id);
select @id as id_out;
mysql> set @id = 10;
mysql>
mysql> call pr_param_inout(@id);

+------------+
| id_inner_1 |
+------------+
| 10 |
+------------+
+------------+
| id_inner_2 |
+------------+
| 11 |
+------------+
+------------+
| id_inner_3 |
+------------+
| 11 |
+------------+
mysql>
mysql> select @id as id_out;
+--------+
| id_out |
+--------+
| 11 |
+--------+
從成果可以看出:我們把 @id(10),傳給存儲進程後,存儲進程最初又把盤算成果值 11(id_inner_3)傳回給挪用者。 MySQL 存儲進程 inout 參數的行動跟 C 說話函數中的援用傳值相似。

通 過以上例子:假如僅僅想把數據傳給 MySQL 存儲進程,那就應用“in” 類型參數;假如僅僅從 MySQL 存儲進程前往值,那就應用“out” 類型參數;假如須要把數據傳給 MySQL 存儲進程,還要經由一些盤算後再傳回給我們,此時,要應用“inout” 類型參數。
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved