考虑一个排序表(根据 id)。如何计算“值”列中值的更改次数?在以下示例中,更改次数为 3(10 到 20、20 到 10、10 到 30)。谢谢

id值
1 10
2 10
3 20
4 20
5 10
6 30
7 30

最佳答案

如果 ids 是连续的,没有间隙......

Select count(*)
From table t1
   join table t2
       on t2.id = t1.id + 1
where t2.value <> t1.value

别的...
Select count(*)
From table t1
   join table t2
       on t2.id = (Select min(id)
                   From table
                   where id > t1.id)
where t2.value <> t1.value

关于sql - 计算表列中的值变化,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/23280732/

10-12 14:07
查看更多