巢狀子查詢

solution發表於2021-09-09

-專案一.
--開發學生選課表中狀態為報名,的課程名稱有哪些?
--需要查詢( 課程表 )( 選課表 )表?
--子查詢的物件( 課程表中為報名的 )
--使用的查詢方法(子查詢 )

--第一步.查詢課程表和學生選課表
select from Course
select
from StuCou

--第二步.查詢學生選課表,報名狀態是報名的課程編號
select couno from StuCou
where State='報名'

--第三步.使用縱向巢狀子查詢查詢結果
select stuno,stuname
from Student
where exists (select StuNo
from StuCou
where StuNo=student.StuNo and State='報名')

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/2459/viewspace-2800911/,如需轉載,請註明出處,否則將追究法律責任。

相關文章