詳解MySQL預存程序參數有三種類型(in、out、inout)

來源:互聯網
上載者:User

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

二、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)傳回給調用者。

三、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” 型別參數。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.