SQL 中的数据透视/反透视
我在 SQL 中有一个视图,它是通过分析表中的值生成的,以便该字段包含值“N”、“D”或“V”。我可以按列计算总计,但不能按行计算总计......这可能吗?
示例:
数据
No, Col_1, Col_2, Col_3
1, N, N, N
2, N, D, D
3, N, V, D
4, V, V, V
如何总结第 3 行有 1N、1V 和 3ds,而第 4 行有 4V?
打赌很简单,但可悲的是我也是!
预先非常感谢, 彼得
I have a view in SQL that I have generated by analysing the values in tables so that field either contain the value 'N', 'D' or 'V'. I can work out the totals by column but not by row... Is this possible?
Example:
Data
No, Col_1, Col_2, Col_3
1, N, N, N
2, N, D, D
3, N, V, D
4, V, V, V
How do I summise that Row 3 has 1N, 1V and 3ds whilst Row 4 has 4Vs?
Bet is quite simple but sadly so am I!
Many thanks in advance,
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
概括地说:
Generalizing that:
怎么样?
How about?