1

我有一个带有id索引的数据库,偶尔会有间隙。

如何使用 ActiveRecord 找到第 N 行的索引?

4

2 回答 2

2

这种方式得到与前一个答案相同的答案,但适用于任意大的表,因为它只从数据库中检索一个值。

id = MyTable.order(:id).offset(n-1).limit(1).pluck(:id).first

取决于您要做什么;)

于 2013-07-04T17:45:13.567 回答
1

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
于 2013-07-04T17:42:49.390 回答