By Bobby Iliev
Being able to tell how much time a query takes to run can be very useful when you’re trying to optimize your queries.
In this post, we’ll show you how to do this using the psql
command-line tool.
This textbox defaults to using Markdown to format your answer.
You can type !ref in this text area to quickly search our full set of tutorials, documentation & marketplace offerings and insert the link!
Accepted Answer
Hello,
One of the most straightforward ways to time a query is to use the following:
- psql -h localhost -p 5432 -U postgres
Note that you would need to have the psql command installed on your machine:
\timing
SELECT * FROM users;
Output:
Time: 0.120 ms
This is going to be enabled for your current session only. Once you open a new session, the query timing will be disabled, so you will have to enable it again.
Hope that this helps!
Best,
Bobby
Get paid to write technical tutorials and select a tech-focused charity to receive a matching donation.
Full documentation for every DigitalOcean product.
The Wave has everything you need to know about building a business, from raising funding to marketing your product.
Stay up to date by signing up for DigitalOcean’s Infrastructure as a Newsletter.
New accounts only. By submitting your email you agree to our Privacy Policy
Scale up as you grow — whether you're running one virtual machine or ten thousand.
Sign up and get $200 in credit for your first 60 days with DigitalOcean.*
*This promotional offer applies to new accounts only.