Today I Learned

hashrocket A Hashrocket project

What are the available extensions in postgres?

Are you curious what all Postgres has to offer in terms of available extensions? You can get a list of them from the pg_available_extensions table.

select * from pg_available_extensions;

I have 46 available and one installed (by default?), plpgsql.

You can see all installed extensions with:

select * from pg_extension;
See More #sql TILs
Looking for help? Hashrocket developers believe that data quality is as important as code quality. We enjoy all the challenges of relational databases, from finding the fastest index, to structuring data to fit the needs of an application. We're eager to share our experiences; check out PG Casts, our series of free PostgreSQL screencasts.