T-SQL查询以获取结果集中的结束位置

时间:2017-05-05 14:36:42

标签: sql sql-server tsql

我有一个结果集,我将为其提供输入位置和迭代次数。我期待结束位置的结果。

-------------
ID        
-------------
1
2
3
4
5
6
7

--------------------------------
InputPosition     Iteration
--------------------------------
4                 6

----------------
ID   Iteration   
----------------
1    5           
2    6 (EndPosition = 2)      
3 
4    1  
5    2
6    3
7    4

因此我需要为这种情况获得'EndPosition'。

2 个答案:

答案 0 :(得分:1)

我不确定这些表对手头的任务有多重要。如果答案不是,则以下内容可能对您有用:

declare @input as int = 4
declare @itemCount as int = 7
declare @iterations as int = 6

select
    case when (@input + @iterations - 1) % @itemCount = 0 then 7
    else (@input + @iterations - 1) % @itemCount
end as EndPosition

如果表很重要,那么您可以将此逻辑与row_number()函数结合使用。

答案 1 :(得分:1)

这仅适用于序列号。

declare @table table (id int)
insert into @table (id)
values
(1),
(2),
(3),
(4),
(5),
(6),
(7)

declare @inputPosition int = 4
declare @iteration int = 6

;with cte as(
select 
    id,
    row_number() over (order by case when id = @inputPosition then 1 else @inputPosition +1 end) as rn
from @table)

select
    *
from
    cte
where rn = @iteration