查询数据库中有多少张表

SELECT COUNT(*) TABLES, table_schema FROM information_schema.TABLES   WHERE table_schema = 'dbname' GROUP BY table_schema;
其中 dbname  是你的想要查询数据库的名字

你可能感兴趣的:(sql)