问答 / 0 / 1 / 创建于 2年前 / 更新于 2年前
OPTIMIZE no_write_to_binlog TABLE cmf_football_match_detail_live;
Table does not support optimize, doing recreate + analyze instead
alter table cmf_football_match_detail_live engine=innodb; 结果是一样的
不会变多的,innodb引擎的表,在mysql表信息里面存储的行数只是一个滞后的近似值,是不精确的,你执行完表整理,它应该只是更新了一下这个值而已。你要获取表行数的准确值,应该使用select count(*) from xxx去查询
select count(*) from xxx
我要举报该,理由是:
推荐文章: