返回顶部
首页 > 资讯 > 数据库 >MySQL第七课 left join左连接
  • 520
分享到

MySQL第七课 left join左连接

2024-04-02 19:04:59 520人浏览 安东尼
摘要

场景        在查询学生信息中,允许学生宿舍信息为空,如果有获取,没有为空select t.*, cs_sc_studenthostel.name as hostelname from (s

场景

        在查询学生信息中,允许学生宿舍信息为空,如果有获取,没有为空


select t.*, cs_sc_studenthostel.name as hostelname
from (
select cs_sc_student.id as student_id,
cs_sc_student.name as studentname,  
cs_sc_class.name as classname, 
cs_sc_student.sc_studenthostel_id  
from cs_sc_student, cs_sc_class 
where cs_sc_student.sc_class_id = cs_sc_class.id) t
left join cs_sc_studenthostel on t.sc_studenthostel_id = cs_sc_studenthostel.id


第一步 获取到学生的基础信息

(
select cs_sc_student.id as student_id,
cs_sc_student.name as studentname,  
cs_sc_class.name as classname, 
cs_sc_student.sc_studenthostel_id  
from cs_sc_student, cs_sc_class 
where cs_sc_student.sc_class_id = cs_sc_class.id) t


第二步 进行左连接

left join cs_sc_studenthostel on t.sc_studenthostel_id = cs_sc_studenthostel.id



您可能感兴趣的文档:

--结束END--

本文标题: MySQL第七课 left join左连接

本文链接: https://lsjlt.com/news/41745.html(转载时请注明来源链接)

有问题或投稿请发送至: 邮箱/279061341@qq.com    QQ/279061341

猜你喜欢
软考高级职称资格查询
编程网,编程工程师的家园,是目前国内优秀的开源技术社区之一,形成了由开源软件库、代码分享、资讯、协作翻译、讨论区和博客等几大频道内容,为IT开发者提供了一个发现、使用、并交流开源技术的平台。
  • 官方手机版

  • 微信公众号

  • 商务合作