list tables in db postgres code example
Example 1: get all tables postgres
SELECT * FROM pg_catalog.pg_tables;
Example 2: show table postgres command
PostgreSQL show tables command
\dt
SELECT * FROM pg_catalog.pg_tables;
PostgreSQL show tables command
\dt