select count(*)
from information_schema.tables;
Или ако искате да намерите броя на таблиците само за определена схема:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Или ако искате да намерите броя на таблиците само за определена схема:
select count(*)
from information_schema.tables
where table_schema = 'public';