PHPMyadmin does not show the last records in the table

0

I have a table logs that has 700,000 records. When I go to the "Browse" section in phpmyadmin to see the records in the table, I click on the "> >" symbol. to go to the "last page", basically to go to the end of the table and see the most recent records.

Phpmyadmin does not show the last records, it always stays in records a month ago and tells me that there is nothing more after the last record that shows me, but if I manually do a SELECT * FROM logs WHERE ID > 785000; , the query if it shows me the last records.

The table was working well until a week ago. The table handles its incremental Auto ID field, therefore the newest records if they have the largest numbers.

Any idea what's happening or how can I resolve this?

    
asked by Neoz Memphisto 26.05.2018 в 00:08
source

1 answer

0
SELECT * FROM logs
ORDER BY id DESC LIMIT 1;

Will sort the records in a descending order

    
answered by 26.05.2018 / 00:13
source