oracle 同一个caseid有两个数据,怎么取时间在前的数据
如图,相同的caseid在不同的时间里用了药物,目标是要取begintime最早的那个caseid,请问sql语句怎么写?我要取的是同一个caseid下,如果aname相...
如图,相同的caseid 在不同的时间里用了药物,目标是要取begintime 最早的那个caseid,
请问sql语句怎么写?
我要取的是同一个caseid下,如果aname相同的话,取时间最早的那一个记录。 展开
请问sql语句怎么写?
我要取的是同一个caseid下,如果aname相同的话,取时间最早的那一个记录。 展开
2个回答
展开全部
您好,这样:
select t.aproduct,
sum(case
when t.adate <
to_Date(to_char(sysdate, 'yyyymm') || '01', 'YYYYMMDD') then
t.num
else
0
end),
sum(case
when t.adate <
to_Date(to_char(sysdate, 'yyyymm') || '01', 'YYYYMMDD') then
t.amount
else
0
end),
sum(case
when t.adate <= last_day(sysdate) then
t.num
else
0
end),
sum(case
when t.adate <= last_day(sysdate) then
t.amount
else
0
end)
from a_test7 t
group by t.aproduct;
select t.aproduct,
sum(case
when t.adate <
to_Date(to_char(sysdate, 'yyyymm') || '01', 'YYYYMMDD') then
t.num
else
0
end),
sum(case
when t.adate <
to_Date(to_char(sysdate, 'yyyymm') || '01', 'YYYYMMDD') then
t.amount
else
0
end),
sum(case
when t.adate <= last_day(sysdate) then
t.num
else
0
end),
sum(case
when t.adate <= last_day(sysdate) then
t.amount
else
0
end)
from a_test7 t
group by t.aproduct;
追问
不明白....
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
select caseid,min(begintime) from 表名 group by caseid
追问
可能是我没表达清楚,你这个的话,就是只取时间最早的,我要的是每种药物取时间最早的那个,就是说,caseid,aname,begintime,如果aname相同的话,取时间最早的那一个。
追答
select caseid,aname,min(begintime) from 表名 group by caseid,aname
分组之后可以去到各个的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询