Inner join:
$arr = [];
$str = 'age = ?';
$arr[] = '18';
$str = ' and x = ? and y = ?';
$arr[] = 'x';
$arr[] = 'y';
$list_temp = DB::table('account_info')
->join('users','users.account_nu','=','account_info.account_nu')
->whereRaw($str, $arr)
->orderBy('user_id', 'DESC')
;
$list_temp->where('created_at', '>=', $start_time);
$list = $list_temp->get();
//循环 $list 直接 使用 ->属性 获取值即可,
//连表也是 所以如果有相同的字段最好命名别名。
foreach($list as $v){
$user_id = $v->user_id; // 表account_info的 user_id字段
$LOGIN = $v->country; // 表users的country字段
}
hasOne:
hasOne 用于 一对一 例如 user 表 hasOne phone
使用的时候直接 User::find(1)->phone 。 如果只是获取某个用户的 phone 这么用没问题,但是如果批量获取用户的phone 这样就不合适,因为每次获取都会
执行sql : 类似 select * from phone where user_id = $id;
所以应当使用 with
with(渴求式加载):
$data = User::with('phone')->get();
$data = User::with(['phone' => function ($query) {
$query->where('title', 'like', '%first%');
}])->get();
使用 循环 $data 如果获取phone 直接 $v->phone 即可,但是这样查询结果不能因为关联表的值影响 $data 值数量
例如 select * from user inner join phone on user.id = phone.user_id where phone.number like ‘189%’;
因为 使用 with 的sql 是先 查询所有的 user 然后结果再放到 in 条件里 给 phone 类似:
select * from user where XX; user_id 值为 1,2,3,4 然后再 select * from phone where user_id IN (1,2,3,4); 再将值和 前面的值整合。
所以想要phone 的条件影响 user 的值集合是做不到的。可以使用 whereHas
whereHas:
$list = AccountInfo::whereHas('users',function ($query) use($start_time,$end_time){
if($start_time){
$query->where('created_at', '>=', $start_time);
}
if($end_time){
$query->where('created_at', '<=', $end_time);
}
})->whereRaw($str, $arr)->orderBy('user_id', 'DESC')->get();
即 whereHas 相当于使用 where exists
使用的时候 循环 foreach($list as $v) 然后 ->AccountInfo 的字段,如果需要 users 的字段值就需要 $v->users->+users的字段,但是这里就会产生一个sql(非渴求式)
所以如果还想要 关联表的 值 那么还是使用 DB::table(‘a’)->join 即 inner join 好了
指定查询字段:
//使用all :
AccountInfo::all(['user_id','user_name']);
//使用get:
AccountInfo::where('user_id','<','10')->get(['user_id','user_name']);
//使用select
AccountInfo::where('user_id','<','20')->select(['user_id','user_name'])->get();
使用 chunk:
AccountInfo::orderBy('user_id','desc')->chunk(100,function($accounts){
foreach ($accounts as $account){
var_dump($account->toArray());
}
});
打印sql 类似执行了循环分页,一页 100 默认主键升序排序,可以自定义 orderBy. 也可以添加where 等条件
判断是否有结果:
使用 eloquent 获取结果,不能使用 empty 或者 is_null 等来判断,因为如果没有结果,empty 也是 false
因为返回的空结果 也是 Illuminate\Database\Eloquent\Collection 对象实例
Eloquent 已经封装了几个判断方法:
$result = Model::where(...)->get();
if ($result->first()) { }
if (!$result->isEmpty()) { }
if ($result->count()) { }
laravel lockForUpdate sharedLock
//考虑当有并发更新此行数据的时候使用。
//insert ,delete 等sql操作不需要使用, 读取(select)的时候使用 lockForUpdate 或者 sharedLock。
//举例:
DB::table('user')->where('age', '>', 18)->lockForUpdate()->get();
//或者
User::where(xxx)->lockForUpdate()->first();
//共享锁:
DB::table('users')->where('votes', '>', 100)->sharedLock()->get();
//lockForUpdate 相当于 sql:
select * from users where id =2 for update
//sharedLock 相当于 sql:
select * from users where id=2 lock in share mode;
注意:锁要使用在 事务中,查询的行务必使用索引,避免全表扫描,这样会导致锁整个表,而不是某一行。
使用锁,这个表的引擎必须是 innodb.
具体可以查看 : mysql 悲观锁 乐观锁 和共享锁。
持续更新…
此文章通过 python 爬虫创建,原文是自己的csdn 地址: laravel 数据查询(集合)