PostgreSQL
 sql >> Database >  >> RDS >> PostgreSQL

Query PostgreSQL per elencare tutti i nomi delle tabelle?

Che dire di questa query (basata sulla descrizione del manuale)?

SELECT table_name
  FROM information_schema.tables
 WHERE table_schema='public'
   AND table_type='BASE TABLE';