Poseidon 回复 thysai_st(提问者)那就套个子查询啊;
select * from 表 a
left join (select 设备编号,max(时间戳) as 最近时间 from 表
group by 设备编号) b on a.设备编号 = b.设备编号 and a.时间戳 = b.最近时间
虾米、木木 回复 thysai_st(提问者)你想要去重 然后获取最新时间的俩表数据吧
select * from PD_AGING_MSG t
where not exists(select 1 from PD_AGING_MSG where DEVICE_CODE= t.DEVICE_CODE
and TIME_STAMP> t.TIME_STAMP)