這是我們的xml文件的一部分。Xquery獲取位置()
<point distanceTotal="162" seqNo="189">
<lineSection id="395" track="1" direction="1">
<outInfos>
<comment commentTypeId="4" priority="1"oneLiner="BOT">
<layerVPK seasonValue="S0"/>
<vectors>
<vector dateFrom="2016-12-11"/>
</vectors>
<frenchText>1x3 MH</frenchText>
</comment>
<comment commentTypeId="4" priority="1" oneLiner="bot">
<layerVPK seasonValue="S0"/>
<frenchText>Réception voie occupée</frenchText>
<dutchText>Test</dutchText>
</comment>
</outInfos>
</point>
我們上傳到SqlServer列和XQuery我們正在獲取值。 但是,我找不到獲取位置()編碼的方法,基本上T-SQL ROW_NUMBER或密集等級不能用作不是所有數據都存在。 作爲例如dutchText只存在於第二個評論,也沒有現場標識2條評論....
這是SQL代碼
SELECT fi.file_uid,
fi.file_date,
T1.ref.value('@id', 'varchar(100)') AS gTV_id,
T2.ref.value('@id', 'varchar(100)') AS gTrn_id,
T4.ref.value('@seqNo', 'varchar(100)') AS gTrnTPp_seqNo,
T7.ref.value('text()[1]', 'varchar(1000)') AS gTrnTPpOiCDT_Text,
T6.ref.query('/globalTrainVariant/trains/globalTrainVariant/train/timetablePoints/point/outInfos/comment[position()]') AS Test
FROM ods.filesin fi
CROSS APPLY fi.file_xml.nodes('declare namespace cern="http://...";
(/cern:trains/globalTrainVariant)') T1(ref)
CROSS APPLY T1.ref.nodes('declare namespace cern="http://...";
(train)') T2(ref)
CROSS APPLY T2.ref.nodes('declare namespace cern="http://...";
(timetablePoints)') T3(ref)
CROSS APPLY T3.ref.nodes('declare namespace cern="http://...";
(point)') T4(ref)
CROSS APPLY T4.ref.nodes('declare namespace cern="http://...";
(outInfos)') T5(ref)
CROSS APPLY T5.ref.nodes('declare namespace cern="http://...";
(comment)') T6(ref)
CROSS APPLY T6.ref.nodes('declare namespace cern="http://...";
(dutchText)') T7(ref)
WHERE fi.file_type = 'trains'
的代碼沒有給出錯誤,但測試字段總是空白。
有什麼建議嗎?
我不認爲位置函數是這樣工作的。此外,顯然不會正確返回位置,因爲您正在嘗試使用T6中的路徑。什麼_might_爲你工作是一個用row_number()和一個外部申請而不是交叉申請T7(ref)獲得正確的行號,然後排除那些其中t7.ref爲空的子查詢 – ZLK