如何在MySQL过程中使用OUT参数/使用SELECT从表中读取数据?
为此,您可以使用SELECTINTO。让我们首先创建一个表-
mysql> create table DemoTable1860 ( Amount int );
使用插入命令在表中插入一些记录-
mysql> insert into DemoTable1860 values(1590); mysql> insert into DemoTable1860 values(410); mysql> insert into DemoTable1860 values(3000);
使用select语句显示表中的所有记录-
Mysql> select * from DemoTable1860;
这将产生以下输出-
+--------+ | Amount | +--------+ | 1590 | | 410 | | 3000 | +--------+ 3 rows in set (0.00 sec)
以下是创建存储过程并使用OUT参数的查询-
mysql> delimiter // mysql> create procedure use_of_out_parameter(out TotalAmount int) begin select sum(Amount) into TotalAmount from DemoTable1860; end // mysql> delimiter ;
使用调用命令调用存储过程-
mysql> call use_of_out_parameter(@TotalAmount);
现在您可以使用参数变量-
mysql> select @TotalAmount;
这将产生以下输出-
+--------------+ | @TotalAmount | +--------------+ | 5000 | +--------------+ 1 row in set (0.00 sec)