For best performance i prefer this way (it's faster):
SELECT MAX(price) FROM shop;

rather than
SELECT price  FROM shop ORDER BY price DESC LIMIT 1;

--

In second case MySQL must select all records from table, sort it and then apply
LIMIT (it's must be logicaly slower than first one)

   Michal Dvoracek                           [EMAIL PROTECTED]



---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to