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

Come ottenere il numero totale di tabelle in postgresql?

select count(*)
from information_schema.tables;

Oppure se vuoi trovare il numero di tabelle solo per uno schema specifico:

select count(*)
from information_schema.tables
where table_schema = 'public';