Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我参加了一次面试,面试官问我一个问题,我们如何在不使用 PHP 中的 ORDER BY 子句的情况下对 MySQL 结果进行排序?有可能吗?如果答案是肯定的,那怎么办?
一种可能性是将值加载到 PHP 中的数组中,然后使用 PHP 中的某种排序算法对数组进行排序。这有时会让你使用比 MySQL 提供给你的更复杂的排序算法。
您需要先将结果作为数组获取。