現在の行の ID と前の行の ID の違いを示す番号で MS SQL テーブルの ID のリストを取得するにはどうすればよいですか - 「ORDER BY ID DESC」があると仮定します
SELECT ID, ???? AS [CurrentID - PreviousID]
FROM foo
ORDER BY foo.ID DESC
現在の行の ID と前の行の ID の違いを示す番号で MS SQL テーブルの ID のリストを取得するにはどうすればよいですか - 「ORDER BY ID DESC」があると仮定します
SELECT ID, ???? AS [CurrentID - PreviousID]
FROM foo
ORDER BY foo.ID DESC
CTE
andを使用して次のクエリを試してくださいrow_number()
。
create table foo (id int)
insert into foo values
(1),(5),(8),(9)
;with cte as (
select Id, row_number() over (order by id desc) rn
from foo
)
select c1.id, c1.id-c2.id as [currentId - previousId]
from cte c1
left join cte c2 on c1.rn = c2.rn - 1
order by c1.rn
| ID | CURRENTID - PREVIOUSID |
-------------------------------
| 9 | 1 |
| 8 | 3 |
| 5 | 4 |
| 1 | (null) |
SELECT
ID,
ID - coalesce(
(select max(ID) from foo foo2 where foo2.id<foo.id)
, 0) as Diff
FROM foo
ORDER BY foo.ID DESC