Subject | Re: [firebird-support] Unions |
---|---|
Author | Marek Konitz |
Post date | 2004-03-01T11:02:13Z |
You can always create view:
create view VIEW1 as
SELECT .... blah blah blah
UNION
SELECT .... blah blah blah
Then there is nothing more simple than
select ... from VIEW1 order by Item1
Regards,
Marek
Uwe Oeder wrote:
create view VIEW1 as
SELECT .... blah blah blah
UNION
SELECT .... blah blah blah
Then there is nothing more simple than
select ... from VIEW1 order by Item1
Regards,
Marek
Uwe Oeder wrote:
>Is it somehow possible to order the the product of a union ?
>
>SELECT .... blah blah blah
>
>UNION
>
>SELECT .... blah blah blah
>
>ORDER BY Item1
>
>
>