這是我工作的示例XML:XSLT:如何做GROUP_BY?
<NewDataSet>
<Table>
<content_id>ID_001</content_id>
<record_id>Value_1</record_id>
</Table>
<Table>
<content_id>ID_001</content_id>
<record_id>Value_2</record_id>
</Table>
<Table>
<content_id>ID_002</content_id>
<record_id>Value_3</record_id>
</Table>
</NewDataSet>
我想這轉化爲
<Results>
<Record>
<id>ID_001
</id>
<item>Value_1
</item>
<item>Value_2
</item>
</Record>
<Record>
<id>ID_002
</id>
<item>Value_3
</item>
</Record>
</Result>
是什麼造成的麻煩是,我無法做到在一個GROUP BY <content_id>
XSL來獲得結果。
我可以得到這方面的幫助嗎?
查找我添加的標籤[_muenchian-grouping_](http://stackoverflow.com/questions/tagged/muenchian-grouping)以找到解決問題的方法。 – zx485