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.
是否可以在不使用查询子句的情况下反转mysql_fetch_array值?ORDER BYSELECT
mysql_fetch_array
ORDER BY
SELECT
如果您想要的只是反转返回的数组,那么您可以使用array_reverse:
array_reverse
array_reverse($array);
您可以在文档中找到更多信息。
当您执行 select 语句时,您永远无法确定返回项目的顺序。所以为了确定,你必须使用 order by 子句。如果您想要相反的顺序,请执行
ORDER BY columnA DESC
大多数情况下,大多数数据库都会返回内容,没有按添加行的顺序排列,但它是不确定的。