2015-04-16 82 views
1

我正在嘗試查看sql中的xml文檔是否符合某些要求。將子節點與XQuery中的元素進行比較

CREATE TABLE #ValueExample 
(
XMLDocument xml 
) 

INSERT INTO #ValueExample 
VALUES ('<History> 
    <step start="2/22/2015 5:17:55 PM" end="" user="Intake Processor"> 
    <type id="1" value="2" /> 
    <type id="2" value="0" /> 
    <type id="3" value="0" /> 
    <type id="4" value="0" /> 
    </step> 
    <step start="2015-03-13 10:56:29.980" end="" user="BD Save Followup"> 
    <type id="0" value="5" /> 
    <type id="1" value="4" /> 
    <type id="2" value="3" /> 
    <type id="3" value="0" /> 
    <type id="4" value="0" /> 
    </step> 
    <step start="2015-02-22 20:08:58.053" end="" user="BD Save Followup"> 
    <type id="0" value="5" /> 
    <type id="1" value="4" /> 
    <type id="2" value="174" /> 
    <type id="3" value="181" /> 
    <type id="4" value="0" /> 
    </step> 
</History>') 

我需要知道,如果這個文件具有帶有類型的ID爲的屬性值 子元素的工序節點= 2和值= 174, 也與類型ID的屬性的類型元素= 3和值= 181。

基本上,最後一個節點符合我的條件。這裏是我嘗試過的sql,以及一種創建測試的方法。

的Sql我想

SELECT c.query('.') AS XMLFragment 
,c.value('(@id)[1]','int') AS value 
,c.query('..') as wholexml 
,c.value('(@id)[1]','int') as id 
,c.value('(@value)[1]','int') as value 
,c.query('(//step/type)[1]') as typeelements 
FROM #ValueExample 
CROSS APPLY XMLDocument.nodes('//step/type') as t(c) 

問題是我需要的最後一個typeelements,分步分組...

我希望這是不夠清楚明白。如果您需要額外的澄清,請詢問。

回答

0

可以使用SQLXML exist()方法

select 
    t.c.query('.') AS XMLFragment 
from #ValueExample as v 
    cross apply v.XMLDocument.nodes('//step') as t(c) 
where 
    t.c.exist('type[@id=2 and @value=174]') = 1 and 
    t.c.exist('type[@id=3 and @value=181]') = 1 

sql fiddle demo

相關問題