将 MDX 查询结果转换为关系格式
我有一个 SQL 存储过程,它使用链接服务器和 Openquery 来执行 MDX 查询。 MDX 查询返回的结果采用以下格式:
Month 1 | Month 2 | Month 3 | Month 4
12 5 4 7
其中列是动态的,即我永远不知道输出中有多少个月。
如何将输出转换为关系格式,例如
两列。
Col 1 | Col 2
----- -----
Month1 12
Month2 5
Month3 4
等等等等
I have a SQL stored proc that uses a linked server and Openquery to execute a MDX query. The result returned from the MDX query is in the format of:
Month 1 | Month 2 | Month 3 | Month 4
12 5 4 7
where the columns are dynamic i.e. I never know how many months will be in the output.
How can I transpose the output into a relational format e.g.
Two columns.
Col 1 | Col 2
----- -----
Month1 12
Month2 5
Month3 4
etc etc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将原始 MDX 查询从类似 : 的内容更改
为类似这样的内容:
You'll need to change your original MDX query from something like :
to something like this one :