- 论坛徽章:
- 0
|
问题:从log表中取出时间(end_time)最晚的表,从月初到现在
log表属性说明
table_name,end_time,start_time
我的解决办法:----1.找出要用到的结果集合
create table tmp_dw_log nologging as
select table_name,end_time,max(end_time) as max_endtime
from dw_log
where start_time > trunc(sysdate - 23)
group by table_name,end_time --1108
----2.从结果集合中取数据
select a.table_name,a.end_time,max(b.max_endtime)
from dw_log a,tmp_dw_log b
where a.end_time = b.end_time --1133
group by a.table_name,a.end_time |
得不到想要的结果,搞出来1000多条记录,本来应该只有几十来条?各位有什么好方法 |
|