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?
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?
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.