select count(*)
from information_schema.tables;
Oder wenn Sie die Anzahl der Tabellen nur für ein bestimmtes Schema finden möchten:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Oder wenn Sie die Anzahl der Tabellen nur für ein bestimmtes Schema finden möchten:
select count(*)
from information_schema.tables
where table_schema = 'public';