Subject | [firebird-support] Re: how to union a dubious query to another query |
---|---|
Author | Svein Erling Tysvær |
Post date | 2011-10-28T06:45:57Z |
>> select f1, f2, f3 from t1This question was very easy to understand (your original question was a bit harder), the answer depends on which version of Firebird you are using. If it is a recent version, then you could use CTEs, e.g.
>> where f1 = 'xxx'
>> union
>> select 0, 0, 0 from rdb$database
>> where not exists(
>> select f1, f2, f3 from t1
>> where f1 = 'xxx')
>> union
>> select f3, f4, f5 from t2
>
>Thanks, this is just my expected result.
>
>but my query , like this,
>
> select f1, f2, f3 from t1 where f1 = 'xxx'
>
>is a very long long sql,would you have a more simple way to write?
>
>My English is very terrible, hope you can understand me.
with tmp as
(select f1, f2, f3 from t1
where f1 = 'xxx')
select * from tmp
union
select 0, 0, 0 from rdb$database
where not exists(
select * from tmp)
union
select f3, f4, f5 from t2
This may have to be modified depending on your situation (e.g. you cannot simply change to WHERE F1 IN ('xxx', 'xxy') and get one line from t1 and one from rdb$database), it is hard to guess which changes are required without knowing more about the actual SQL statement.
HTH,
Set