我可以覆盖MySQL存储过程中的IN参数

时间:2019-03-11 04:38:52

标签: mysql stored-procedures input parameters overwrite

我可以覆盖MySQL存储过程中的IN参数吗?

也就是说,我可以做类似的事情吗?

create procedure proc1 (IN p_parm1 int)
begin
  if p_parm1 is null then
    **set p_parm1 = -1;**
  end if
end $$

1 个答案:

答案 0 :(得分:0)

您应该这样自己测试:

mysql> create procedure proc1 (IN p_parm1 int) begin
 if p_parm1 is null then
   set p_parm1 = -1;
 end if; 
 select p_parm1;
end$$
Query OK, 0 rows affected (0.02 sec)

mysql> call proc1(123)$$
+---------+
| p_parm1 |
+---------+
|     123 |
+---------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

mysql> call proc1(null)$$
+---------+
| p_parm1 |
+---------+
|      -1 |
+---------+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

因此答案是肯定的,您可以更改输入的值。在您的示例中,您可以有效地为输入参数提供默认值,以防该参数为null。