0

I just inserted ~140,000 entries into a MYSQL table and when I look at phpmyadmin, the records count looks like ~129,000 and fluctuates on every refresh.

Any ideas why it is doing it?

William Falcon
  • 9,660
  • 13
  • 63
  • 109

1 Answers1

3

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.

http://www.phpmyadmin.net/documentation/#faq3_11

Bastian
  • 10,279
  • 1
  • 30
  • 40