Zeigen Sie alle öffentlichen Tabellen Postgres
SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
Puzzled Penguin
SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';