【发布时间】:2014-05-21 07:18:44
【问题描述】:
问:如何停止显示PostgreSQL中受影响的行数的消息?
数据库:PostgreSQL
版本:9.3
【问题讨论】:
-
该反馈由 SQL 客户端工具显示,而不是“由 Postgres”显示。您使用的是
psql还是其他一些工具? -
@a_horse_with_no_name, psql.
标签: postgresql rowcount
问:如何停止显示PostgreSQL中受影响的行数的消息?
数据库:PostgreSQL
版本:9.3
【问题讨论】:
psql 还是其他一些工具?
标签: postgresql rowcount
你可以使用元命令\pset footer off:
如果您想永久保存,可以将该命令放入您的~/.psqlrc:http://www.postgresql.org/docs/current/static/app-psql.html#AEN88713
【讨论】: