SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
SELECT table_name
FROM information_schema.tables
WHERE table_schema='public'
AND table_type='BASE TABLE';
dt
# show list of tables in postgres
PostgreSQL show tables command
dt
c database_name -> to select the database
dt -> to show the tables in the current database
d table
postgres=# d tablename;
SELECT *
FROM pg_catalog.pg_tables
WHERE schemaname != 'pg_catalog' AND
schemaname != 'information_schema';Code language: SQL (Structured Query Language) (sql)
SELECT *
FROM pg_catalog.pg_tables
WHERE schemaname != 'pg_catalog' AND
schemaname != 'information_schema';
Code language: SQL (Structured Query Language) (sql)
postgres=# dtCode language: PHP (php)
postgres=# dt+Code language: PHP (php)