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.
我有一个带有属性汽车的模型样本
car 是具有不同汽车名称的 CSV
x.car = "BMW,Ferrari,AUDI" Sample.where(:car => "BMW")
返回 []。
如何将它用作 SQL 中的 like 运算符,以便它返回 x
在你的 where 方法中使用这样的条件(就像准备好的查询一样工作)。
Sample.where("car LIKE ?", "BMW%")
更多示例可以在rails guide中找到。