介绍

Laravel 的数据库查询生成器提供了一种便捷、流畅的接口来创建和运行数据库查询。它可用于执行应用程序中的大多数数据库操作,并与 Laravel 支持的所有数据库系统完美配合使用。

Laravel 查询生成器使用 PDO 参数绑定来保护您的应用程序免受 SQL 注入攻击。无需清理或净化传递给查询生成器的字符串作为查询绑定。

警告
PDO 不支持绑定列名。因此,您不应该允许用户输入来决定查询引用的列名,包括 “order by” 列名。

运行数据库查询

从表中检索所有行
你可以使用 php DB facade 提供的 php table 方法开始查询。table 方法为指定的表返回一个链式查询构造器实例,允许在查询上链接更多约束,最后使用 php get 方法检索查询结果:

  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Http\Controllers\Controller;
  4. use Illuminate\Support\Facades\DB;
  5. use Illuminate\View\View;
  6. class UserController extends Controller
  7. {
  8. /**
  9. * 展示应用程序所有用户的列表
  10. */
  11. public function index(): View
  12. {
  13. $users = DB::table('users')->get();
  14. return view('user.index', ['users' => $users]);
  15. }
  16. }

php get 方法返回包含查询结果的 php Illuminate\Support\Collection 实例,每个结果都是 PHP php stdClass 实例。可以将列作为对象的属性来访问每列的值:

  1. use Illuminate\Support\Facades\DB;
  2. $users = DB::table('users')->get();
  3. foreach ($users as $user) {
  4. echo $user->name;
  5. }

技巧:
Laravel 集合提供了各种及其强大的方法来映射和裁剪数据。有关 Laravel 集合的更多信息,请查看 集合文档.

从表中检索单行或单列
如果只需要从数据表中检索单行,可以使用 php DB facade 中的 php first 方法。 此方法将返回单个 php stdClass 对象

  1. $user = DB::table('users')->where('name', 'John')->first();
  2. return $user->email;

如果不想要整行,可以使用 php value 方法从纪录中提取单个值。此方法将直接返回列的值:

  1. $email = DB::table('users')->where('name', 'John')->value('email');

如果要通过 php id 字段值获取单行数据,可以使用 php find 方法:

  1. $user = DB::table('users')->find(3);

获取某一列的值
如果要获取包含单列值的 php Illuminate\Support\Collection 实例,则可以使用 php pluck 方法。在下面的例子中,我们将获取角色表中标题的集合:

  1. use Illuminate\Support\Facades\DB;
  2. $titles = DB::table('users')->pluck('title');
  3. foreach ($titles as $title) {
  4. echo $title;
  5. }

你可以通过向 php pluck 方法提供第二个参数来指定结果集中要作为键的列:

  1. $titles = DB::table('users')->pluck('title', 'name');
  2. foreach ($titles as $name => $title) {
  3. echo $title;
  4. }

分块结果

如果需要处理成千上万的数据库记录,请考虑使用 php DB 提供的 php chunk 方法。这个方法一次检索一小块结果,并将每个块反馈到闭包函数中进行处理。例如,让我们以一次 100 条记录的块为单位检索整个 php users 表:

  1. use Illuminate\Support\Collection;
  2. use Illuminate\Support\Facades\DB;
  3. DB::table('users')->orderBy('id')->chunk(100, function (Collection $users) {
  4. foreach ($users as $user) {
  5. // ...
  6. }
  7. });

你可以通过从闭包中返回 php false 来停止处理其余的块:

  1. DB::table('users')->orderBy('id')->chunk(100, function (Collection $users) {
  2. // 处理分块...
  3. return false;
  4. });

如果在对结果进行分块时更新数据库记录,那分块结果可能会以意想不到的方式更改。如果你打算在分块时更新检索到的记录,最好使用 php chunkById 方法。此方法将根据记录的主键自动对结果进行分页:

  1. DB::table('users')->where('active', false)
  2. ->chunkById(100, function (Collection $users) {
  3. foreach ($users as $user) {
  4. DB::table('users')
  5. ->where('id', $user->id)
  6. ->update(['active' => true]);
  7. }
  8. });

注意
当在更新或删除块回调中的记录时,对主键或外键的任何更改都可能影响块查询。这可能会导致记录未包含在分块结果中。

Lazily 流式传输结果

php lazy 方法的工作方式类似于 php chunk 方法,因为它以块的形式执行查询。但是,php lazy() 方法不是将每个块传递给回调,而是返回一个 php LazyCollection,它可以让你与结果进行交互单个流:

  1. use Illuminate\Support\Facades\DB;
  2. DB::table('users')->orderBy('id')->lazy()->each(function (object $user) {
  3. // ...
  4. });

再一次,如果你打算在迭代它们时更新检索到的记录,最好使用 php lazyByIdphp lazyByIdDesc 方法。 这些方法将根据记录的主键自动对结果进行分页:

  1. DB::table('users')->where('active', false)
  2. ->lazyById()->each(function (object $user) {
  3. DB::table('users')
  4. ->where('id', $user->id)
  5. ->update(['active' => true]);
  6. });

注意
在迭代记录时更新或删除记录时,对主键或外键的任何更改都可能影响块查询。这可能会导致记录不包含在结果中。

聚合函数

查询构建器还提供了多种检索聚合值的方法,例如 php countphp maxphp minphp avgphp sum。您可以在构建查询后调用这些方法中的任何一个:

  1. use Illuminate\Support\Facades\DB;
  2. $users = DB::table('users')->count();
  3. $price = DB::table('orders')->max('price');

当然,您可以将这些方法与其他子句结合起来,以优化计算聚合值的方式:

  1. $price = DB::table('orders')
  2. ->where('finalized', 1)
  3. ->avg('price');

判断记录是否存在
除了通过 php count 方法可以确定查询条件的结果是否存在之外,还可以使用 php existsphp doesntExist 方法:

  1. if (DB::table('orders')->where('finalized', 1)->exists()) {
  2. // ...
  3. }
  4. if (DB::table('orders')->where('finalized', 1)->doesntExist()) {
  5. // ...
  6. }

select 语句

指定一个 select 语句
可能您并不总是希望从数据库表中获取所有列。 使用 php select 方法,可以自定义一个 「select」 查询语句来查询指定的字段:

  1. use Illuminate\Support\Facades\DB;
  2. $users = DB::table('users')
  3. ->select('name', 'email as user_email')
  4. ->get();

php distinct 方法会强制让查询返回的结果不重复:

  1. $users = DB::table('users')->distinct()->get();

如果你已经有了一个查询构造器实例,并且希望在现有的查询语句中加入一个字段,那么你可以使用 php addSelect 方法:

  1. $query = DB::table('users')->select('name');
  2. $users = $query->addSelect('age')->get();

原生表达式

当你需要在查询中插入任意的字符串时,你可以使用 php DB 门面提供的 php raw 方法以创建原生表达式。

  1. $users = DB::table('users')
  2. ->select(DB::raw('count(*) as user_count, status'))
  3. ->where('status', '<>', 1)
  4. ->groupBy('status')
  5. ->get();

警告
原生语句作为字符串注入到查询中,因此必须格外小心避免产生 SQL 注入漏洞。

原生方法。

可以使用以下方法代替 php DB::raw,将原生表达式插入查询的各个部分。请记住,Laravel 无法保证所有使用原生表达式的查询都不受到 SQL 注入漏洞的影响。

php selectRaw
php selectRaw 方法可以用来代替 php addSelect(DB::raw(/* ... */))。此方法接受一个可选的绑定数组作为其第二个参数:

  1. $orders = DB::table('orders')
  2. ->selectRaw('price * ? as price_with_tax', [1.0825])
  3. ->get();

php whereRaw / orWhereRaw
php whereRawphp orWhereRaw 方法可用于将原始“where”子句注入您的查询。这些方法接受一个可选的绑定数组作为它们的第二个参数:

  1. $orders = DB::table('orders')
  2. ->whereRaw('price > IF(state = "TX", ?, 100)', [200])
  3. ->get();

php havingRaw / orHavingRaw
php havingRawphp orHavingRaw 方法可用于提供原始字符串作为“having”子句的值。这些方法接受一个可选的绑定数组作为它们的第二个参数:

  1. $orders = DB::table('orders')
  2. ->select('department', DB::raw('SUM(price) as total_sales'))
  3. ->groupBy('department')
  4. ->havingRaw('SUM(price) > ?', [2500])
  5. ->get();

php orderByRaw
orderByRaw 方法可用于将原生字符串设置为「order by」子句的值:

  1. $orders = DB::table('orders')
  2. ->orderByRaw('updated_at - created_at DESC')
  3. ->get();

php ### groupByRaw
groupByRaw 方法可以用于将原生字符串设置为 php group by 子句的值:

  1. $orders = DB::table('orders')
  2. ->select('city', 'state')
  3. ->groupByRaw('city, state')
  4. ->get();

Joins

Inner Join 语句
查询构造器也还可用于向查询中添加连接子句。若要执行基本的「inner join」,你可以对查询构造器实例使用 php join 方法。传递给 php join 方法的第一个参数是需要你连接到的表的名称,而其余参数指定连接的列约束。你甚至还可以在一个查询中连接多个表:

  1. use Illuminate\Support\Facades\DB;
  2. $users = DB::table('users')
  3. ->join('contacts', 'users.id', '=', 'contacts.user_id')
  4. ->join('orders', 'users.id', '=', 'orders.user_id')
  5. ->select('users.*', 'contacts.phone', 'orders.price')
  6. ->get();

Left Join / Right Join 语句
如果你想使用「left join」或者「right join」代替「inner join」,可以使用 php leftJoin 或者 php rightJoin 方法。这两个方法与 php join 方法用法相同:

  1. $users = DB::table('users')
  2. ->leftJoin('posts', 'users.id', '=', 'posts.user_id')
  3. ->get();
  4. $users = DB::table('users')
  5. ->rightJoin('posts', 'users.id', '=', 'posts.user_id')
  6. ->get();

Cross Join 语句
你可以使用 php crossJoin 方法执行「交叉连接」。交叉连接在第一个表和被连接的表之间会生成笛卡尔积:

  1. $sizes = DB::table('sizes')
  2. ->crossJoin('colors')
  3. ->get();

高级 Join 语句
你还可以指定更高级的联接子句。首先,将闭包作为第二个参数传递给 php join 方法。闭包将收到一个 php Illuminate\Database\Query\JoinClause 实例,该实例允许你指定对 php join 子句的约束:

  1. DB::table('users')
  2. ->join('contacts', function (JoinClause $join) {
  3. $join->on('users.id', '=', 'contacts.user_id')->orOn(/* ... */);
  4. })
  5. ->get();

如果你想要在连接上使用「where」风格的语句,你可以在连接上使用 php JoinClause 实例中的 php wherephp orWhere 方法。这些方法会将列和值进行比较,而不是列和列进行比较:

  1. DB::table('users')
  2. ->join('contacts', function (JoinClause $join) {
  3. $join->on('users.id', '=', 'contacts.user_id')
  4. ->where('contacts.user_id', '>', 5);
  5. })
  6. ->get();

子连接查询
你可以使用 php joinSubphp leftJoinSubphp rightJoinSub 方法关联一个查询作为子查询。他们每一种方法都会接收三个参数:子查询、表别名和定义关联字段的闭包。如下面这个例子,获取含有用户最近一次发布博客时的 php created_at 时间戳的用户集合:

  1. $latestPosts = DB::table('posts')
  2. ->select('user_id', DB::raw('MAX(created_at) as last_post_created_at'))
  3. ->where('is_published', true)
  4. ->groupBy('user_id');
  5. $users = DB::table('users')
  6. ->joinSub($latestPosts, 'latest_posts', function (JoinClause $join) {
  7. $join->on('users.id', '=', 'latest_posts.user_id');
  8. })->get();

联合

查询构造器还提供了一种简洁的方式将两个或者多个查询「联合」在一起。例如,你可以先创建一个查询,然后使用 php union 方法来连接更多的查询:

  1. use Illuminate\Support\Facades\DB;
  2. $first = DB::table('users')
  3. ->whereNull('first_name');
  4. $users = DB::table('users')
  5. ->whereNull('last_name')
  6. ->union($first)
  7. ->get();

查询构造器不仅提供了 php union 方法,还提供了一个 php unionAll 方法。当查询结合 php unionAll 方法使用时,将不会删除重复的结果。php unionAll 方法的用法和 php union 方法一样。

基础的 where 语句

where 语句

你可以在 php where 语句中使用查询构造器的 php where 方法。调用 php where 方法需要三个基本参数。第一个参数是字段的名称。第二个参数是一个操作符,它可以是数据库中支持的任意操作符。第三个参数是与字段比较的值。

例如。在 php users 表中查询 php votes 字段等于 php 100 并且 php age 字段大于 php 35 的数据:

  1. $users = DB::table('users')
  2. ->where('votes', '=', 100)
  3. ->where('age', '>', 35)
  4. ->get();

为了方便起见。如果你想要比较一个字段的值是否 php 等于 给定的值。你可以将这个给定的值作为第二个参数传递给 php where 方法。那么,Laravel 会默认使用 php = 操作符:

  1. $users = DB::table('users')->where('votes', 100)->get();

如上所述,你可以使用数据库支持的任意操作符:

  1. $users = DB::table('users')
  2. ->where('votes', '>=', 100)
  3. ->get();
  4. $users = DB::table('users')
  5. ->where('votes', '<>', 100)
  6. ->get();
  7. $users = DB::table('users')
  8. ->where('name', 'like', 'T%')
  9. ->get();

你也可以将一个条件数组传递给 php where 方法。数组的每个元素都应该是一个数组,其中包是传递给 php where 方法的三个参数:

  1. $users = DB::table('users')->where([
  2. ['status', '=', '1'],
  3. ['subscribed', '<>', '1'],
  4. ])->get();

注意
PDO 不支持绑定字段名。因此,你不应该允许让用户输入字段名进行查询引用,包括结果集「order by」语句。

or where 语句

当链式调用多个 php where 方法的时候,这些「where」语句将会被看成是 php and 关系。另外,你也可以在查询语句中使用 php orWhere 方法来表示 php or 关系。orWhere 方法接收的参数和 where 方法接收的参数一样:

  1. $users = DB::table('users')
  2. ->where('votes', '>', 100)
  3. ->orWhere('name', 'John')
  4. ->get();

如果你需要在括号内对 「or」 条件进行分组,那么可以传递一个闭包作为 php orWhere 方法的第一个参数:

  1. $users = DB::table('users')
  2. ->where('votes', '>', 100)
  3. ->orWhere(function(Builder $query) {
  4. $query->where('name', 'Abigail')
  5. ->where('votes', '>', 50);
  6. })
  7. ->get();

上面的示例将生成以下 SQL:

  1. select * from users where votes > 100 or (name = 'Abigail' and votes > 50)

注意
为避免全局作用域应用时出现意外,你应始终对 php orWhere 调用进行分组。

where Not 语句

php whereNotphp orWhereNot 方法可用于否定一组给定的查询条件。例如, 下面的查询排除了正在清仓甩卖或价格低于 10 的产品:

  1. $products = DB::table('products')
  2. ->whereNot(function (Builder $query) {
  3. $query->where('clearance', true)
  4. ->orWhere('price', '<', 10);
  5. })
  6. ->get();

JSON where 语句

Laravel 也支持 JSON 类型的字段查询,前提是数据库也支持 JSON 类型。目前,有 MySQL 5.7+、PostgreSQL、SQL Server 2016 和 SQLite 3.39.0 支持 JSON 类型 (with the JSON1 extension)。可以使用 php -> 操作符来查询 JSON 字段:

  1. $users = DB::table('users')
  2. ->where('preferences->dining->meal', 'salad')
  3. ->get();

您可以使用 php whereJsonContains 方法来查询 JSON 数组。但是 SQLite 数据库版本低于3.38.0时不支持该功能:

  1. $users = DB::table('users')
  2. ->whereJsonContains('options->languages', 'en')
  3. ->get();

如果您的应用使用的是 MySQL 或者 PostgreSQL 数据库,那么您可以向 php whereJsonContains 方法中传递一个数组类型的值:

  1. $users = DB::table('users')
  2. ->whereJsonContains('options->languages', ['en', 'de'])
  3. ->get();

你可以使用 php whereJsonLength 方法来查询 JSON 数组的长度:

  1. $users = DB::table('users')
  2. ->whereJsonLength('options->languages', 0)
  3. ->get();
  4. $users = DB::table('users')
  5. ->whereJsonLength('options->languages', '>', 1)
  6. ->get();

其他 where 语句

whereBetween / orWhereBetween

php whereBetween 方法是用来验证字段的值是否在给定的两个值之间:

  1. $users = DB::table('users')
  2. ->whereBetween('votes', [1, 100])
  3. ->get();

whereNotBetween / orWhereNotBetween

php whereNotBetween方法用于验证字段的值是否不在给定的两个值范围之中:

  1. $users = DB::table('users')
  2. ->whereNotBetween('votes', [1, 100])
  3. ->get();

whereBetweenColumns / whereNotBetweenColumns / orWhereBetweenColumns / orWhereNotBetweenColumns

php whereBetweenColumns 方法用于验证字段是否在给定的两个字段的值的范围中:

  1. $patients = DB::table('patients')
  2. ->whereBetweenColumns('weight', ['minimum_allowed_weight', 'maximum_allowed_weight'])
  3. ->get();

php whereNotBetweenColumns 方法用于验证字段是否不在给定的两个字段的值的范围中:

  1. $patients = DB::table('patients')
  2. ->whereNotBetweenColumns('weight', ['minimum_allowed_weight', 'maximum_allowed_weight'])
  3. ->get();

whereIn / whereNotIn / orWhereIn / orWhereNotIn

php whereIn 方法用于验证字段是否在给定的值数组中:

  1. $users = DB::table('users')
  2. ->whereIn('id', [1, 2, 3])
  3. ->get();

php whereIn 方法用于验证字段是否不在给定的值数组中:

  1. $users = DB::table('users')
  2. ->whereNotIn('id', [1, 2, 3])
  3. ->get();

你也可以为php whereIn 方法的第二个参数提供一个子查询:

  1. $activeUsers = DB::table('users')->select('id')->where('is_active', 1);
  2. $users = DB::table('comments')
  3. ->whereIn('user_id', $activeUsers)
  4. ->get();

上面的例子将会转换为下面的 SQL 查询语句:

  1. select * from comments where user_id in (
  2. select id
  3. from users
  4. where is_active = 1
  5. )

注意
如果你需要判断一个整数的大数组 php whereIntegerInRawphp whereIntegerNotInRaw方法可能会更适合,这种用法的内存占用更小。

whereNull / whereNotNull / orWhereNull / orWhereNotNull

php whereNull 方法用于判断指定的字段的值是否是php NULL

  1. $users = DB::table('users')
  2. ->whereNull('updated_at')
  3. ->get();

php whereNotNull 方法是用来验证给定字段的值是否不为 php NULL:

  1. $users = DB::table('users')
  2. ->whereNotNull('updated_at')
  3. ->get();

whereDate / whereMonth / whereDay / whereYear / whereTime

php whereDate 方法是用来比较字段的值与给定的日期值是否相等:

  1. $users = DB::table('users')
  2. ->whereDate('created_at', '2016-12-31')
  3. ->get();

php whereMonth 方法是用来比较字段的值与给定的月是否相等:

  1. $users = DB::table('users')
  2. ->whereMonth('created_at', '12')
  3. ->get();

php whereDay 方法是用来比较字段的值与给定的日是否相等:

  1. $users = DB::table('users')
  2. ->whereDay('created_at', '31')
  3. ->get();

php whereYear 方法是用来比较字段的值与给定的年是否相等:

  1. $users = DB::table('users')
  2. ->whereYear('created_at', '2016')
  3. ->get();

php whereTime 方法是用来比较字段的值与给定的时间是否相等:

  1. $users = DB::table('users')
  2. ->whereTime('created_at', '=', '11:20:45')
  3. ->get();

whereColumn / orWhereColumn

php whereColumn 方法是用来比较两个给定字段的值是否相等:

  1. $users = DB::table('users')
  2. ->whereColumn('first_name', 'last_name')
  3. ->get();

你也可以将比较运算符传递给 php whereColumn 方法:

  1. $users = DB::table('users')
  2. ->whereColumn('updated_at', '>', 'created_at')
  3. ->get();

你还可以向 php whereColumn 方法中传递一个数组。这些条件将使用 php and 运算符联接:

  1. $users = DB::table('users')
  2. ->whereColumn([
  3. ['first_name', '=', 'last_name'],
  4. ['updated_at', '>', 'created_at'],
  5. ])->get();

逻辑分组

有时你可能需要将括号内的几个「where」子句分组,以实现查询所需的逻辑分组。实际上应该将 php orWhere 方法的调用分组到括号中,以避免不可预料的查询逻辑误差。因此可以传递闭包给 php where 方法:

  1. $users = DB::table('users')
  2. ->where('name', '=', 'John')
  3. ->where(function (Builder $query) {
  4. $query->where('votes', '>', 100)
  5. ->orWhere('title', '=', 'Admin');
  6. })
  7. ->get();

你可以看到, 通过一个闭包写入 php where 方法 构建一个查询构造器来约束一个分组。这个闭包接收一个查询实例,你可以使用这个实例来设置应该包含的约束。上面的例子将生成以下 SQL:

  1. select * from users where name = 'John' and (votes > 100 or title = 'Admin')

注意
你应该用 php orWhere 调用这个分组,以避免应用全局作用时出现意外。

高级 where 语句

where Exists 语句

php whereExists 方法允许你使用 php where exists SQL 语句。 php whereExists 方法接收一个闭包参数,该闭包获取一个查询构建器实例,从而允许你定义放置在 php exists 子句中查询:

  1. $users = DB::table('users')
  2. ->whereExists(function (Builder $query) {
  3. $query->select(DB::raw(1))
  4. ->from('orders')
  5. ->whereColumn('orders.user_id', 'users.id');
  6. })
  7. ->get();

或者,可以向 php whereExists 方法提供一个查询对象,替换上面的闭包:

  1. $orders = DB::table('orders')
  2. ->select(DB::raw(1))
  3. ->whereColumn('orders.user_id', 'users.id');
  4. $users = DB::table('users')
  5. ->whereExists($orders)
  6. ->get();

上面的两个示例都会生成如下的 php SQL 语句

  1. select * from users
  2. where exists (
  3. select 1
  4. from orders
  5. where orders.user_id = users.id
  6. )

子查询 where 语句

有时候,你可能需要构造一个 php where 子查询,将子查询的结果与给定的值进行比较。你可以通过向 php where 方法传递闭包和值来实现此操作。例如,下面的查询将检索最后一次「会员」购买记录是「Pro」类型的所有用户;

  1. use App\Models\User;
  2. use Illuminate\Database\Query\Builder;
  3. $users = User::where(function (Builder $query) {
  4. $query->select('type')
  5. ->from('membership')
  6. ->whereColumn('membership.user_id', 'users.id')
  7. ->orderByDesc('membership.start_date')
  8. ->limit(1);
  9. }, 'Pro')->get();

或者,你可能需要构建一个 php where 子句,将列与子查询的结果进行比较。你可以通过将列、运算符和闭包传递给 php where 方法来完成此操作。例如,以下查询将检索金额小于平均值的所有收入记录;

  1. use App\Models\Income;
  2. use Illuminate\Database\Query\Builder;
  3. $incomes = Income::where('amount', '<', function (Builder $query) {
  4. $query->selectRaw('avg(i.amount)')->from('incomes as i');
  5. })->get();

全文 where 子句

注意
MySQL 和 PostgreSQL 目前支持全文 where 子句。

可以使用 php where FullTextphp orWhere FullText 方法将全文「where」 子句添加到具有 full text indexes 的列的查询中。这些方法将由Laravel转换为适用于底层数据库系统的SQL。例如,使用MySQL的应用会生成 php MATCH AGAINST 子句

  1. $users = DB::table('users')
  2. ->whereFullText('bio', 'web developer')
  3. ->get();

Ordering, Grouping, Limit & Offset

排序

php orderBy 方法
php orderBy 方法允许你按给定列对查询结果进行排序。php orderBy 方法接受的第一个参数应该是你希望排序的列,而第二个参数确定排序的方向,可以是 php ascphp desc

  1. $users = DB::table('users')
  2. ->orderBy('name', 'desc')
  3. ->get();

要按多列排序,你以根据需要多次调用 php orderBy

  1. $users = DB::table('users')
  2. ->orderBy('name', 'desc')
  3. ->orderBy('email', 'asc')
  4. ->get();

php latestphp oldest 方法
php latestphp oldest 方法可以方便让你把结果根据日期排序。查询结果默认根据数据表的 php created_at 字段进行排序 。或者,你可以传一个你想要排序的列名,通过:

  1. $user = DB::table('users')
  2. ->latest()
  3. ->first();

随机排序
php inRandomOrder 方法被用来将查询结果随机排序。例如,你可以使用这个方法去获得一个随机用户:

  1. $randomUser = DB::table('users')
  2. ->inRandomOrder()
  3. ->first();

移除已存在的排序
php reorder 方法会移除之前已经被应用到查询里的排序:

  1. $query = DB::table('users')->orderBy('name');
  2. $unorderedUsers = $query->reorder()->get();

当你调用 php reorder 方法去移除所有已经存在的排序的时候,你可以传递一个列名和排序方式去重新排序整个查询:

  1. $query = DB::table('users')->orderBy('name');
  2. $usersOrderedByEmail = $query->reorder('email', 'desc')->get();

分组

php groupByphp having 方法
如你所愿,php groupByphp having 方法可以将查询结果分组。php having 方法的使用方法类似于 php where 方法:

  1. $users = DB::table('users')
  2. ->groupBy('account_id')
  3. ->having('account_id', '>', 100)
  4. ->get();

你可以使用 php havingBetween 方法在一个给定的范围内去过滤结果:

  1. $report = DB::table('orders')
  2. ->selectRaw('count(id) as number_of_orders, customer_id')
  3. ->groupBy('customer_id')
  4. ->havingBetween('number_of_orders', [5, 15])
  5. ->get();

你可以传多个参数给 php groupBy 方法将多列分组:

  1. $users = DB::table('users')
  2. ->groupBy('first_name', 'status')
  3. ->having('account_id', '>', 100)
  4. ->get();

想要构造更高级的 php having 语句, 看 php havingRaw 方法。

限制和偏移量

php skipphp take 方法
你可以使用 php skipphp take 方法去限制查询结果的返回数量或者在查询结果中跳过给定数量:

  1. $users = DB::table('users')->skip(10)->take(5)->get();

或者,你可以使用 php limitphp offset 方法。这些方法在功能上等同于 php takephp skip 方法, 如下

  1. $users = DB::table('users')
  2. ->offset(10)
  3. ->limit(5)
  4. ->get();

条件语句

有时,可能希望根据另一个条件将某些查询子句应用于查询。例如,当传入 HTTP 请求有一个给定的值的时候你才需要使用一个php where 语句。你可以使用 php when 方法去实现:

  1. $role = $request->string('role');
  2. $users = DB::table('users')
  3. ->when($role, function (Builder $query, string $role) {
  4. $query->where('role_id', $role);
  5. })
  6. ->get();

php when 方法只有当第一个参数为 php true 时才执行给定的闭包。如果第一个参数是 php false ,闭包将不会被执行。因此,在上面的例子中,只有在传入的请求包含 php role 字段且结果为 php true 时,php when 方法里的闭包才会被调用。

您可以将另一个闭包作为第三个参数传递给 php when 方法。这个闭包则旨在第一个参数结果为 php false 时才会执行。为了说明如何使用该功能,我们将使用它来配置查询的默认排序:

  1. $sortByVotes = $request->boolean('sort_by_votes');
  2. $users = DB::table('users')
  3. ->when($sortByVotes, function (Builder $query, bool $sortByVotes) {
  4. $query->orderBy('votes');
  5. }, function (Builder $query) {
  6. $query->orderBy('name');
  7. })
  8. ->get();

插入语句

查询构造器也提供了一个 php insert 方法来用于插入记录到数据库表中。php insert 方法接受一个列名和值的数组:

  1. DB::table('users')->insert([
  2. 'email' => 'kayla@example.com',
  3. 'votes' => 0
  4. ]);

您可以通过传递一个二维数组来实现一次插入多条记录。每一个数组都代表了一个应当插入到数据表中的记录:

  1. DB::table('users')->insert([
  2. ['email' => 'picard@example.com', 'votes' => 0],
  3. ['email' => 'janeway@example.com', 'votes' => 0],
  4. ]);

php insertOrIgnore 方法将会在插入数据库的时候忽略发生的错误。当使用该方法时,您应当注意,重复记录插入的错误和其他类型的错误都将被忽略,这取决于数据库引擎。例如, php insertOrIgnore 将会 绕过 MySQL 的严格模式

  1. DB::table('users')->insertOrIgnore([
  2. ['id' => 1, 'email' => 'sisko@example.com'],
  3. ['id' => 2, 'email' => 'archer@example.com'],
  4. ]);

php insertUsing 方法将在表中插入新记录,同时用子查询来确定应插入的数据:

  1. DB::table('pruned_users')->insertUsing([
  2. 'id', 'name', 'email', 'email_verified_at'
  3. ], DB::table('users')->select(
  4. 'id', 'name', 'email', 'email_verified_at'
  5. )->where('updated_at', '<=', now()->subMonth()));

自增 IDs
如果数据表有自增 ID ,使用 php insertGetId 方法来插入记录可以返回 ID 值:

  1. $id = DB::table('users')->insertGetId(
  2. ['email' => 'john@example.com', 'votes' => 0]
  3. );

注意
当使用 PostgreSQL 时,php insertGetId 方法将默认把 php id 作为自动递增字段的名称。如果你要从其他「字段」来获取 ID ,则需要将字段名称作为第二个参数传递给 php insertGetId 方法。

更新插入

php upsert 方法是是插入不存在的记录和为已经存在记录更新值。该方法的第一个参数包含要插入或更新的值,而第二个参数列出了在关联表中唯一标识记录的列。 该方法的第三个也是最后一个参数是一个列数组,如果数据库中已经存在匹配的记录,则应该更新这些列:

  1. DB::table('flights')->upsert(
  2. [
  3. ['departure' => 'Oakland', 'destination' => 'San Diego', 'price' => 99],
  4. ['departure' => 'Chicago', 'destination' => 'New York', 'price' => 150]
  5. ],
  6. ['departure', 'destination'],
  7. ['price']
  8. );

在上面的例子中,Laravel 会尝试插入两条记录。如果已经存在具有相同 php departurephp destination 列值的记录,Laravel 将更新该记录的 php price 列。

注意
除 SQL Server 之外的所有数据库都要求 php upsert 方法的第二个参数中的列具有「主」或「唯一」索引。 此外,MySQL 数据库驱动程序忽略 php upsert 方法的第二个参数,并始终使用表的「主」和「唯一」索引来检测现有记录。

更新语句

除了插入记录到数据库之外,查询构造器也可以使用 php update 方法来更新已经存在的记录。php update 方法像 php insert 方法一样,接受一个列名和值的数组作为参数,它表示要更新的列和数据。php update 方法返回受影响的行数。您可以使用 php where 子句来限制 php update 查询:

  1. $affected = DB::table('users')
  2. ->where('id', 1)
  3. ->update(['votes' => 1]);

更新或插入
有时您可能希望更新数据库中的记录,但如果指定记录不存在的时候则创建它。在这种情况下,可以使用 php updateOrInsert 方法。php updateOrInsert 方法接受两个参数:一个用于查找记录的条件数组,以及一个包含要更该记录的键值对数组。

php updateOrInsert 方法将尝试使用第一个参数的列名和值来定位匹配的数据库记录。如果记录存在,则使用第二个参数更新其值。如果找不到指定记录,则会合并两个参数的属性来创建一条记录并将其插入:

  1. DB::table('users')
  2. ->updateOrInsert(
  3. ['email' => 'john@example.com', 'name' => 'John'],
  4. ['votes' => '2']
  5. );

更新 JSON 字段

当更新一个 JSON 列的收,您可以使用 php -> 语法来更新 JSON 对象中恰当的键。此操作需要 MySQL 5.7+ 和 PostgreSQL 9.5+ 的数据库:

  1. $affected = DB::table('users')
  2. ->where('id', 1)
  3. ->update(['options->enabled' => true]);

自增与自减

查询构造器还提供了方便的方法来增加或减少给定列的值。这两种方法都至少接受一个参数:要修改的列。可以提供第二个参数来指定列应该增加或减少的数量:

  1. DB::table('users')->increment('votes');
  2. DB::table('users')->increment('votes', 5);
  3. DB::table('users')->decrement('votes');
  4. DB::table('users')->decrement('votes', 5);

你还可以在操作期间指定要更新的其他列:

  1. DB::table('users')->increment('votes', 1, ['name' => 'John']);

此外,你可以使用 php incrementEachphp decrementEach 方法同时增加或减少多个列:

  1. DB::table('users')->incrementEach([
  2. 'votes' => 5,
  3. 'balance' => 100,
  4. ]);

删除语句

查询构建器的 php delete 方法可用于从表中删除记录。 php delete 方法返回受影响的行数。你可以通过在调用 php delete 方法之前添加 php where 子句来限制 php delete 语句:

  1. $deleted = DB::table('users')->delete();
  2. $deleted = DB::table('users')->where('votes', '>', 100)->delete();

如果你希望截断整个表,这将从表中删除所有记录并将自动递增 ID 重置为零,你可以使用 php truncate 方法:

  1. DB::table('users')->truncate();

截断表 & PostgreSQL
截断 PostgreSQL 数据库时,将应用 php CASCADE 行为。这意味着其他表中所有与外键相关的记录也将被删除。

悲观锁

查询构建器还包括一些函数,可帮助你在执行 php select 语句时实现「悲观锁」。 要使用「共享锁」执行语句,你可以调用 php sharedLock 方法。共享锁可防止选定的行被修改,直到你的事务被提交:

  1. DB::table('users')
  2. ->where('votes', '>', 100)
  3. ->sharedLock()
  4. ->get();

或者,你可以使用 php lockForUpdate 方法。「update」锁可防止所选记录被修改或被另一个共享锁选中:

  1. DB::table('users')
  2. ->where('votes', '>', 100)
  3. ->lockForUpdate()
  4. ->get();

调试

你可以在构建查询时使用 php ddphp dump 方法来转储当前查询绑定和 SQL。 php dd 方法将显示调试信息,然后停止执行请求。 php dump 方法将显示调试信息,但允许请求继续执行:

  1. DB::table('users')->where('votes', '>', 100)->dd();
  2. DB::table('users')->where('votes', '>', 100)->dump();