日期:2014-05-16 浏览次数:20470 次
select b.id,b.username from test b where b.id not in (select max(t.id) as id from test t having count(t.username) > 1 group by t.username) and b.username in (select t.username from test t having count(t.username) > 1 group by t.username);