我需要使用FLWOR表达式获取以下输出。
<oldPlanes>
<make>Cessna</make>
<model>Centurian</model>
<make>Piper</make>
<model>Tripacer</model>
</oldPlanes>
使用
CREATE TABLE XMLO1 (xDoc XML NOT NULL)
INSERT INTO XMLO1 VALUES ('
<planes>
<plane>
<year>1977</year>
<make>Cessna</make>
<model>Skyhawk</model>
<color>Light blue and white</color>
</plane>
<plane>
<year>1975</year>
<make>Piper</make>
<model>Apache</model>
<color>White</color>
</plane>
<plane>
<year>1960</year>
<make>Cessna</make>
<model>Senturian</model>
<color>Yellow and White</color>
</plane>
<plane>
<year>1956</year>
<make>Piper</make>
<model>ripacer</model>
<color>Blue</color>
</plane>
</planes>')
我尝试了以下查询
SELECT xDoc.query('for $p in //plane
let $x:=$p/year
where $x < 1970
return <oldPlanes><make>{data($p/make)}</make>
</oldPlanes>
')
FROM XMLO1
这不能给我期望的输出来找到Year < 1970
所在的平面。
如何将自定义父节点设置为<oldPlanes>
如何返回2个节点作为预期输出?
答案 0 :(得分:1)
您只想创建一个oldPlanes
元素,因此其构造需要在FLWOR表达式之外:
<oldPlanes>{for $p in //plane
let $x:=$p/year
where $x < 1970
return $p/(make, model)}</oldPlanes>
除了您根本不需要FLWOR之外,简单的路径表达式即可完成工作:
<oldPlanes>{//plane[year < 1970]/(make, model)}</oldPlanes>