declare @x xml
set @x = '<Root>
<row id="1"><name>Larry</name><oflw>some text</oflw></row>
<row id = "2"><name>moe</name></row>
<row id = "3"/>
</Root>'
select T.c.query(..) as result from @x.nodes('/Root/row') T(C)
select T.c.query(..) as result from @x.nodes('/Root/row') T(C)
我收到以下錯誤。使用XML數據類型時出錯
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near ')'.
任何人都可以幫助我糾正錯誤。我是新來的sql。
什麼是實際的錯誤? – gbn
@gbn:我編輯了問題。請現在通過。 – Shine