从控制台对字段进行快速通配符搜索的最简单方法是什么?我不在乎防范 SQL 注入。
我正在使用PostgreSQL。
title
使用包含“emerging”的字符串进行搜索
这可行,但有点麻烦。好奇是否有速记?
Product.where("title @@ :q", q: "emerging")
在 Rails 4 中同样繁琐但似乎不再适合我:
Product.where("title ILIKE ?", "emerging")
Product.where("title ilike :q", q: "emerging")
我想我正在寻找类似的东西Product.where(title: "*emerging*")