Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: Using order by with union

Re: Using order by with union

From: Gonzalo <gsabando_at_jet.es>
Date: Thu, 14 Oct 1999 19:37:36 +0200
Message-ID: <7u54de$3lf$1@lola.ctv.es>


You only need to use the "desc" (instead of -num) to get results in reverse order:

select word,num from wordtable union select word,num from wordtable2 order by num desc;

That's all.

Chris Seline escribió en mensaje <38060D9A.69E16EA7_at_2wrongs.com>...
>I have switched from using one table to two for my queries, but I have
>run into a problem using order by
>
>I would like to use this query across two tables
>select word,num from wordtable order by -num;
>
>like this
>
>select word,num from wordtable union select word,num from wordtable2
>order by -num;
>
>but it says that "ORDER BY item must be the number of a SELECT-list
>expression"
>
>the same query using num instead of -num works fine, but I just need it
>to come out in the
>reverse order
>
>also,
>select word,-num from wordtable union select word,num from wordtable2
>order by num;
>does not work either
>
>anyone who knows how to solve this is cool
>
Received on Thu Oct 14 1999 - 12:37:36 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US