postgresql get all table in database code example
Example 1: get all tables postgres
SELECT * FROM pg_catalog.pg_tables;
Example 2: get all tables postgres
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;