Re: [xsl] How to create xsl:key that has a composite value in its "use" attribute?

Subject: Re: [xsl] How to create xsl:key that has a composite value in its "use" attribute?
From: "Roger L Costello costello@xxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 15 Mar 2025 16:53:10 -0000
Martin provided this solution to joining three tables (ARPT --> ANAV -->
BDRY):
-------------------------------------------------
<xsl:sequence select="
	 key('ARPT-to-ANAV', ARPT_IDENT) !
      	key('ANAV-to-BDRY',(NAV_IDENT,NAV_CTRY,NAV_TYPE))[TYPE eq
'08']/BDRY_IDENT"
/>
-------------------------------------------------
That is awesome Martin. It produces the correct results, it is compact, and it
is lightning fast.

/Roger

Current Thread