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.

Laravel で auto increment 値を取得する

Last updated at Posted at 2021-08-25

今まで以下の方法でテーブルのID最大値を取得してました

$maxId = Users::max('id') + 1;

もしくは

$maxId = DB::table('users')
          ->select('id')
          ->oredrby('id', 'desc')
          ->first()->id;

前者はテーブルのレコード数が大量になると遅くなるので、データが大量になる場合は後者を使ってました。

が、エラーなど起こってデータがロールバックされた場合抜け番が生じます。
その結果、子テーブルがある場合データの不整合が起きます。
どういう事かというと

WS000001.JPG

WS000002.JPG

WS000003.JPG

なので、以下のクエリでauto increment値を取得

SELECT
 AUTO_INCREMENT
FROM
 INFORMATION_SCHEMA.TABLES
WHERE
 TABLE_SCHEMA = 'DB名'
 AND TABLE_NAME = 'テーブル名'
;

Laravelであれば

$maxId = DB::table("INFORMATION_SCHEMA.TABLES")
            ->select("AUTO_INCREMENT")
            ->where("TABLE_SCHEMA", "DB名")
            ->where("TABLE_NAME", "テーブル名")
            ->first()->AUTO_INCREMENT;

これで子テーブルでもauto increment値が登録可能です

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?