Skip to content

Instantly share code, notes, and snippets.

@StevenJL
Last active August 16, 2021 06:30
Show Gist options
  • Save StevenJL/8442163b9ae9815efa37f22d7e44113c to your computer and use it in GitHub Desktop.
Save StevenJL/8442163b9ae9815efa37f22d7e44113c to your computer and use it in GitHub Desktop.
PSQL query most rows
SELECT
rows,
query
FROM pg_stat_statements
WHERE query iLIKE '%SELECT%'
ORDER BY rows DESC
LIMIT 100;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment