日期:2014-05-18  浏览次数:20304 次

求思路 分组求最大值
数据:
a,1
a,2
a,3
b,2
b,1


想求出 a.3,b,2的数据

------解决方案--------------------
SQL code

或者
select * from test a
where a.col2=(select max(col2) from test b where a.col1=b.col2)