标签: postgresql
假设我有一个表thing并运行如下查询:
thing
SELECT * FROM things LIMIT 1
现在,我知道无保证将返回哪一行。为此,我需要使用ORDER BY。
ORDER BY
然而,在实践中,Postgres引擎是否会更频繁地返回特定行?