我正在试图转动我的数据表,但我对枢轴没有多少经验,所以我希望我正确解释它。我正在使用这篇似乎非常受欢迎的文章:http://www.codeproject.com/Articles/46486/Pivoting-DataTable-Simplified
我的数据如下:
school | class | students | teachers
.............................................................
school1 | class1 | students1 | teachers1
school1 | class2 | students2 | teachers2
school1 | class3 | students3 | teachers3
现在我的支点看起来像是
school | class1 | class2 | class3
.............................................................
school1 | students1 | students2 | students3
那没关系。但是,我如何扩展文章中的例子,将每个班级的学生和老师都包括在内?所以期望的结果就像是
school | class1 | class2 | class3
.............................................................
school1 | students1 | teachers1 | students2 | teachers2 | students3 | teachers3