sql 序列计数
我有一个如下表,
userid answer
1 true
1 true
1 false
1 true
1 true
1 true
2 true
1 true
我想获取每个用户真实序列的最新计数,
以便我得到
userid count
1 4
2 1
请帮助
I have a table as follows
userid answer
1 true
1 true
1 false
1 true
1 true
1 true
2 true
1 true
I want to get the latest count of true sequence per user
so that I will get
userid count
1 4
2 1
please help
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
试试这个:
Try this:
像...
Something like...
使用排名功能怎么样?
还没有实际测试过,所以我有点咬嘴唇。
How about using ranking functions?
Haven't actually tested it so I'm biting my lip a bit.