那么就需要A,B表连接,我这样写
select a.姓名,b.课程号,b.成绩
from A,B
where a.学号 = b.学号;
结果同一个学生姓名,因为有多个成绩,所以有多个行
可是,我又想只要第一行,其他行不要,这样要怎么写sql语句呢?请给完整的sql哦 ------解决方案-------------------- 如果使用sql*plus
break on 姓名
select a.姓名,b.课程号,b.成绩
from A,B
where a.学号 = b.学号
order by 姓名;
使用其他工具的话,我就不清楚了 ------解决方案-------------------- select distinct a.姓名,b.课程号,b.成绩
from A,B
where a.学号 = b.学号 ------解决方案-------------------- select c.姓名,c.课程号,c.成绩
from
(
select a.姓名,b.课程号,b.成绩,row_number() over (partition by a.姓名 order by a.姓名,b.课程号) nm
from a,b
where a.学号=b.学号
) c
where nm=1 ------解决方案--------------------