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.
如果我不包含ORDER BY子句,CockroachDB 如何返回查询结果?按主键排序?我的所有测试似乎都表明是这种情况,但在继续开发之前要确保。
ORDER BY
如果您没有ORDER BY在查询中指定子句,那么您的行很可能会以任意顺序返回,而不是按表的主键明确排序。如果您关心顺序,请始终ORDER BY在您希望结果排序的列上包含一个子句。