oracle数据库,数据量大,读取数据库去除重复并显示
发布网友
发布时间:2022-04-30 02:38
我来回答
共1个回答
热心网友
时间:2022-04-13 18:12
select a.*
from pass a, (select id, crossing_id, lane_no, max(passtime) passtime
from pass group by id, crossing_id, lane_no) b
where a.id = b.id and a.crossing_id = b.crossing_id and
a.lane_no = b.lane_no