如何在 postgres 中使用 \timing
how to use \timing in postgres
我想知道在 Postgres 中执行查询所花费的时间,我看到很多响应建议使用 \timing,但我是 Postgres 的新手,我不知道如何使用它,任何人都可以帮助
提前谢谢你
您只能将 \timing
与命令行客户端 psql
一起使用,因为这是一个 psql
命令。
这是一个打开和关闭执行时间报告的开关:
test=> \timing
Timing is on.
test=> SELECT 42;
┌──────────┐
│ ?column? │
├──────────┤
│ 42 │
└──────────┘
(1 row)
Time: 0.745 ms
test=> \timing
Timing is off.
我想知道在 Postgres 中执行查询所花费的时间,我看到很多响应建议使用 \timing,但我是 Postgres 的新手,我不知道如何使用它,任何人都可以帮助
提前谢谢你
您只能将 \timing
与命令行客户端 psql
一起使用,因为这是一个 psql
命令。
这是一个打开和关闭执行时间报告的开关:
test=> \timing
Timing is on.
test=> SELECT 42;
┌──────────┐
│ ?column? │
├──────────┤
│ 42 │
└──────────┘
(1 row)
Time: 0.745 ms
test=> \timing
Timing is off.