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';
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';