source:
trunk/doc/src/snippets/patternist/introAcneRemover.xq
Last change on this file was 2, checked in by , 16 years ago | |
---|---|
File size: 287 bytes |
Line | |
---|---|
1 | <result> |
2 | <para>The following skin care products have shipped, ordered by shipping date(oldest first):</para> |
3 | { |
4 | for $i in doc("myOrders.xml")/orders/order[@product = "Acme Skin Care"] |
5 | order by xs:date($i/@shippingDate) descending |
6 | return $i |
7 | } |
8 | </result> |
Note:
See TracBrowser
for help on using the repository browser.