帮助使用 case 和 group 进行 sql 查询
我有一个带有日期和一个名为 posneg 的字段的数据库表,该值是“pos”、“neu”或“neg”。
我需要一个结果集,其中添加 posneg 值,然后按日期分组。就像这样
2010-10-03 5 (on that date it could be 12 pos, 5 neu and 7 neg)
2010-10-04 -3 (on that date maybe 10 pos, 2 neu and 13 neg)
...and so on
基本上,neu 并不重要,正如你所看到的。
I have a DB Table with a date and a field called posneg, the value is either 'pos', 'neu' or 'neg'.
I need a result set where the posneg values are added and then grouped by date. Like this
2010-10-03 5 (on that date it could be 12 pos, 5 neu and 7 neg)
2010-10-04 -3 (on that date maybe 10 pos, 2 neu and 13 neg)
...and so on
Basically the neu doesn't matter, as you see.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
试试这个:
Try this: