Subject | RE: [firebird-support] Error in order by clause |
---|---|
Author | Bogdan |
Post date | 2015-08-25T10:00:26Z |
I wasn't aware of this.
I've assumed that if i = 0 Firebird looks only at the first part of the second iif.
Thanks
Bogdan
From: firebird-support@yahoogroups.com [mailto:firebird-support@yahoogroups.com]
Sent: Tuesday, August 25, 2015 11:47 AM
To: firebird-support@yahoogroups.com
Subject: RE: [firebird-support] Error in order by clause
(Not sure if this is a duplicate thread or the same as "Wrong sort results" but I'll answer here too)
You are using different results in the ORDER BY clause. That's not allowed. Your t.c is an INTEGER and your E is a VARCHAR but your sums are NUMERIC.
Even though the result is always the same (dependent on you input I), Firebird doesn't know that yet. For Firebird the result CAN VARY between records and that's not allowed (record one could be a VARCHAR and record 2 could be NUMERIC for all Firebir d knows). So you need to cast them all to the same type.
For instance this will work:
order by iif(:i = 1, cast(t.c as numeric), IIF(:i = 0, sum(t.a) - sum(t.b), cast(t.e as numeric))) DESCENDING
But if you want to order by E (=VARCHAR) maybe you should cast to VARCHAR but in that case you need to make sure the ordering is done correctly (with adding spaces in front of the sums to order right aligned)
---In firebird-support@yahoo groups.com, <bogdan@...> wrote :
It should be
SUMA A B C D E
12 14 &nbs p; 2 1 11 1
0 3 3 2 12 2
-1,1 1,2 2,3 1 11 ; 3
-1,8 3,4 5,2 2 11 3
Suma descending
Regards
Bogdan
----- Reply message -----
Van: "'Bogdan' bogdan@... [firebird-support]" <firebird-support@yahoogroups.com>
Aan: <firebird-support@yahoogroups.com>
Onderwerp: [firebird-support] Error in order by clause
Datum: ma, aug. 24, 2015 10:37
order by iif(:i = 1, t.c, IIF(:I = 0, sum(t.a) - sum(t.b), E)) DESCENDING
Ta e-pošta je bila pregledana z Avast protivirusnim programom.
|