Created
July 18, 2023 13:43
-
-
Save raspi/34f6ea3f41fe0433d28365347e2a969e to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT | |
d.datname db | |
FROM | |
pg_catalog.pg_database d | |
WHERE | |
d.datname NOT LIKE ALL (ARRAY ['template%', 'postgres']) | |
ORDER BY 1; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment