select count(*)
from information_schema.tables;
Nebo pokud chcete zjistit počet tabulek pouze pro konkrétní schéma:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Nebo pokud chcete zjistit počet tabulek pouze pro konkrétní schéma:
select count(*)
from information_schema.tables
where table_schema = 'public';