È disponibile una query per elencare tutte le tabelle nel mio DB Postgres.
Ho provato una query come:
SELECT table_name FROM information_schema.tables
WHERE table_schema='public'
Ma questa query restituisce anche visualizzazioni.
Come posso ottenere solo i nomi delle tabelle, non le viste?