2
0
mirror of https://github.com/chubin/cheat.sheets synced 2024-11-19 03:25:44 +00:00
cheat.sheets/sheets/_psql/performance
2018-01-17 16:13:38 +00:00

9 lines
164 B
Plaintext

-- Show the query plan for a query
EXPLAIN query;
-- Show and execute the query plan for a query
EXPLAIN ANALYZE query;
-- Collect statistics
ANALYZE table_name;