ネストされた FLWOR ステートメントで参照する必要がある 2 つの xml ドキュメントがあります。
MJH source.xml
<data-set>
<record>
<table>CONTACT</table>
<column>AGGREGATE_REPORT</column>
<change>Dropped</change>
<logic>Related to agCenter</logic>
</record>
<record>
<table>QNR_DESIGN_TEMPLATE</table>
<column>LOGO1</column>
<change>Dropped</change>
<logic>Related to agCenter</logic>
</record>
</data-set>
これは外側のドキュメントで、行ごとに「表」と「列」の値を抽出する必要があります。
MVReport - SQL ステートメントを含むレポート ドキュメントのコレクション。
....
<xml-property name="queryText"><![CDATA[select v.*
from poi_visit_details_v v
where v.site_id=?
and v.std_code_id in ('15', 'TelephoneMonitoringVisit')
and to_char(v.actual_visit_date, 'yyyy-mm-dd') = substr(?, 0, 10)
and (reports_access_pk.site_access(v.SITE_ID, ?) = 'Y'
or reports_access_pk.superuser_access(?) = 'Y')
]]></xml-property>
<xml-property name="queryText"><![CDATA[select v.*
from poi_visit_details_v v
where v.site_id=?
and v.std_code_id in ('15', 'TelephoneMonitoringVisit')
and to_char(v.actual_visit_date, 'yyyy-mm-dd') = substr(?, 0, 10)
and (reports_access_pk.site_access(v.SITE_ID, ?) = 'Y'
or reports_access_pk.superuser_access(?) = 'Y')
]]></xml-property>
....
このコレクションは、外側のループから返された「select」という単語と「table」、「column」の値を含むすべての SQL ステートメントを検索する必要がある内側のループです。
これが私のxqueryです。
私が抱えている問題は、内側のループの「where ... and ...」句で外側の「テーブル」、「列」の値を参照する方法ですか?
for $target in doc("H:\MJH source.xml")/data-set/record
let $tTable := $target/table
let $tColumn := $target/column
for $sql in collection("MVReport") //*:xml-property[@name = "queryText"]
where $sql contains text "select"
and $sql contains $tTable
and $sql contains $tColumn
let $report := base-uri()
return <report><name>{$sql/base-uri()}</name><sql>{$sql}</sql></report>
ご協力いただきありがとうございます。