公告
财富商城
积分规则
提问
发文
2019-01-21 04:10发布
Explosion°爆炸
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 for details: http://www.postgresql.org/docs/current/static/app-psql.html
Doing it in plain SQL it would be a select on pg_extension:
pg_extension
SELECT * FROM pg_extension
http://www.postgresql.org/docs/current/static/catalog-pg-extension.html
Additionally if you want to know which extensions are available on your server: SELECT * FROM pg_available_extensions
SELECT * FROM pg_available_extensions
最多设置5个标签!
In psql that would be
See the manual for details: http://www.postgresql.org/docs/current/static/app-psql.html
Doing it in plain SQL it would be a select on
pg_extension
:http://www.postgresql.org/docs/current/static/catalog-pg-extension.html
Additionally if you want to know which extensions are available on your server:
SELECT * FROM pg_available_extensions