SQL 报告:矩阵列合并
您好,我有返回的数据,并将其放入矩阵中。 我设置了行和列。 我只有一列标题为“GTA”的列和几行。 由于某种原因,我的数据会这样出来。
GTA GTA GTA
Answer
========================
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3
每当值不同时,它就会动态地为其创建一个新列并执行上述操作......为什么? 我可以让它看起来像这样吗:
GTA
Answer
==============
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3
Hi I have data being returned and I put it in a matrix. I have my rows set and my columns set. I only have one column entitled "GTA" and a few rows. My data is coming out like this for some reason.
GTA GTA GTA
Answer
========================
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3
Whenever the value is different it dynamically makes a new column for it and does the above.. why? Is there away I can get it looking like this:
GTA
Answer
==============
1 1
1 2
1 1
1 2
1 2
1 2
1 1
1 3
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您想要使用表格模板。 矩阵用于交叉表或数据透视表样式的报告。
You want to use the table template. The Matrix is for cross tab or pivot table style reports.
将 Matrix 控件视为“设计时数据透视表”。
如果您不知道数据透视表是什么或做什么,那么您不应该使用 Matrix 控件。
矩阵中的每一列代表一组数据。
使用表时,您仅按行进行分组,使用矩阵时,您按行和列进行分组。
Think of the Matrix control as a "design time pivot table".
If you don't know what a pivot table is or does, then you shouldn't be using the Matrix control.
Each column in the Matrix represents a grouping of the data.
With a table you are only grouping on rows, with a Matrix you are grouping on rows AND columns.