gpt4 book ai didi

mysql - 在 mysql CL 中使用变量

转载 作者:行者123 更新时间:2023-11-29 22:14:31 25 4
gpt4 key购买 nike

是否可以通过命令行在 mysql 查询中使用 shell 变量?我想做的是:

$ var='test'

$ mysql -e 'INSERT INTO table (text) VALUE ($var);' database

即使我使用${var},它似乎也不起作用

知道我该如何做这样的事情吗?

我必须留在 shell 中,因为我通过 jenkins 'execute shell' 运行它

最佳答案

所以,在评论的帮助下,我终于成功了。

链接explanations of quotes in mysql解释一切。

解决方案:

$ var='test'
$ mysql -e "INSERT INTO table (text) VALUE ('$var');" database

关于mysql - 在 mysql CL 中使用变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31320059/

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