select count(*)
from information_schema.tables;
Lub jeśli chcesz znaleźć liczbę tabel tylko dla określonego schematu:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Lub jeśli chcesz znaleźć liczbę tabel tylko dla określonego schematu:
select count(*)
from information_schema.tables
where table_schema = 'public';