1
0

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 3 years have passed since last update.

Sequel で like 検索をする時に String に cast する方法

Last updated at Posted at 2021-05-28

ruby の Sequel gem を利用して like 検索をする際には、検索のワードが String である必要があります。そのため、もし値が id カラム(Serial)に格納されている場合は下記のように Sequel.cast します。

id = 1
DB.where(Sequel.like(Sequel.cast(:id, String), "%#{id}%")).all

このようにすれば%で囲っているので部分一致検索になります。
ポイントは値を cast するのではなくカラムをcastすると記載するようです。
いろいろ探しましたが明快なものがなかったので、記事にしました。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?