phpMyAdmin中行数前面带~是什么意思?

数据库中的有的表都是InnoDB类型,因为重做了一次系统,没有用命令备份,导致表结构损坏,
所以这个库是恢复出来的,但是恢复后行数前面都是~了
图片描述

阅读 3.3k
1 个回答

近似值,鼠标放到问号那里。

phpMyAdmin uses a quick method to get the row count, and this method only returns an approximate count in the case of InnoDB tables. See $cfg['MaxExactCount'] for a way to modify those results, but this could have a serious impact on performance.

这个值是一个快速算法,不精确,你可以设置 $cfg['MaxExactCount'] = 20000 如果小于20000就返回精确的行数,如果大于个这个数就快速计算一个近似值。

撰写回答
你尚未登录,登录后可以
  • 和开发者交流问题的细节
  • 关注并接收问题和回答的更新提醒
  • 参与内容的编辑和改进,让解决方法与时俱进