[Home] [By Thread] [By Date] [Recent Entries]
On 3/5/07, Markus Gamperl <markus.gamperl@xxxxxx> wrote:
example select: select ename, job, deptno, sal from emp order by deptno, job; 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
|

Cart



