Subject | Re: [firebird-support] ODER BY após UNION o u UNION ALL |
---|---|
Author | Alexandre Benson Smith |
Post date | 2004-05-10T16:38:19Z |
Digirotas/Desenvolvimento wrote:
You should write in English on this list.
Create a view with your select and union and then select from that view
with an order by clause.
create view vTest(ColumnA, ColumnB) as
select
ColumnA, Column B
from
TableA
union all
select
ColumnA, Column B
from
TableB;
select * from vTest order by ColumnA
If you have problems to read English, contact me off-list I and can
answer in portuguese.
Caso tenha dificuldades em entender a mensagem em ingles, entre em
contato comigo fora da lista e explico como resolver seu problema.
see you !
--
Alexandre Benson Smith
Development
THOR Software e Comercial Ltda.
Santo Andre - Sao Paulo - Brazil
www.thorsoftware.com.br
>Pessoal,Paulo,
>
>Preciso fazer um ORDER BY em um resultado de UNION...
>
>Ou seja, preciso ordenar todo o conjunto após o union.
>
>Alguém poderia me dar a dica de como fazer ?
>
>Obrigado
>
>Paulo Botelho
>
>
You should write in English on this list.
Create a view with your select and union and then select from that view
with an order by clause.
create view vTest(ColumnA, ColumnB) as
select
ColumnA, Column B
from
TableA
union all
select
ColumnA, Column B
from
TableB;
select * from vTest order by ColumnA
If you have problems to read English, contact me off-list I and can
answer in portuguese.
Caso tenha dificuldades em entender a mensagem em ingles, entre em
contato comigo fora da lista e explico como resolver seu problema.
see you !
--
Alexandre Benson Smith
Development
THOR Software e Comercial Ltda.
Santo Andre - Sao Paulo - Brazil
www.thorsoftware.com.br