表数据的XML设计

时间:2013-11-24 08:05:05

标签: xml data-structures xmltable

我正在寻找存储表数据的良好实践设计

x | 1 | 2 
___________
1 |4.3|0.1
2 |7.3|4.3

以XML格式。

1 个答案:

答案 0 :(得分:1)

 <?xml version="1.0" encoding="UTF-8"?>       
  <Table name="myTable">
            <Row id="1">
                <x> 1 </x>
                <1> 4.3 </1>
                <2> 0.1 </2>
                </Row>
            <Row id="2">
                <x> 2 </x>
                <1> 7.2 </1>
                <2> 4.3 </2>
            </Row>
        </Table>