5

我想在 ActiveRecord 查询中使用 SQL 子句“使用索引('index_name')”,有没有人知道使用 Activerecord 执行此操作的好方法我想避免将字符串直接添加到查询中。

4

1 回答 1

2

我在我的模型中使用它:

def self.use_index(index)
  from("#{self.table_name} USE INDEX(#{index})")
end
于 2014-10-23T20:55:27.777 回答