0
這裏是我的表:鉛和案例與SQL Server空值2012
ID Quantity Item
1 23 10
2 45 10
3 45 10
4 23 10
5 87 10
6 100 NULL
這裏是我的查詢:
SELECT ID, case lead(Item) over (order by ID) when null then 1
else 0 end as Test
FROM tblA
這裏是我的輸出:
ID Test
1 0
2 0
3 0
4 0
5 0
6 0
爲什麼輸出的最後一行是6和0而不是6和1?
問候,