Answers for "postgres get all tables in schema"

SQL
-2

get all tables postgres

SELECT * FROM pg_catalog.pg_tables;
Posted by: Guest on November-11-2020
3

list all tables in postgres schema

dt schema_name.*
Posted by: Guest on December-27-2021
0

postgres get all tables in schema

SELECT * FROM information_schema.tables 
WHERE table_schema = 'public'
Posted by: Guest on February-22-2022

Code answers related to "postgres get all tables in schema"

Code answers related to "SQL"

Browse Popular Code Answers by Language