To follow up on this question: I found some results very different from what Sean McSomething describes:
I have a table with about 300M rows.
Select max(foo) from bar; takes about 15 sec. to run
Select foo from bar order by foo desc limit 1; takes 3 sec. to run
Sean's statement "It looks like MIN() is the way to go - it's faster in the worst case, indistinguishable in the best case" just doesn't hold for this case...but I have no idea why. Can anyone offer an explanation?
Edit: Since I am unable to show the table's structure here: assume that bar is a table in an ndb_cluster with no relations, foo is an arbitrary data point with no index.
SHOW CREATE TABLE bar-- indexing, or foreign key may affect it – Mikhail Nov 11 '10 at 17:30order by foo, notorder by barfor them to be the same – nos Nov 11 '10 at 17:31