Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 ActiveRecord 查询中使用 SQL 子句“使用索引('index_name')”,有没有人知道使用 Activerecord 执行此操作的好方法我想避免将字符串直接添加到查询中。
我在我的模型中使用它:
def self.use_index(index) from("#{self.table_name} USE INDEX(#{index})") end