sql sever的两种多表连接查询

多表连接两种写法
一种使用重命名表的方式,一种直接用之前的表
①第一种写法使用or时会导致出现大量没有连接的数据
select student061.sno, sname ,Course061.CNO,cname,degree from student061,Score061 ,Course061
where student061.sno=Score061.Sno and Course061.CNO=Score061.Cno
②select s.sno, s.sname,c.cno,c.cname ,degree from student061 s join Score061 sc
on s.Sno=sc.Sno join Course061 c on c.Cno=sc.Cno where
如同为两个使用or时的对比
sql sever的两种多表连接查询