数据库: 查询构造器

简介

Laravel 的数据库查询构造器为创建和运行数据库查询提供了一个方便的接口。它能用来执行应用程序中的大部分数据库操作,且可在所有支持的数据库系统上运行。

Laravel 的查询构造器使用 PDO 参数绑定来保护您的应用程序免受 SQL 注入攻击。因此没有必要清理作为绑定传递的字符串。

获取结果

从数据表中获取所有行

你可以 DB facade 上使用 table 方法来开始查询。该 table 方法为给定的表返回一个查询构造器实例,允许你在查询上链式调用更多的约束,最后使用 get 方法获取结果:

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

get 方法返回一个包含 Illuminate\Support\Collection 的结果,其中每个结果都是 PHP StdClass 对象的一个实例。你可以访问字段作为对象的属性来访问每列的值:

  1. foreach ($users as $user) {
  2. echo $user->name;
  3. }

从数据表中获取单行或列

如果你只需要从数据表中检索一行数据,你可以使用 first 方法。该方法返回一个 StdClass 对象:

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

如果你甚至不需要整行数据,可以使用 value 方法从记录中获取单个值。该方法将直接返回字段的值:

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

获取一列的值

如果你想获取包含单列值的集合,你可以使用 pluck 方法。在下面的例子中,我们将获取角色表中标题的集合:

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

你也可以在返回的集合中指定字段的自定义键值:

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

分块结果

如果你需要处理数千条数据库记录, 可以考虑使用 chunk 方法。该方法每次只取出一小块结果,并将取出的结果传递给 闭包 处理。这对于编写数千条记录的 Artisan 命令 而言是非常有用的。例如,一次处理 users 表中的 100 条记录:

  1. DB::table('users')->orderBy('id')->chunk(100, function ($users) {
  2. foreach ($users as $user) {
  3. //
  4. }
  5. });

你可以从 闭包 中返回 false 来阻止进一步的分块结果:

  1. DB::table('users')->orderBy('id')->chunk(100, function ($users) {
  2. // Process the records...
  3. return false;
  4. });

聚合

查询构造器还提供了各种聚合方法,例如 countmaxminavg, 和 sum。 你可以在查询后调用任何方法:

  1. $users = DB::table('users')->count();
  2. $price = DB::table('orders')->max('price');

当然。你也可以将这些方法和其他语句结合起来:

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

确定记录是否存在

不要使用 count 方法来确定是否存在与查询相匹配的记录,应该使用 existsdoesntExist 方法:

  1. return DB::table('orders')->where('finalized', 1)->exists();
  2. return DB::table('orders')->where('finalized', 1)->doesntExist();

Selects

指定一个 Select 语句

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

  1. $users = DB::table('users')->select('name', 'email as user_email')->get();

distinct允许你强制让查询返回不重复的结果:

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

如果你已有一个查询构造器实例,并且希望在现有的 select 语句中加入一个字段,则可以 addSelect 方法:

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

原生表达式

有时候你可能需要在查询中使用原生表达式。创建一个原生表达式, 你可以使用 DB::raw 方法:

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

{note} 原生表达式将会被当做字符串注入到查询中,因此你应该小心使用,避免创建 SQL 注入漏洞。

原生方法

可以使用以下的方法代替 DB::raw 将原生表达式插入查询的各个部分。

selectRaw

selectRaw 方法可以用来代替 select(DB::raw(…))。这个方法的第二个参数接受一个可选的绑定参数数组:

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

whereRaw / orWhereRaw

可以使用 whereRaworWhereRaw 方法将原生的 where 注入到你的查询中。这些方法接受一个可选的绑定数组作为他们的第二个参数:

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

havingRaw / orHavingRaw

havingRaworHavingRaw 方法可用于将原生字符串设置为 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();

orderByRaw

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

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

Joins

Inner Join 语句

查询构造器也可编写 join 语句。若要执行基本的「内链接」,你可以在查询构造器实例上使用 join 方法。传递给 join 方法的第一个参数是你需要连接的表的名称,而其它参数则用来指定连接的字段约束。你还可以在单个查询中连接多个数据表:

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

Left Join 语句

如果你想使用「左连接」代替「内连接」,使用 leftJoin 方法。 leftJoin 方法与 join 方法用法相同:

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

Cross Join 语句

使用 crossJoin 方法和你想要交叉连接的表名来做「交叉连接」。交叉连接在第一个表和连接之间生成笛卡尔积:

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

高级 Join 语句

你可以指定更高级的 join 语句。比如传递一个 闭包 作为 join 方法的第二个参数。此 闭包 接收一个 JoinClause 对象,从而在其中指定 join 语句中指定约束:

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

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

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

Unions

查询构造器还提供了将两个查询「联合」起来的快捷方式。比如,你可以先创建一个查询,然后使用 union 方法将其和第二个查询进行联合:

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

{tip} unionAll 方法也是可用的,并且和 union 方法用法相同。

Where 语句

简单的 Where 语句

使用查询构建器上的 where 方法可以添加 where 子句到查询中。调用 where 最基本的方式需要传递三个参数,第一个参数是列名,第二个参数是任意一个数据库系统支持的运算符,第三个参数是该列要比较的值。

例如,下面是一个要验证「votes」字段的值等于 100 的查询:

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

为了方便,如果你只是简单比较列值和给定数值是否相等,可以将数值直接作为 where 方法的第二个参数:

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

当然你还可以使用其他运算符来编写 where 子句:

  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();

还可以传递数组到 where 函数中:

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

Or 语句

你可以一起链式调用 where,也可以在查询中添加 or 语句。 orWhere 方法接受与 where 方法相同的参数:

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

其他 Where 语句

whereBetween

whereBetween 方法验证字段的值位于两个值之间:

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

whereNotBetween

whereNotBetween 方法验证字段的值位于两个值之外:

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

whereIn / whereNotIn

whereIn 方法验证字段的值在指定的数组内:

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

whereNotIn 方法验证字段的值 在指定的数组内:

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

whereNull / whereNotNull

whereNull 方法验证字段的值为 NULL

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

whereNotNull 方法验证字段的值不为 NULL

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

whereDate / whereMonth / whereDay / whereYear / whereTime

whereDate 方法用于比较字段的值和日期:

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

whereMonth 方法用于比较字段的值与一年的特定月份:

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

whereDay 方法用于比较字段的值与一个月的特定日期:

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

whereYear 方法用于比较字段的值与特定年份:

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

whereTime 用于将字段的值与特定的时间进行比较:

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

whereColumn

whereColumn 方法用于验证两个字段是否相等:

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

还可以将比较运算符传递给该方法:

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

还可以传递多条件数组到 whereColumn 方法,这些条件通过 and 运算符连接:

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

参数分组

有时候你需要创建更高级的 where 子句,例如「where exists」或者嵌套的参数分组。 Laravel 的查询构造器也能够处理这些。下面,让我们看一个在括号中进行分组约束的例子:

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

正如你所看到的,传递 闭包orWhere 方法构造查询构建器来开始一个约束分组。 该 闭包 接受一个查询构造器实例,上述语句等价于下面的 SQL:

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

Where Exists 语句

whereExists 方法允许你编写 where exists SQL 语句。 该 whereExists 方法接受一个 Closure 参数,该闭包获取一个查询构建器实例从而允许你定义放置在 "exists" 字句中查询:

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

上述查询等价于下面的 SQL 语句:

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

JSON Where 语句

Laravel 也支持查询 JSON 类型的字段(仅在对 JSON 类型支持的数据库上)。目前,本特性仅支持 MySQL 5.7+ 和 Postgres数据库。使用 -> 操作符查询 JSON 数据:

  1. $users = DB::table('users')
  2. ->where('options->language', 'en')
  3. ->get();
  4. $users = DB::table('users')
  5. ->where('preferences->dining->meal', 'salad')
  6. ->get();

Ordering, Grouping, Limit, & Offset

orderBy

orderBy 方法允许你通过给定字段对结果集进行排序。 orderBy 的第一个参数应该是你希望排序的字段,第二个参数控制排序的方向,可以是 ascdesc

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

latest / oldest

latestoldest 方法允许你通过日期对结果进行排序。默认情况下,结果集根据 created_at 列进行排序。或者,你可以按照你想要排序的字段作为字段名传入:

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

inRandomOrder

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

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

groupBy / having

groupByhaving 方法对查询结果进行分组。 having 方法的用法与 where 方法类似:

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

可以将多个参数传递给 groupBy 方法,按多个字段进行分组:

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

关于 having 更高级的用法,请查看 havingRaw 方法。

skip / take

想要限定查询返回的结果集的数目, 或者在查询中跳过给定数目的结果,可以使用 skiptake 方法:

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

或者,你也可以使用 limitoffset 方法:

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

条件语句

有时你可能想要子句只适用于某个情况为真时才执行查询。例如,你可能只想给定值在请求中存在的情况下才应用 where 语句。你可以通过使用 when 方法:

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

when 方法只有在第一个参数为 true 的时候才执行给定闭包。 如果第一个参数为 false,那么这个闭包将不会被执行。

你可以传递另一个闭包作为 when 方法的第三个参数。该闭包会在第一个参数为 false 的情况下执行。为了演示这个特性如何使用,我们来配置一个查询的默认排序:

  1. $sortBy = null;
  2. $users = DB::table('users')
  3. ->when($sortBy, function ($query) use ($sortBy) {
  4. return $query->orderBy($sortBy);
  5. }, function ($query) {
  6. return $query->orderBy('name');
  7. })
  8. ->get();

插入

查询构造器还提供了 insert 方法用于插入记录到数据库中。 insert 方法接收数组形式的字段名和字段值进行插入操作:

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

你还可以在 insert 中传入一个嵌套数组向表中插入多条记录。每个数组代表要插入表中的行:

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

自增 ID

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

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

{note} 当使用 PostgreSQL 时,insertGetId 方法将默认把 id 作为自动递增字段的名称。若你要从其他「序列」来获取 ID,则可以将字段名称作为第二个参数传递给 insertGetId 方法。

更新

当然,除了插入记录到数据库中,查询构造器也可通过 update 方法更新已有的记录。 update 方法和 insert 方法一样,接受包含要更新的字段及值的数组。 你可以通过 where 子句对 update 查询进行约束:

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

更新 JSON 字段

更新 JSON 字段时,你可以使用 -> 语法访问 JSON 对象上相应的值,该操作只能用于支持 JSON 字段类型的数据库:

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

自增与自减

查询构造器还为给定字段的递增或递减提供了方便的方法。 此方法提供了一个比手动编写 update 语句更具表达力且更精练的接口。

这两个方法都至少接收一个参数:需要修改的列。第二个参数是可选的,用于控制列递增或递减的量。

  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']);

Deletes

查询构造器也可以使用 delete 方法从数据表中删除记录。在使用 delete 前,可添加 where 子句来约束 delete 语法:

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

如果你需要清空表,你可以使用 truncate 方法,这将删除所有行,并重置自增 ID 为零:

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

悲观锁

查询构造器也包含一些可以帮助你在 select 语法上实现 「悲观锁定」的函数。若想在查询中实现一个「共享锁」,你可以使用 sharedLock 方法。共享锁可防止选中的数据列被篡改,直到事务被提交为止 :

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

另外,你也可以使用 lockForUpdate 方法。使用「更新」锁可避免行被其它共享锁修改或选取:

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

本文章首发在 LearnKu.com 网站上。

本文中的所有译文仅用于学习和交流目的,转载请务必注明文章译者、出处、和本文链接
我们的翻译工作遵照 CC 协议,如果我们的工作有侵犯到您的权益,请及时联系我们。