I have table as following
id State
1 True
2 False
3 True
4 False
5 False
6 True
7 True
8 False
I need to count true and false until showed row . So the result should be as the following table
id State Yes No
1 True 1 0
2 False 1 1
3 True 2 1
4 False 2 2
5 False 2 3
6 True 3 3
7 True 4 3
8 False 4 4
Until 6th(including 6th) row there are 3 False and 3 True. Any ideas?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…