如何使用 MySQL 将查询结果存储在变量中?
mysqlmysqli database
要使用 MySQL 将查询结果存储在变量中,请使用 SET 命令。语法如下 −
SET @anyVariableName = ( yourQuery);
为了理解上述概念,让我们创建一个表。以下是创建表的查询 −
mysql> create table QueryResultDemo −> ( −> Price int −> ); Query OK, 0 rows impacted (0.59 sec)
现在让我们将一些记录插入表中。以下是插入记录的查询 −
mysql> insert into QueryResultDemo values(100); Query OK, 1 row affected (0.17 sec) mysql> insert into QueryResultDemo values(20); Query OK, 1 row affected (0.13 sec) mysql> insert into QueryResultDemo values(200); Query OK, 1 row affected (0.10 sec) mysql> insert into QueryResultDemo values(80); Query OK, 1 row affected (0.15 sec)
使用 select 语句显示表中的所有记录。显示所有记录的查询如下 −
mysql> select *from QueryResultDemo;
以下是输出 −
+-------+ | Price | +-------+ | 100 | | 20 | | 200 | | 80 | +-------+ 4 rows in set (0.00 sec)
现在,您可以借助 SET 命令将查询结果设置在变量中。查询如下。
mysql> Set @TotalPrice = (select sum(Price) from QueryResultDemo); Query OK, 0 rows impacted (0.00 sec)
使用 SELECT 语句检查变量"TotalPrice"中存储的值是什么 −
mysql> select @TotalPrice;
以下是输出 −
+-------------+ | @TotalPrice | +-------------+ | 400 | +-------------+ 1 row in set (0.00 sec)