Reputation: 1
I am using PostgreSQL with c++ and I am trying to analyse the performance of different queries. I tried using EXPLAIN ANALYZE but I can't figure out how to print the result on screen. How can I do so?
Upvotes: 0
Views: 187
Reputation: 54363
The psql
command-line tool will run queries and display the results.
Upvotes: 1