我有一个有 3 列的表,column1 中的数据有重复值,第 3 列有总计,我想做的是返回第 1 列中每个值的前 2 个总计。
我创建此表的查询如下:
SELECT service,name, total
FROM [test].[dbo].[TestTable]
join test1.dbo.service
on substring(servan,0,4)=servicebn
where substring(servan,0,4)=servicebn and name <> testname
group by service,name,total
order by service,total desc
任何帮助将非常感激