我有多個表,但是對於這個查詢,只需要兩個表即Faculty和CourseSection。 我試過以下但失敗了。如果有人可以幫忙。其他教師正在教授John Cullen正在教授的課程。SQL
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')
發佈您的表圖式,將有助於確定如何在這裏建立正確的說法 – Rogue
你試試我的答? –
是@knowledge ....但它不能正常工作 –