5.29ORDER BY
SELECT Id, Name, CreatedDate
FROM Account
ORDER BY CreatedDate DESC
For deterministic pagination/integration logic, sorting can matter.
You don't want to implicitly assume retrieval order.
SELECT Id, Name, CreatedDate
FROM Account
ORDER BY CreatedDate DESC
For deterministic pagination/integration logic, sorting can matter.
You don't want to implicitly assume retrieval order.