select count(*)
from information_schema.tables;
Hoặc nếu bạn chỉ muốn tìm số lượng bảng cho một lược đồ cụ thể:
select count(*)
from information_schema.tables
where table_schema = 'public';
select count(*)
from information_schema.tables;
Hoặc nếu bạn chỉ muốn tìm số lượng bảng cho một lược đồ cụ thể:
select count(*)
from information_schema.tables
where table_schema = 'public';