这是原始查询
where(countries.map{|c| "zones.countries LIKE '%#{c}%'"}.join(' OR '))
现在我会用 ? 重写这个查询?像这样的运营商
where(countries.map{|c| "zones.countries LIKE ?", "%#{c}%"}.join(' OR '))
但它不起作用。有什么建议吗?谢谢
这是原始查询
where(countries.map{|c| "zones.countries LIKE '%#{c}%'"}.join(' OR '))
现在我会用 ? 重写这个查询?像这样的运营商
where(countries.map{|c| "zones.countries LIKE ?", "%#{c}%"}.join(' OR '))
但它不起作用。有什么建议吗?谢谢