select count(*)
from information_schema.tables;
Eller om du bara vill hitta antalet tabeller för ett specifikt schema:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Eller om du bara vill hitta antalet tabeller för ett specifikt schema:
select count(*)
from information_schema.tables
where table_schema = 'public';