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


本文摘自PHP中文网,作者一个新手,侵删。

[sql] view plain copy


  1. 1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    MySQL存储过程中有INOUT,INOUT类型 

    ----------------------------------- 

    ## IN   IN参数只用来向过程传递信息,为默认值。 

    ## MySQL存储过程"in"参数:跟C语言的函数参数的值传递类似,MySQL存储过程内部可能会修改此参数, 

    ## 但in类型参数的修改对调用者(caller)来说是不可见的(not visible) 

    mysql>use test; 

    mysql> drop procedure if exists pr_param_in; 

    Query OK, 0 rows affected, 1 warning (0.01 sec) 

    mysql> delimiter // 

    mysql> create procedure pr_param_in(in id int

        -> begin 

        -> if (id is not null) then 

        ->     set id=id+1; 

        -> end if; 

        -> select id as id_inner; 

        -> end

        -> // 

    Query OK, 0 rows affected (0.03 sec) 

    mysql> delimiter ; 

    mysql> set @id=10; 

    Query OK, 0 rows affected (0.00 sec) 

    mysql> call pr_param_in(@id); 

    +----------+ 

    | id_inner | 

    +----------+ 

    |       11 | 

    +----------+ 

    1 row in set (0.00 sec) 

    Query OK, 0 rows affected (0.00 sec) 

    mysql> select @id as id_out; 

    +--------+ 

    | id_out | 

    +--------+ 

    |     10 | 

    +--------+ 

    1 row in set (0.00 sec) 

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

    ##  但外部变量值依旧为:10(id_out)

[sql] view plain copy


  1. 1

    2

    3

    4

    5

    6

    7

    8

    9

    10

    11

    12

    13

    14

    15

    16

    17

    18

    19

    20

    21

    22

    23

    24

    25

    26

    27

    28

    29

    30

    31

    32

    33

    34

    35

    36

    37

    38

    39

    40

    41

    42

    43

    44

    45

    46

    47

    48

    49

    50

    51

    52

    53

    54

    55

    56

    57

    58

    59

    60

    61

    62

    63

    64

    65

    66

    67

    68

    69

    70

    71

    72

    73

    74

    75

    76

    77

    78

    79

    80

    81

    82

    83

    84

    85

    86

    87

    88

    89

    90

    91

    92

    93

    94

    95

    96

    97

    98

    99

    100

    101

    102

    103

    <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); 

    +------------+ 

    | id_inner_1 | 

    +------------+ 

    |       NULL

    +------------+ 

    1 row in set (0.01 sec) 

    +------------+ 

    | id_inner_3 | 

    +------------+ 

    |          1 | 

    +------------+ 

    1 row in set (0.01 sec) 

    Query OK, 0 rows affected (0.01 sec) 

    mysql> select @id as id_out; 

    +--------+ 

    | id_out | 

    +--------+ 

    |      1 | 

    +--------+ 

    1 row in set (0.00 sec) 

    ## 可以看出,虽然我们设置了用户定义变量@id为10,传递@id给存储过程后,在存储过程内部, 

    ## id的初始值总是 null(id_inner_1)。最后id值(id_out=1)传回给调用者。 

    =================================================================================== 

    ## INOUT INOUT参数可以向过程传递信息,如果值改变,则可再从过程外调用。 

    ## MySQL存储过程"inout"参数跟out类似,都可以从存储过程内部传值给调用者。 

    ## 不同的是:调用者还可以通过inout参数传递至给存储过程。 

    mysql> drop procedure if exists pr_param_inout; 

    Query OK, 0 rows affected, 1 warning (0.01 sec) 

    mysql> delimiter // 

    mysql> create procedure pr_param_inout(inout 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_inout(@id); 

    +------------+ 

    | id_inner_1 | 

    +------------+ 

    |         10 | 

    +------------+ 

    1 row in set (0.00 sec) 

    +------------+ 

    | id_inner_2 | 

    +------------+ 

    |         11 | 

    +------------+ 

    1 row in set (0.00 sec) 

    +------------+ 

    | id_inner_3 | 

    +------------+ 

    |         11 | 

    +------------+ 

    1 row in set (0.01 sec) 

    Query OK, 0 rows affected (0.01 sec) 

    mysql> select @id as id_out; 

    +--------+ 

    | id_out | 

    +--------+ 

    |     11 | 

    +--------+ 

    1 row in set (0.00 sec) 

    ## 从结果可以看出:我们把 @id(10)传给存储过程后,存储过程最后又把计算结果值11(id_inner_3) 

    ## 传回给调用者。MySQL存储过程inout参数的行为跟C语言函数中的引用传值类似。 

    ========================================================================================= 

    通过以上例子: 

    1)  如果仅仅想把数据传给MySQL存储过程,那就用in类型参数; 

    2)  如果仅仅从MySQL存储过程返回值,那就用out类型参数; 

    3)  如果需要把数据传给MySQL存储过程经过计算再传回给我们,那就用inout类型参数。

以上就是如何理解MySQL中的IN,OUT,INOUT类型的详细内容,更多文章请关注木庄网络博客!!

相关阅读 >>

mysql内部临时表的具体使用

mysql选择合适的备份策略和备份工具

redis如何与mysql保持一致性

mysql如何实现自增序列

安卓连接不上mysql怎么办

mysql如何查询前20条记录

mysql索引是什么意思

mysql如何设置默认编码为utf-8

mysql列修改怎么操作?

mysql如何查询以什么字符开头的语句

更多相关阅读请进入《INOUT》频道 >>


数据库系统概念 第6版
书籍

数据库系统概念 第6版

机械工业出版社

本书主要讲述了数据模型、基于对象的数据库和XML、数据存储和查询、事务管理、体系结构等方面的内容。



打赏

取消

感谢您的支持,我会继续努力的!

扫码支持
扫码打赏,您说多少就多少

打开支付宝扫一扫,即可进行扫码打赏哦

分享从这里开始,精彩与您同在

评论

管理员已关闭评论功能...