与 PIVOT 类似,但值不是离散的
一个表列出了多个事件,其中每个事件有四个属性(列),称它们为 A、B、C、P 通过
透视来获取包含 A、B、C、P=1、P=2 列的表将很简单P=3 等。
但是,我需要列为 A、B、C、P<1、P<2、P<3 等。
换句话说,如果“简单”方式的一行是 X, Y, Z, 7, 3, 5, 2 那么我实际需要的是 X, Y, Z, 7, 10, 15, 17,因为任何小于 N 的 P 也小于 N+1。
我知道我可以计算值 (X, Y, Z, 7, 10, 15, 17),将它们加载到临时表中,然后进行旋转,但也许有一些简单的东西我的 SQL 天赋无法立即识别?
如果重要的话,结果将最终出现在 SSRS 中。
A table lists multiple events where each event has four attributes (columns), call them A, B, C, P
It would be simpleto pivot to get a table with columns for A, B, C, P=1, P=2, P=3, etc.
However, I need the columns to be A, B, C, P<1, P<2, P<3, etc.
In other words, if a row of the "simple" way were X, Y, Z, 7, 3, 5, 2 then what I actually need is X, Y, Z, 7, 10, 15, 17 because any P less than N is also less than N+1.
I know I can compute the values (X, Y, Z, 7, 10, 15, 17), load them into a temporary table, and pivot that, but maybe there's something simple that my SQL talents don't recognize immediately?
If it matters, the result will end up in SSRS.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果我理解正确的话,那么这应该可行。
这不是动态的。例如,如果其中有一行 P=4,那么它不会添加 P<5 的行。它还严格使用 <而不是<=。
If I understand you correctly, then this should work.
This is not dynamic. For example, if you have a row in there with P=4 then it will not add a row for P<5. It's also using strictly < and not <=.