首页/应用软件/内容

如何理解MySQL中的IN,OUT,INOUT分类

应用软件2022-12-12 阅读()
+--------+ 1 row in set (0.00 sec) ## 可以看到用户变量@id传入值为10,执行存储过程后,在过程内部值为:11(id_inner), ## 但外部变量值依旧为:10(id_out)

[sql] view plain copy


  1. <pre name="code" class="sql">==================================================================================  
    ## OUT   OUT参数只用来从过程传回信息。  
    ## MySQL存储过程"out"参数:从存储过程内部传值给调用者。  
    ## 在存储过程内部,该参数初始值为 null,无论调用者是否给存储过程参数设置值。  
    mysql> drop procedure if exists pr_param_out;  
    Query OK, 0 rows affected, 1 warning (0.01 sec)  
    mysql> delimiter //  
    mysql> create procedure pr_param_out(out id int)  
        -> begin  
        -> select id as id_inner_1;  
        -> 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;  
        -> //  
    Query OK, 0 rows affected (0.01 sec)  
    mysql> delimiter ;  
    mysql> set @id=10;  
    Query OK, 0 rows affected (0.00 sec)  
    mysql> call pr_param_out(@id);  
    +------------+  
    (北联网教程,专业提供视频软件下载)

    ……

相关阅读