|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] Re: sorting like in order by clause
Betreff: Re: sorting like in order by clause > On 3/5/07, Markus Gamperl <markus.gamperl@xxxxxx> wrote: > > example select: > > select ename, job, deptno, sal from emp order by deptno, job; > > > > This doesn't work: > > <xsl:sort select="deptno | job" order="ascending"/> > > You need to use two consecutive sort statements: > > <xsl:sort select="deptno" order="ascending"/> > <xsl:sort select="job" order="ascending"/> > > The default ordering is ascending. So you can just write: > > <xsl:sort select="deptno" /> > <xsl:sort select="job" /> > > -- > Regards, > Mukul Gandhi > Thanks a lot - I have been thinking too complex... ;-) Markus -- Ist Ihr Browser Vista-kompatibel? Jetzt die neuesten Browser-Versionen downloaden: http://www.gmx.net/de/go/browser
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|






