2
1

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 1 year has passed since last update.

Laravelクエリビルダを使ってレコード数を取得する方法

Last updated at Posted at 2021-10-25

#はじめに
Laravelクエリビルダを使ってレコード数を取得しようとした際、集計メソッドを用いると簡潔だったためまとめます。

#クエリビルダを使ってレコード数を取得する方法
集計メソッドを用いることでレコード数を取得することができます。

例:
usersテーブルにてmanageカラムが1のレコード数を取得

$count = \App\Models\User::where('manage', 1)->count()

※select(count(*) as count)のようにせず、レコード数の取得が可能である。

他にもmax、min、avg、sumなどの集計メソッドがあります。

#おわりに
Laravelでデータを取得時に上手くいかない場合は、便利なメソッドがあるかもしれないので調べてみるのがいいかもしれませんね!

参考にしたページ

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?