gpt4 book ai didi

mysql - 如何从 bash 中的 MySQL 查询结果中获取字段

转载 作者:IT老高 更新时间:2023-10-28 12:55:53 25 4
gpt4 key购买 nike

我只想在 bash 脚本中获取 MySQL 查询结果的值。例如运行以下命令:

mysql -uroot -ppwd -e "SELECT id FROM nagios.host WHERE name='$host'"

返回:

+----+
| id |
+----+
| 0 |
+----+

如何获取 bash 脚本中返回的值?

最佳答案

使用-s-N:

> id=`mysql -uroot -ppwd -s -N -e "SELECT id FROM nagios.host WHERE name='$host'"`
> echo $id
0

来自 the manual :

--silent, -s

   Silent mode. Produce less output. This option can be given multiple
times to produce less and less output.

This option results in nontabular output format and escaping of
special characters. Escaping may be disabled by using raw mode; see
the description for the --raw option.

--skip-column-names, -N

   Do not write column names in results.

编辑

看起来 -ss 也很好用,而且更容易记住。

关于mysql - 如何从 bash 中的 MySQL 查询结果中获取字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9558867/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com