Answers for "select all database postgres"

1

list all database in postgres

l: for list all databases.
Posted by: Guest on December-09-2021
0

show all database inside postgresql

-- Query to get all database in PostgreSQL and their oid (alternative to l) 
SELECT oid, datname FROM pg_database;
Posted by: Guest on January-02-2022

Code answers related to "select all database postgres"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language