gpt4 book ai didi

postgresql - 从 shell 运行参数化查询时, ":"处或附近出现语法错误

转载 作者:行者123 更新时间:2023-12-03 08:51:39 27 4
gpt4 key购买 nike

我正在尝试从 shell 运行参数化查询。

但是当我运行时:

p='some stuff'
psql -d "dbname" -v v1="$p" -c "SELECT * FROM table WHERE name=:'v1'"

我收到以下错误:

ERROR:  syntax error at or near ":"

同时:

psql -d "dbname" -v v1="$p" -c "\echo :'v1'"

工作正常。 (按预期返回:'some stuff')

最佳答案

您不能在 -c 命令中使用 -v 中定义的变量(见下文)。尝试将命令传递到标准输入:

psql -d "dbname" -v v1="$p" <<< "SELECT * FROM table WHERE name=:'v1'"

来自document :

-c command

--command command

...

command must be either a command string that is completely parsable by the server (i.e., it contains no psql-specific features), or a single backslash command.

...

-v 确实设置了 psql 的内部变量,这是psql 特定的功能。这就是您收到语法错误的原因。

关于postgresql - 从 shell 运行参数化查询时, ":"处或附近出现语法错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58621117/

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