Afficher toutes les tables publiques SQL

SELECT *
FROM INFORMATION_SCHEMA.tables
where table_schema = 'public';
Puzzled Penguin