gpt4 book ai didi

mysql - 还有哪些老师正在教授 John Cullen.SQL 正在教授的类(class)

转载 作者:行者123 更新时间:2023-11-29 02:14:12 25 4
gpt4 key购买 nike

enter image description here我有多个表,但对于此查询只需要两个表,即 Faculty 和 CourseSection。我尝试了以下但失败了。如果有人可以提供帮助。

Select faculty.firstname,faculty.lastname,CourseSection.facid,courseID
from CourseSection,faculty
where CourseSection.facid in(
Select CourseSection.CourseID
from CourseSection
where CourseSection.facid =Faculty.facid and firstname='John' AND lastname='Cullen')

最佳答案

您应该在表之间使用左连接(假设您的表通过 CourseSection.facid = faculty.facid 相关)

  Select 
faculty.firstname
,faculty.lastname
, CourseSection.facid
, CourseSection.courseID
from CourseSection
LEFT JOIN faculty on CourseSection.facid = faculty.facid
where CourseSection.facid in (
Select CourseSection.CourseID
from CourseSection
where CourseSection.facid =Faculty.facid
and firstname='John' AND lastname='Cullen')

关于mysql - 还有哪些老师正在教授 John Cullen.SQL 正在教授的类(class),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43014046/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com