mirror of
https://github.com/chubin/cheat.sheets
synced 2024-11-19 03:25:44 +00:00
9 lines
164 B
Plaintext
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;
|