我有两个表tbl_inc t和tbl_expn。 除了主键之外,两个表的所有字段都相同 我希望得到金额,以显示一年中一个月的图表,其中每天的金额为(t.amount)和sum(d.amount)。 我一天有多个金额。 以下代码不会累计每天的金额
select extract(day from t.date_id) as tday,
extract(month from t.date_id) as mon,
extract(year from t.date_id) as yr,
t.amount as incamt,
d.amount as expamt
from tbl_inc t,tbl_expn d
where t.user_id=d.user_id and
t.user_id='222' and
extract(month from t.date_id)='04' and
extract(month from d.date_id)='04' and
extract(year from t.date_id)='2015' and
extract(year from d.date_id)='2015' and
extract(day from t.date_id)=extract(day from d.date_id)
order by t.date_id
此代码的结果是
TDAY MON YR INCAMT EXPAMT
29 4 2015 50 600
29 4 2015 100 200
29 4 2015 50 200
29 4 2015 100 600
30 4 2015 70 700
30 4 2015 30 500
30 4 2015 70 700
30 4 2015 30 500
我希望输出为
TDAY MON YR INCAMT EXPAMT
29 4 2015 150 800
30 4 2015 100 1200
请帮忙......
答案 0 :(得分:0)
看起来您需要SUM
和GROUP BY
试一试:
select
extract(day from t.date_id) as tday,
extract(month from t.date_id) as mon,
extract(year from t.date_id) as yr,
SUM(t.amount) as incamt,
SUM(d.amount) as expamt
from tbl_inc t,tbl_expn d
where t.user_id=d.user_id and
t.user_id='222' and
extract(month from t.date_id)='04' and
extract(month from d.date_id)='04' and
extract(year from t.date_id)='2015' and
extract(year from d.date_id)='2015' and
extract(day from t.date_id)=extract(day from d.date_id)
GROUP BY extract(day from t.date_id), extract(month from t.date_id), extract(year from t.date_id)
order by t.date_id
您还需要将from tbl_inc t,tbl_expn d
更改为正确的JOIN
以避免重复。
答案 1 :(得分:-1)
如果你的date_id没有时间部分,你可以删除trunc
。如果它在那里,trunc
会丢弃时间部分。
您只选择一个月,分组并选择日期部分年份和月份接缝,因为您已经知道它们。
select extract(day from t.date_id) as tday
, ta as incamt
, da as expamt
, t.*, d.*
from ( select trunc(date_id) date_id, user_id, sum(amount) ta from t group by trunc(date_id), user_id ) t
, ( select trunc(date_id) date_id, user_id, sum(amount) da from d group by trunc(date_id), user_id ) d
where t.user_id = d.user_id
and t.date_id = d.date_id
and t.user_id=1
and extract(month from t.date_id)='04'
and extract(year from t.date_id)='2015'
order by extract(day from t.date_id)
你没有写任何有关行数的信息,但是你需要在两个表上都有一个索引。我建议在{1}上使用user_id, extract(month from date_id), extract(year from date_id)
,在另一个
user_id, trunc(date_id)