mysql怎么查询数据库有多少表
mysql怎么查询数据库有多少表
mysql中查询一个数据库中有多少表的方法:
mysql中直接使用下面的命令即可查询:
select count(*) tables, table_schema from information_schema.tables where table_schema = '库名' group by table_schema;
在information_schema下打开查询,输入语句:
select count(*) tables, table_schema from information_schema.tables where table_schema = 'test';