日期:2014-05-16 浏览次数:21205 次
select u_id, beg_time as max_time, nubbc from test_table a, (select u_id, max(nubbc) as nubbc from test_table group by u_id) b where a.u_id = b.u_id and a.nubbc = b.nubbc;