2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Arel使わずにLIKEのOR検索

Last updated at Posted at 2016-07-07

経緯

あるカラム内にある複数パターンの文字列をLIKE検索したい
正規表現でもいいけど、配列で文字列管理したいとき
Arelでもいいけど、可読性悪いし個人的に好きじゃないし、公式ドキュメントにないので怖い
http://qiita.com/joker1007/items/5c851526e73b3bc0273a

これだけ

Product.where(
  SEARCH_WORDS.map { |attr|  "\"products\".\"description\" LIKE ?" }.join(' OR '),
  *SEARCH_WORDS.map { |attr| "%#{attr}%" }
)

最近よくつかうのでメモ

[関連?]
http://qiita.com/takuya0301/items/e18696c49c5a61aff45f

2
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?