【MySQL】-SQL-统计数据的表格个数
统计数据库表的数量
SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = 'testpass' OR table_schema = 'testquta'

SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES WHERE table_schema = 'testpass' OR table_schema = 'testquta'
