求思路 分组求最大值
数据:
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)
发布时间: 2012-05-21 18:04:41 作者: rapoo
求思路 分组求最大值
数据:
a,1
a,2
a,3
b,2
b,1
想求出 a.3,b,2的数据
[解决办法]
或者select * from test awhere a.col2=(select max(col2) from test b where a.col1=b.col2)