17
13

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.

Laravelでwhere検索する時、部分一致を用いても検索できない

Posted at

クエリビルダWHERE節で部分一致検索をする時

まず、ドキュメントはこちら

$this->where('title', 'like', '%$word%')->get();

$this->where('title', 'like', "%$word%")->get();

このように記述すれば、titleカラムで$wordと部分一致するカラムだけを取得できる。

しかし、上の記述だと、第3引数が''で囲まれているため、変数$wordが展開されず、そのまま$wordとして検索してしまう。これを""として囲ってあげることで、展開され、検索できる!

基本的なことだが、第1、2引数を''で囲んでいるため、流れで第3引数も''で囲ってしまい検索できないという結果になるので、LIKEを用いる際は、第3引数を""で囲む!

17
13
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
17
13

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?