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