PostgreSQL调出每一次sql执行所花的时间

前端之家收集整理的这篇文章主要介绍了PostgreSQL调出每一次sql执行所花的时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

使用命令: \timing

postgres=# \timing
Timing is on.
postgres=#
postgres=# select * from tb4 where name is not null;
id | name
----+------
10 | john
9 | john
8 | john
7 | john
6 | john
5 | john
4 | john
3 | john
2 | john
1 | john
(10 rows)

Time: 0.574 ms postgres=#

原文链接:https://www.f2er.com/postgresql/195363.html

猜你在找的Postgre SQL相关文章