Suppose I have a document as follows: <a ano="a001"> <b bno="b001"> <c cno="c001"/> <d dno="d001"/> <d dno="d002"/> </b> <b bno="b002"> <c cno="c002"/> <d dno="d002"/> </b> </a> I would like to write a query to retrieve those elements from top to down that has sub element <d> whose dno = "d002". That is, I want the result like this: <a ano="a001"> <b bno="b001"> <c cno="c001"/> <d dno="d002"/> </b> <b bno="b002"> <c cno="c002"/> <d dno="d002"/> </b> </a> How to write such a query in a simple XQuery? Can I use filter function? Thanks in advance.Received on Friday, 5 March 2004 07:29:38 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Saturday, 22 July 2006 00:10:19 GMT