需要world,详情私聊博主 。
基础代码展示
select * from Student
intersect
select * from Student_other
select * from Student
select * from Student_other
select *
from Course left outer join SC表 on(Course.Cno=SC表.Cno )
select *
from Student
left join SC表 on (Student.Sno=SC表.Sno)
left join Course on(SC表.Cno=Course.Cno)