有没有人在啊,想请问下,:oracle多表联查:?
我有三张表:A表字段:user_id user_name p_id;
B表字段:user_id math_scores p_id;
C表字段:user_id chinese_scores p_id;
要求查出:姓名和总成绩
有没有人在啊,想请问下,:oracle多表联查:?
我有三张表: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
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
2025-03-29 11:11:33
每个人的总成绩