到底下面写法哪个对啊select 姓名,成绩 from s,sc  where s.学号=sc.学号 and 学号=01
select s.姓名,sc.成绩 from s,sc where s.学号=sc.学号 and 学号=01select s.s#,sname from s,sc,c where s.s#=sc.s# and sc.c#=c.c# ..... //后面省略
我还见过书上这样的写法
select x.s# from sc as x,sc as y where x.s#=y.s# and x.c#='c2' and y.c#='c4'
我就是想问问前面的  这些都是两个表连接  有的写法写了操作域,有的又没有写,条件限定属性有的也写了域有的也没有写,例如,s#=‘12’,有的就是s.s='12'