coder25
coder25

Reputation: 2393

distinct elements based on sorting order

I want distinct title of book based on descending Referring to MarkLogic: XQuery to Get Distinct Names from XML Document?

<bookstore>
  <book category="COOKING">
    <title lang="en">Everyday Italian</title>
    <author>Giada De Laurentiis</author>
    <year>2005</year>
    <price>30.00</price>
  </book>
  <book category="CHILDREN">
    <title lang="en">Harry Potter</title>
    <author>J K. Rowling</author>
    <year>2005</year>
    <price>29.99</price>
  </book>
  <book category="WEB">
    <title lang="en">XQuery Kick Start</title>
    <author>James McGovern</author>
    <author>Per Bothner</author>
    <author>Kurt Cagle</author>
    <author>James Linn</author>
    <author>Vaidyanathan Nagarajan</author>
    <year>2003</year>
    <price>49.99</price>
  </book>
  <book category="WEB">
    <title lang="en">Learning XML</title>
    <author>Erik T. Ray</author>
    <year>2003</year>
    <price>39.95</price>
  </book>
</bookstore>

Code

 let $result := 
     for $x at $i in doc("bookstore.xml")/bookstore/book/*
     order by $x/price descending
     return name($x)
  return fn:distinct-values($result)

Upvotes: 1

Views: 166

Answers (1)

Martin Honnen
Martin Honnen

Reputation: 167696

If you use

distinct-values(
  for $book in bookstore/book
  order by $book/price descending
  return $book/title
)

you get

XQuery Kick Start
Learning XML
Everyday Italian
Harry Potter

Upvotes: 2

Related Questions