laravel关联查询
1.创建表:
-- 创建学生表
CREATE TABLE `student` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) CHARACTER SET utf8 NOT NULL DEFAULT '' COMMENT '姓名',
`age` tinyint(3) NOT NULL DEFAULT '0' COMMENT '年龄',
`sex` tinyint(3) NOT NULL DEFAULT '0' COMMENT '性别,0:未知,1:男,2:女',
`created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='学生表'; INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (3, '小王', 18, 2, 1641469262, 1641469262);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (10, '小张', 18, 1, 1641469804, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (11, '小李', 19, 1, 1641469904, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (14, '小朱', 19, 1, 1641525262, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (15, '小杜', 18, 1, 1641526322, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (17, '小梁', 17, 1, 1641526483, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (18, '小吴', 18, 1, 1641527008, 1641529381);
INSERT INTO `student`(`id`, `name`, `age`, `sex`, `created_at`, `updated_at`) VALUES (19, '小周', 17, 1, 1641527008, 1641529381); -- 创建学生信息表
CREATE TABLE `student_info` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`student_id` int(11) NOT NULL DEFAULT '0' COMMENT '学生id',
`email` varchar(60) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '邮箱',
`address` varchar(100) CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '地址',
`created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='学生信息表'; INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (1, 3, 'test3@test.com', '山东省济南市历下区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (2, 10, 'test10@test.com', '天津市南开区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (3, 11, 'test11@test.com', '河北省石家庄市裕华区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (4, 14, 'test14@test.com', '河北省廊坊市广阳区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (5, 15, 'test15@test.com', '山东省青岛市南市区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (6, 17, 'test17@test.com', '河南省郑州市中原区', 1642404313, 1642404313);
INSERT INTO `student_info`(`id`, `student_id`, `email`, `address`, `created_at`, `updated_at`) VALUES (7, 18, 'test18@test.com', '河南省南阳市卧龙区', 1642404313, 1642404313); -- 创建考试结果表
CREATE TABLE `exam` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`exam_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '科目',
`fraction` decimal(5,2) NOT NULL DEFAULT '0.00' COMMENT '考试成绩',
`student_id` int(11) NOT NULL DEFAULT '0' COMMENT '学生id',
`created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='考试结果表'; INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (1, '数学', 67.00, 3, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (2, '数学', 100.00, 10, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (3, '数学', 98.00, 11, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (4, '数学', 63.00, 14, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (5, '数学', 96.00, 15, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (6, '数学', 78.00, 17, 1642402349, 1642402349);
INSERT INTO `exam`(`id`, `exam_name`, `fraction`, `student_id`, `created_at`, `updated_at`) VALUES (7, '数学', 77.00, 18, 1642402349, 1642402349); -- 创建创建角色表
CREATE TABLE `roles` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`role_name` varchar(60) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '' COMMENT '角色名称',
`created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='角色表'; INSERT INTO `roles`(`id`, `role_name`, `created_at`, `updated_at`) VALUES (1, '班长', 1642411155, 1642411155);
INSERT INTO `roles`(`id`, `role_name`, `created_at`, `updated_at`) VALUES (2, '副班长', 1642411155, 1642411155);
INSERT INTO `roles`(`id`, `role_name`, `created_at`, `updated_at`) VALUES (3, '班委', 1642411155, 1642411155);
INSERT INTO `roles`(`id`, `role_name`, `created_at`, `updated_at`) VALUES (4, '课代表', 1642411155, 1642411155); -- 创建学生角色表
CREATE TABLE `student_role` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`role_id` int(11) NOT NULL DEFAULT '0' COMMENT '角色id',
`student_id` int(11) NOT NULL DEFAULT '0' COMMENT '学生id',
`created_at` int(11) NOT NULL DEFAULT '0' COMMENT '创建时间',
`updated_at` int(11) NOT NULL DEFAULT '0' COMMENT '修改时间',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=8 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci COMMENT='学生角色表'; INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (1, 1, 3, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (2, 2, 10, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (3, 3, 11, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (4, 4, 14, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (5, 4, 15, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (6, 4, 17, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (7, 4, 18, 1642413366, 1642413366);
INSERT INTO `student_role`(`id`, `role_id`, `student_id`, `created_at`, `updated_at`) VALUES (8, 4, 3, 1642413366, 1642413366);
2.一对一关联查询:
//student表一对一正向关联student_info表:在student表model中添加关联方法:
public function studentInfo() {
return $this->hasOne(StudentInfo::class, 'student_id', 'id');
}
//查询数据:
$list = Student::find(20)->studentInfo; //student_info表一对一反向关联student表:在student_info表model中添加关联方法:
public function student() {
return $this->belongsTo(Student::class, 'student_id', 'id');
}
//查询数据:
$list = StudentInfo::find(3)->student;
3.一对多关联查询:
//student表一对多正向关联exam表:在student表model中添加关联方法:
public function exam() {
return $this->hasMany(Exam::class, 'student_id', 'id');
}
//查询数据:
$list = Student::find(3)->exam; //一对多,不带查询条件
$list = Student::find(3)->exam()->where('fraction', '>=', 80)->get(); //一对多,带查询条件 //student表一对多反向关联exam表:在exam表model中添加关联方法:
public function student() {
return $this->belongsTo(Student::class, 'student_id', 'id');
}
//查询数据:
$list = Exam::find(3)->student;
4.多对多关联查询:
//student表多对多关联roles表(通过student_role中间表进行关联,student_id和role_id字段为student_role表中的字段):在student表model中添加关联方法:
public function roles() {
return $this->belongsToMany(Roles::class, 'student_role', 'student_id', 'role_id');
} //查询数据:
$list = Student::find(3)->roles; //可以将SQL语句打印出来查看下是否正确
$sql = Student::find(3)->roles()->toSql(); //增加查询条件:
$list = Student::find(3)->roles()->where(function($query) {
$query->where('role_name', '课代表');
})->get(); //has:判断student表与roles表是否存在关联数据。参数一为model名,当前查询信息为student与role表存在关联数据小于1的,若只写roles参数,则默认为大于等于1。
$list = Student::has('roles', '>', 1)->get(); //whereHas:使用闭包组合查询条件
$list = Student::whereHas('roles', function ($query) {
$query->where('role_name', '班长');
})->get(); //doesntHave,has的反向操作,判断student表与roles表不存在关联的数据。
$list = Student::doesntHave('roles')->get(); //withCount:统计student表每条数据与roles表关联数据数量
$list = Student::withCount('roles')->get();
//doesntHave使用时设置别名,增加查询条件
$list = Student::withCount(['roles as role_count'=>function($query) {
$query->where('roles.id', 1);
}])->get();
参考文档:
https://learnku.com/docs/laravel/8.x/eloquent-relationships/9407
【版权申明】未经博主同意,谢绝转载!(请尊重原创,博主保留追究权) https://www.cnblogs.com/facetwitter/p/15815769.html
laravel关联查询的更多相关文章
- laravel 关联查询
- 记一次laravel远程关联查询
如图,一个服务(service)对应一个用户(user),一个用户对应多个标签(tag),同时一个tag也可以通过中间表(pivot)对应对个用户. 现在业务需求如下:查service,这些servi ...
- laravel 中with关联查询限定查询字段
学习了下laravel5.6框架,果然很优雅,比如ActiveJieSuan model中作如下关联:(laravel模型关联关系可以查看https://laravelacademy.org/post ...
- Laravel 中查询 where 记录
Laravel 的 Eloquent 使用 Between $query->whereBetween('age',[$from,$to]) 这是生成 And between ... and .. ...
- Laravel关联模型中过滤结果为空的结果集(has和with区别)
首先看代码: $userCoupons = UserCoupons::with(['coupon' => function($query) use($groupId){ return $quer ...
- Laravel关联模型中has和with区别
本篇文章给大家带来的内容是关于Laravel关联模型中has和with区别(详细介绍),有一定的参考价值,有需要的朋友可以参考一下,希望对你有所帮助. 首先看代码: 1 2 3 4 5 6 $user ...
- JDBC MySQL 多表关联查询查询
public static void main(String[] args) throws Exception{ Class.forName("com.mysql.jdbc.Driver&q ...
- MYSQL基础操作之数据约束与关联查询
一.MYSQL约束 1.默认值约束,当字段没有插入值的时候,mysql自动给该字段分配默认值. 默认值的字段允许为空. 对默认值字段也可以插入null. CREATE TABLE STUDENT( I ...
- C#代码中实现两个表(DataTable)的关联查询(JOIN)
之前通常都是使用SQL直接从数据库中取出表1和表2关联查询后的数据,只需要用一个JOIN就可以了,非常方便.近日遇到一种情况,两个表中的数据已经取到代码中,需要在代码中将这两个表关联起来,并得到它们横 ...
- Mybatis关联查询和数据库不一致问题分析与解决
Mybatis关联查询和数据库不一致问题分析与解决 本文的前提是,确定sql语句没有问题,确定在数据库中使用sql和项目中结果不一致. 在使用SpringMVC+Mybatis做多表关联时候,发现也不 ...
随机推荐
- js - 解决微信环境下,ios软键盘收起后页面空白
思路:1.判断是否在微信中 2.判断是否在ios中 3.表单元素焦点将页面滚回到顶部 是否是微信环境 isWx() { let ua = navigator.u ...
- vue - 环境变量和模式
1.在项目根目录中创建.env 或者 .env.xxx 的文件来指定环境变量 .env # 在所有的环境中被载入 .env.local # 在所有的环境中被载入,但会被 git 忽略 .env.[mo ...
- tdlib成功编译版本20230205(java)
tdjni是java本地调用接口dll文件夹下的三个动态链接是供tdjni调用的使用时这三个加到系统环境变量里 编译文件在本人的文件里,可以下载
- 【剑指Offer】【链表】复杂链表的复制
题目:输入一个复杂链表(每个节点中有节点值,以及两个指针,一个指向下一个节点,另一个特殊指针指向任意一个节点),返回结果为复制后复杂链表的head.(注意,输出结果中请不要返回参数中的节点引用,否则判 ...
- c++ 时间类型详解 time_t(转)
原文链接:https://blog.csdn.net/love_gaohz/article/details/6637625 Unix时间戳(Unix timestamp),或称Unix时间(Unix ...
- win7电脑休眠后只能按重启键解决办法
一.点击"开始"后选择控制面板 二.选择"电源选项" 三.点击"更改计划设置" 四.选择"更改高级电源设置" 五.点击& ...
- [JavaScript]对象数组 - 不完全整理
对象数组中查询属性为某个值的对象,使用Array.find() const array1 = [5, 12, 8, 130, 44]; const found = array1.find(elemen ...
- win10 系统修复IE11方法
我也是手贱卸载了IE11,启用或关闭Windows功能里也没有Internet Explorer 11,今天意外发现了解决办法. 设置--应用--应用和功能--管理可选功能--添加功能--Intern ...
- mysql报错This function has none of DETERMINISTIC. NO SOL or READS SOL DATA...
是因为 存储过程/存储函数在创建时 与 开启慢查询日志冲突了 解决冲突: 临时解决:开启log_bin_trust_function_creators show variables like '%lo ...
- spring的aop的粗浅理解
aop有什么用? 假设你写了一本书,写的是一个平民的日常聊天.现在突然你想让这个平民变成一个书生的口气.于是你想在这个平民的每句话之前加上"之乎",后面加上"者也&quo ...