在上篇文章[ laravel框架orm获取上次最后成功插入的ID](https://www.yuanchengzhushou.cn/article/8258.html)中我们已经知道如何在orm中取得上次成功插入的数据库id
当我们用DB来开发时,如何取得呢?
比下面代码
```
$data = ["username" => "test", "sex" => "m"];
$user_id = \DB::table("userinfo")->insertGetId($data);
echo $user_id;
```
我们只需要通过`insertGetId`即可取得上次成功插入数据库的id