Jump to content

Last Two Entries


ballouta

Recommended Posts

I ran a micro test.

 

In a 20K rows table (id, name):

SELECT * FROM xyz LIMIT 19998, 2

~0.0065s


SELECT * FROM xyz ORDER BY id DESC LIMIT 0, 2

0.0002s

 

The 2nd is much faster :) Your right :)

 

(And at first, still no the count(*) )

 

[edit]

Its understandable, cuz the ids are in sequence (1, 2, 3... 7, 8)... almost nothing to order.

 

 

Link to comment
https://forums.phpfreaks.com/topic/208377-last-two-entries/#findComment-1088977
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.