show tables of database postgres code example
Example 1: show table postgres command
PostgreSQL show tables command
\dt
Example 2: postgresql show all tables
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;