Q:

get all tables postgres

SELECT * FROM pg_catalog.pg_tables;
0
PostgreSQL show tables command
	
\dt
8
SELECT table_name
FROM information_schema.tables
WHERE table_schema = 'public'
ORDER BY table_name;
0

New to Communities?

Join the community