gpt4 book ai didi

postgresql - 有什么方法可以隐藏 PostgreSQL 扩展输出中的长分隔线吗?

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

psql 中,将 \x 切换到扩展输出模式,当存在具有长字符串值的字段时,我会得到这些很长的虚线作为记录分隔符在选定的记录之一中。他们看起来像

-[ 记录 2 ]---------------------------------------- ---------------------------------------------- ---------------------------------------------- ---------------------------------------------- --------------------------(更长)

有什么办法可以抑制或缩短这些行吗?我在 PostgreSQL 8.4 上

最佳答案

尝试\t:

test=# select * from test limit 1;
-[ RECORD 1 ]-------------------
id | 1
name | foo

test=# \t
Showing only tuples.
test=# select * from test limit 1;
id | 1
name | foo

Docs .


也试试:

test=# \pset border 0
Border style is 0.
backend=# select * from test limit 2;
id 1
name foo

id 2
name bar

关于postgresql - 有什么方法可以隐藏 PostgreSQL 扩展输出中的长分隔线吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6306063/

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