[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: How to write this XQuery program?

Subject: RE: How to write this XQuery program?
From: "Michael Kay" <mhk@xxxxxxxxx>
Date: Mon, 6 Sep 2004 15:39:33 +0100
RE:  How to write this XQuery program?
Whether you are using XSLT 2.0 or XQuery 1.0, there are several approaches
possible:

(a) use the min() function to find the lowest price, then search for the
company whose price is equal to that value. 

(b) sort the companies in order of price, and take the first

(c) use a recursive scan of the companies, passing the lowest-price-so-far
and the cheapest-company-so-far as parameters on the recursive call.

Taking the first approach:

<xsl:function name="cheapest-company" as="element(company)">
  <xsl:param name="companies" as="element(company)*"/>
  <xsl:param name="part-id" as="xs:string"/>
  <xsl:variable name="min-price" as="xs:decimal"
    select="min($companies/parts[id=$part-id])/price)"/>
  <xsl:sequence
select="$companies[parts[id=$part-id]/price=$min-price][1]"/>
</xsl:function>

which translates directly into XQuery as:

declare function cheapest-company (
  $companies as element(company),
  $part-id as xs:string) as element(company) {
  let $min-price as xs:decimal := 
      min($companies/parts[id=$part-id])/price)
  return $companies[parts[id=$part-id]/price=$min-price][1]
}

Michael Kay

> -----Original Message-----
> From: Zhimao Guo [mailto:021021090@xxxxxxxxxxxx] 
> Sent: 06 September 2004 14:44
> To: xsl-list@xxxxxxxxxxxxxxxxxxxxxx
> Subject:  How to write this XQuery program?
> 
> Hi, all:
> 
> Now I have three XML files, c1.xml, c2.xml, c3.xml.
> Each XML file contains information of one company, and of 
> parts supplied by it.
> Given a part id, I want to get the company which offered this 
> part with the lowest price.
> How can I write this XQuery?
> 
> -----begin of source data----
> c1.xml:
>  <company>
>   <name>CompanyA</name>
>   <parts>
>    <part>
>     <id>p1</id>
>     <price>100</price>
>    </part>
>    <part>
>     <id>p2</id>
>     <price>101</price>
>    </part>
>   </parts>
>  </company>
> c2.xml:
>  <company>
>   <name>CompanyB</name>
>   <parts>
>    <part>
>     <id>p2</id>
>     <price>105</price>
>    </part>
>    <part>
>     <id>p3</id>
>     <price>106</price>
>    </part>
>   </parts>
>  </company>
> c3.xml:
>  <company>
>   <name>CompanyC</name>
>   <parts>
>    <part>
>     <id>p2</id>
>     <price>100</price>
>    </part>
>    <part>
>     <id>p6</id>
>     <price>106</price>
>    </part>
>   </parts>
>  </company>
> -----end of source data----
> 
> -----begin of expected result----
> <result>
>  <part>
>   <id>p2</id>
>   <price>100</price>
>   <company>CompanyC</company>
>  </part>
> </result>
> -----end of expected result----
> 
> Who would like to give me a hand? Thanks very much.
> 
> best regards,
> -zhimao

Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.