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';