最佳答案
我想执行一个如下的更新原始 sql:
update table set f1=? where f2=? and f3=?
这个 SQL 将由 ActiveRecord::Base.connection.execute
执行,但是我不知道如何将动态参数值传递给该方法。
有人能帮帮我吗?