select count(*)
from information_schema.tables;
Of als u het aantal tabellen alleen voor een specifiek schema wilt vinden:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Of als u het aantal tabellen alleen voor een specifiek schema wilt vinden:
select count(*)
from information_schema.tables
where table_schema = 'public';