查询构造器
介绍
数据库查询构造器 (query builder) 提供方便流畅的接口来建立、 执行数据库查询语法。在您的应用程序里面,它可以被使用在大部分的数据 库操作,而且它在所有支持的数据库系统上都可以执行。
Laravel 查询构造器使用 PDO 参数绑定,以保护应用程序免于SQL注入攻击 (SQL injection),因此传入的参数不需过滤额外的特殊字符串。
Selects
从数据库表中取得所有的数据列
$users = DB::table('users')->get();
foreach ($users as $user)
{
var_dump($user->name);
}
从数据库表中取得单一数据列
$user = DB::table('users')->where('name', 'John')->first();
var_dump($user->name);
从数据库表中取得单一数据列的单一字段
$name = DB::table('users')->where('name', 'John')->pluck('name');
取 得单一字段值的列表
$roles = DB::table('roles')->lists('title');
这个方法将会回传含有数据库表 role 的 title 字段值的数组。您也可以通过下面的方法,为回传的数组指定自定义键值。
$roles = DB::table('roles')->lists('title', 'name');
指定查询子句 (Select Clause)
$users = DB::table('users')->select('name', 'email')->get();
$users = DB::table('users')->distinct()->get();
$users = DB::table('users')->select('name as user_name')->get();
增加查询子句到现有的的查询中
$query = DB::table('users')->select('name');
$users = $query->addSelect('age')->get();
使用 where 及运算符
$users = DB::table('users')->where('votes', '>', 100)->get();
"or" 语法
$users = DB::table('users')
->where('votes', '>', 100)
->orWhere('name', 'John')
->get();
使用 Where Between
$users = DB::table('users')
->whereBetween('votes', array(1, 100))->get();
使用 Where Not Between
$users = DB::table('users')
->whereNotBetween('votes', array(1, 100))->get();
使用 Where In 与数组
$users = DB::table('users')
->whereIn('id', array(1, 2, 3))->get();
$users = DB::table('users')
->whereNotIn('id', array(1, 2, 3))->get();
使用 Where Null 找有未设定的值的数据
$users = DB::table('users')
->whereNull('updated_at')->get();
排序(Order By), 分群(Group By), 及 Having
$users = DB::table('users')
->orderBy('name', 'desc')
->groupBy('count')
->having('count', '>', 100)
->get();
偏移(Offset) 及 限制(Limit)
$users = DB::table('users')->skip(10)->take(5)->get();
Joins
查询构造器也可以使用 join 语法,看看下面的例子:
基本的 Join 语法
DB::table('users')
->join('contacts', 'users.id', '=', 'contacts.user_id')
->join('orders', 'users.id', '=', 'orders.user_id')
->select('users.id', 'contacts.phone', 'orders.price')
->get();
Left Join 语法
DB::table('users')
->leftJoin('posts', 'users.id', '=', 'posts.user_id')
->get();
您也可以指定更进阶的 join 子句
DB::table('users')
->join('contacts', function($join)
{
$join->on('users.id', '=', 'contacts.user_id')->orOn(...);
})
->get();
如果您想在您的 join 中使用 where 型式的子句,您可以在 join 子句里使用 where
或 orWhere
方法。下面的方法将会比较 contacts 数据库表中的 user_id 的字段值,而不是比较两个字段。
DB::table('users')
->join('contacts', function($join)
{
$join->on('users.id', '=', 'contacts.user_id')
->where('contacts.user_id', '>', 5);
})
->get();
进阶 Wheres
群组化参数
有些时候您需要更进阶的 where 子句,如 "where exists" 或多维数组参数。Laravel 的查询构造器也可以处理这样的情况;
DB::table('users')
->where('name', '=', 'John')
->orWhere(function($query)
{
$query->where('votes', '>', 100)
->where('title', '<>', 'Admin');
})
->get();
上面的查询语法会产生下方的 SQL:
select * from users where name = 'John' or (votes > 100 and title <> 'Admin')
Exists 语法
DB::table('users')
->whereExists(function($query)
{
$query->select(DB::raw(1))
->from('orders')
->whereRaw('orders.user_id = users.id');
})
->get();
上面的查询语法会产生下方的 SQL:
select * from users
where exists (
select 1 from orders where orders.user_id = users.id
)
聚合
查询构造器也提供各式各样的聚合方法,如 count
, max
, min
, avg
及 sum
。
使用聚合方法
$users = DB::table('users')->count();
$price = DB::table('orders')->max('price');
$price = DB::table('orders')->min('price');
$price = DB::table('orders')->avg('price');
$total = DB::table('users')->sum('votes');
Raw Expressions
有些时候您需要使用 raw expression 在查询语句里,这样的表达式会成为字串插入至查询中,因此要小心勿建立任何 SQL 注入的攻击点。要建立 raw expression,您可以使用 DB::raw
方法:
使用 Raw Expression
$users = DB::table('users')
->select(DB::raw('count(*) as user_count, status'))
->where('status', '<>', 1)
->groupBy('status')
->get();
新增
新增一条数据进数据库表
DB::table('users')->insert(
array('email' => 'john@example.com', 'votes' => 0)
);
新增自动递增 (Auto-Incrementing) ID 的数据至数据库表
如果数据库表有自动递增的ID,可以使用 insertGetId
新增数据并回传该 ID:
$id = DB::table('users')->insertGetId(
array('email' => 'john@example.com', 'votes' => 0)
);
当使用 PostgreSQL 时,insertGetId 方法会预先自动递增字段名为 "id" 的值。