标签: ruby-on-rails
我有非常具体的任务。我需要从特定范围内的ID中选择数据库中的项目。 (例如从3到8)。我该怎么做?
答案 0 :(得分:0)
您可以将where与范围:
where
Model.where(id: 3..8) # 3..8 - your range