我在sql中有两个表.一个是测试用例表,另一个是测试运行表,其中一个外键链接回测试用例.我想为每个测试用例获得最近10次测试运行.如果我不需要,我不想循环,但我没有看到任何其他方法来解决这个问题.在sql server中处理这类事情最有效的方法是什么?
解决方法
想法:
select ... from <test cases> as tc outer apply ( select top 10 * from <test runs> as tr where tr.<test case id> = tc.<id> order by tr.<date time> desc ) as tr
或者,如果您只需要从表中获取数据:
;with cte_test_runs as ( select *,row-Number() over(partition by <test case id> order by <date time> desc) as rn from <test runs> ) select * from cte_test_runs where rn <= 10