从终端执行MySQL查询而不显示结果?

让我们首先创建一个表-

mysql> create table DemoTable709 (Amount int);

使用插入命令在表中插入一些记录-

mysql> insert into DemoTable709 values(100);

mysql> insert into DemoTable709 values(560);

mysql> insert into DemoTable709 values(7800);

mysql> insert into DemoTable709 values(1020);

使用select语句显示表中的所有记录-

mysql> select *from DemoTable709;

这将产生以下输出-

+--------+

| Amount |

+--------+

| 100    |

| 560    |

| 7800   |

| 1020   |

+--------+

4 rows in set (0.00 sec)

以下是从终端执行MySQL查询而不显示结果的查询-

mysql> set @TotalAmount=(select sum(Amount) from DemoTable709);

如果要查看结果,可以使用以下查询-

mysql> select @TotalAmount;

这将产生以下输出-

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

| @TotalAmount |

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

| 9480         |

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

1 row in set (0.05 sec)

以上是 从终端执行MySQL查询而不显示结果? 的全部内容, 来源链接: utcz.com/z/335139.html

回到顶部