查询前10个 不同customerid中ev最大值的sql语句
select top 10 customerid, max(ev) from table group by customerid
select a.ZuiBigValue from
(
select top 10 customerid, max(ev) as ZuiBigValue from table group by customerid
) as a