查詢應返回Naveed Rizwan Fayaz和Ahmed Name。SQL查詢以獲得已註冊英語或烏爾都語課程的學生,但不在
針對註冊了英語或烏爾都語課程但不是兩者都具備的學生的SQL查詢。
declare @Student table(sid int identity(1, 1), sname varchar(250))
declare @Course table(cid int identity(1, 1), cname varchar(250))
declare @StudentCourse table(cid int, sid int)
insert into @Student(sname)
select 'Mehboob' union all --1
select 'Rahim' union all -- 2
select 'Naveed' union all --3
select 'Rizwan' union all --4
select 'Fayaz' union all --5
select 'Ahmed' -- 6
insert into @Course(cname)
select 'English' union all
select 'Urdu'
insert into @StudentCourse(sid ,cid)
select 1,1 union all
select 2,1 union all
select 3,1 union all
select 4,1 union all
select 5,2 union all
select 6,2 union all
select 1,2 union all
select 2,2
而預期的結果是什麼? –
查詢應該返回Naveed Rizwan Fayaz和Ahmed Name。 –