gpt4 book ai didi

mysqlshow 与表的数量

转载 作者:太空宇宙 更新时间:2023-11-03 11:20:33 26 4
gpt4 key购买 nike

以下命令会让我知道数据库的名称。

$ mysqlshow

但是我怎么知道每个数据库中的表的数量以及空表的数量呢?例如

数据库计数为空

测试 10 5

mydb 122 0

客户 34 34

最佳答案

如果您有权限,您可以从 information_schema.tables 中选择 count(*)。

select count(*) from information_schema.tables
where table_schema = <My Schema>
and table_type = 'BASE TABLE';

并在 table_rows 列上过滤空 yables:

 select count(*) from information_schema.tables
where table_schema = <My Schema>
and table_type = 'BASE TABLE'
and table_rows = 0;

关于mysqlshow 与表的数量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1281773/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com