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

LaravelでDBの同じ行のAとBの値を足した値でwhereしたい

Posted at

はじめに

こんにちは、エンジニアのkeitaMaxです。

Laravel11でDBの同じ行のAとBの値を足した値でwhereしたいということで備忘録で書こうとおもます。

やりたいこと

a b c
1 2 3
10 2 30

こんなテーブルがあった時に、a+bが10以上のものをとってくる処理を書きたいと思います。

結論

$query->where(DB::raw('a + b'), '>=', 10);

こんな感じでDB::rawを使えばできました。

おわりに

この記事での質問や、間違っている、もっといい方法があるといったご意見などありましたらご指摘していただけると幸いです。

最後まで読んでいただきありがとうございました!

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