我有一个带有id
索引的数据库,偶尔会有间隙。
如何使用 ActiveRecord 找到第 N 行的索引?
这种方式得到与前一个答案相同的答案,但适用于任意大的表,因为它只从数据库中检索一个值。
id = MyTable.order(:id).offset(n-1).limit(1).pluck(:id).first
取决于您要做什么;)
Assuming you want to still order them by :id
(rather than, say :created_at
), just grab the nth one from the database and look at its id
.
Resource.order(:id).offset(n-1).limit(1).first.id