Answers for "check list of databaste postgresql"

SQL
0

postgresql list columns

SELECT * FROM information_schema.columns 
WHERE table_schema = 'your_schema'
  AND table_name = 'your_table';
Posted by: Guest on April-30-2021
0

list all database in postgres

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

Code answers related to "check list of databaste postgresql"

Code answers related to "SQL"

Browse Popular Code Answers by Language