mysql 统计表中条目数量的几种方法
展开
通常的方法是:
select count(*) from `table_name`
select count(1) from `table_name`
select count(row_name)from `table_name`#count列名
更全局的方法是:
MySQL中有一个名为 information_schema 的数据库,在该库中有一个 TABLES 表,这个表主要字段分别是:
TABLE_SCHEMA : 数据库名
TABLE_NAME:表名
ENGINE:所使用的存储引擎
TABLE_ROWS:记录数
DATA_LENGTH:数据大小默认16K
INDEX_LENGTH:索引大小
AVG_ROW_LENGTH:平均行长度 = DATA_LENGTH除以rows
所以只需要:
select 'TABLE_ROWS' from `information_schema`.`TABLES` WHERE 'TABLE_SCHEMA' LIKE '数据库名' AND 'TABLE_NAME' LIKE '表名'
————————————————
版权声明:本文为CSDN博主「l6807718」的原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接及本声明。
原文链接:https://blog.csdn.net/l6807718/java/article/details/53522666.
MariaDB [information_schema]> select TABLE_SCHEMA, TABLE_NAME, TABLE_ROWS from `TABLES`;
1. 查看表占用空间情况
select table_name, (data_length+index_length)/1024/1024 as total_mb, table_rows from information_schema.tables where table_schema='zabbix';
image.png
2.Zabbix大表:history,history_log,history_str,history_text,history_uint,trends,trends_uint
共有四个存储过程
partition_create - 这将在给定模式中的给定表上创建一个分区。
partition_drop - 这将删除给定模式中给定表上给定时间戳的分区。
partition_maintenance - 此功能是用户调用的。它负责解析给定的参数,然后根据需要创建/删除分区。
partition_verify - 检查给定模式中给定表上是否启用了分区。如果没有启用,它将创建一个单独的分区。
作者:Daisy小朋友
链接:https://www.jianshu.com/p/b6b5b5377c9b
来源:简书
著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。