is php sort better than mysql “order by”?

mySQL, hands down. It’s optimized to do this, and can make use of indexes. This would be horrible to do in PHP (and you would reach the memory_limit quickly).

Leave a Comment