PostgreSQL – How to List All Installed Extensions
To list all installed extensions in PostgreSQL, you can query the pg_extension
system catalog table as shown below:
SELECT extname FROM pg_extension;
This query retrieves the names of all installed extensions in your PostgreSQL database.