2013-11-24 37 views
0

我找好練習設計存儲表數據XML設計表數據

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

XML格式。

+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> 
+0

請您添加標題,只是爲了答案的完整性。 –

+0

添加了xml標題.. – user3020494