:oracle多表联查:

有没有人在啊,想请问下,:oracle多表联查:?

我有三张表:
A表字段:user_id user_name p_id;
B表字段:user_id math_scores p_id;
C表字段:user_id chinese_scores p_id;
要求查出:姓名和总成绩
最新回答
柏拉图爱恋

2025-03-29 15:33:58

以两表为例:

有以下两张表:

现在要通过deptno字段,在查询中显示emp表中全部内容和dept表中的dname字段。

可用如下语句:

select a.*,b.dname from emp a,dept b where a.deptno=b.deptno;

查询结果:

红颜乱

2025-03-29 16:20:31

select a.user_name ,b.math_scores + c.chinese_scores
from tablenameA a,tablenameB b,tablenameC c
where a.user_id =b.user_id
and a.user_id =c.user_id ;

自己替换一下表名即可。
追问
math_scores  是分为一月份成绩二月份成绩三月份成绩.....
chinese_scores 是分为一月份成绩二月份成绩三月份成绩.....
追答
你是想要比如12个月的总成绩么?那你表中有代表月份的字段么?
比如表A中有个month字段,你可以
select a.user_name ,b.math_scores + c.chinese_scores
from tablenameA a,tablenameB b,tablenameC c
where a.user_id =b.user_id
and a.user_id =c.user_id
and a.month between 1 and 12;
追问
结果出来很多数据 啊
追答
不好意思
忘记汇总了
应该是
select a.user_name ,sum(b.math_scores + c.chinese_scores)
from tablenameA a,tablenameB b,tablenameC c
where a.user_id =b.user_id
and a.user_id =c.user_id
and a.month between 1 and 12
group by a.user_name ;
追问
结果还是不对
追答
你能把你提出来的结果贴出来让我看看么?
然后告诉我你想要什么样的结果
追问
正确结果应该是10   可出来的结果是70

math_scores 在1--7月的值是0
chinese_scores 只有7月份有值是10
追答
显然7月份的10分被重复计算了7次
我必须看看你的表结构才能修改SQL
主要看那个月份的字段
追问
我使用成绩打的比方
追答
抱歉,我看不到你的表结构
真的不知道该怎么改了
反正你现在应该已经明白联合查询了
你自己试着改一下吧
薰衣草香

2025-03-29 07:34:33

select uname "姓名",(math_scoreschinese_scores) "总成绩"
from a,b,c
where a.user_id=b.user_id and a.user_id=c.user_id
落日在山时

2025-03-29 11:11:33

是每个人的总成绩还是所有人的总成绩。。。描述清楚
追问
每个人的总成绩