gpt4 book ai didi

mysql - 在一段时间间隔后从 shell 脚本调用 MySQL 查询

转载 作者:行者123 更新时间:2023-11-29 11:01:10 24 4
gpt4 key购买 nike

我想在一段时间后从 shell 脚本执行 MySQL 查询。我已经编写了脚本,但输出不符合预期。它再次从数据库打印相同的值。有人可以帮忙吗?

SCRIPT- demo.sh

#!/bin/bash
echo "Shell Script to Query a Database!"
echo "--Querying from the Database starts--"
cd "C:\Program Files\MySQL\MySQL Server 5.7\bin"
for i in {1..5};
do
./mysql -u root -proot@123 << EOF
use catalyst_latest;
select id from ci_master limit 1;
EOF
echo "Wait for 2 seconds for the next ID."
sleep 2;
done
echo "--Query Stopped!--"

输出

$ ./demo.sh
Shell Script to Query a Database!
--Querying from the Database starts--
mysql: [Warning] Using a password on the command line interface can be insecure.
id
282
Wait for 2 seconds for the next ID.
mysql: [Warning] Using a password on the command line interface can be insecure.
id
282
Wait for 2 seconds for the next ID.
mysql: [Warning] Using a password on the command line interface can be insecure.
id
282
Wait for 2 seconds for the next ID.
mysql: [Warning] Using a password on the command line interface can be insecure.
id
282
Wait for 2 seconds for the next ID.
mysql: [Warning] Using a password on the command line interface can be insecure.
id
282
Wait for 2 seconds for the next ID.
--Query Stopped!--

你能看到每次都返回 282 吗?所以我想在 2 秒后从数据库中获取下一个 ID。请告诉我该怎么做。预先感谢您。

最佳答案

您需要将返回的 id 值记住到 bash 变量中,然后在查询的 WHERE 子句中重用该变量,如下所示:

select id from ci_master where id > $id limit 1

要将命令的输出写入变量,请使用如下所示的内容:

id=$(mysql <options> -Nsqe "<query>")

选项N跳过列名(如id),选项s用于更静默的输出,选项q用于不缓存结果,选项e 表示要执行的命令。

最初,$id 变量应设置为某个值,例如 1 或表中现有值的最小值。

关于mysql - 在一段时间间隔后从 shell 脚本调用 MySQL 查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42223632/

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