我想從XML數據中獲取結果,但只獲取第一個節點的值。從XML數據中選擇查詢
create table #temp(xmlString nvarchar(max))
insert into #temp (xmlString) values
('<?xml version="1.0" ?><response status = "ERROR">
<error>Error1</error>
<error>Error2</error>
</response>')
我想要的結果:
Error1, Error2
請幫助。 感謝
你試圖解決這個問題是如何結束? – OzrenTkalcecKrznaric