问一个数据记录重复问题?表字段和数据如下:a b c1 2 11 3 22 4 32 5 4想问用什么sql语句实现显示数据如下:a b c1 2 12 4 3不会用group by a,b,c 吧?[解决办法]
select * from tb t where b=(select min(b) from tb where a=a.a)