使用“\x”时,在一行中运行多个命令会失败使用 PSQL (POSTGRES)

发布于 2025-01-13 07:30:42 字数 527 浏览 0 评论 0原文

我正在尝试在一行中运行以下查询:

\x
select * from pg_stat_statements order by max_exec_time desc limit 10;

如下所示:

kubectl -n MYNAMESPACEXXX exec -ti MYPGPOD-K8SXXX -- psql -d MY-DB -U postgres -c '\x select * from pg_stat_statements order by max_exec_time desc limit 10;'

但我得到了

unrecognized value "select" for "expanded"
Available values are: on, off, auto.
command terminated with exit code 1

How can we join those \x 和 SQL 查询?

I'm trying to run the following queries in one line:

\x
select * from pg_stat_statements order by max_exec_time desc limit 10;

As follows:

kubectl -n MYNAMESPACEXXX exec -ti MYPGPOD-K8SXXX -- psql -d MY-DB -U postgres -c '\x select * from pg_stat_statements order by max_exec_time desc limit 10;'

But I get

unrecognized value "select" for "expanded"
Available values are: on, off, auto.
command terminated with exit code 1

How can we combine both \x and the SQL query ?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无言温柔 2025-01-20 07:30:42

另一种方法是多次使用 -c 选项:

psql -c '\x' -c 'SELECT ...'

An alternative is to use the -c option several times:

psql -c '\x' -c 'SELECT ...'
苍风燃霜 2025-01-20 07:30:42

您还可以从命令行设置扩展模式:


  kubectl -n MYNAMESPACEXXX exec -ti MYPGPOD-K8SXXX -- psql -d MY-DB -U postgres --expanded -c 'select * from pg_stat_statements order by max_exec_time desc limit 10;'

You can also set the expanded mode from the commandline:


  kubectl -n MYNAMESPACEXXX exec -ti MYPGPOD-K8SXXX -- psql -d MY-DB -U postgres --expanded -c 'select * from pg_stat_statements order by max_exec_time desc limit 10;'
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文