求思路 分组求最大值解决办法

求思路 分组求最大值数据:a,1a,2a,3b,2b,1想求出 a.3,b,2的数据[解决办法]SQL code或者select * from test

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


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

[解决办法]

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