How do I list all extensions that are already installed in a database or schema from psql?
See also
In psql that would be
dx
See the manual of psql for details.
Doing it in plain SQL it would be a select on pg_extension:
pg_extension
SELECT * FROM pg_extension;
1.4m articles
1.4m replys
5 comments
57.0k users