Skip to content

Instantly share code, notes, and snippets.

@wilmoore
Last active June 17, 2025 03:19
Show Gist options
  • Select an option

  • Save wilmoore/2fb33beb701163639918b20679b2eef5 to your computer and use it in GitHub Desktop.

Select an option

Save wilmoore/2fb33beb701163639918b20679b2eef5 to your computer and use it in GitHub Desktop.
Software Engineering :: Database :: PostgreSQL :: Extension

Software Engineering :: Database :: PostgreSQL :: Extension

⪼ Made with 💜 by Polyglot.

-- Check the list of available extensions to install
SELECT * FROM pg_available_extensions;

-- Install the pg_stat_statements Extension
CREATE EXTENSION pg_stat_statements;

-- Check for installed extensions
SELECT * FROM pg_extension;
\dx
Third Party Extensions

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment