Subject | RE: [ib-support] Aliases |
---|---|
Author | Leyne, Sean |
Post date | 2002-06-26T21:02:10Z |
> that's ok, but then again, this does NOT work that well:select field1 a, field2 || ', ' || field3 b
>
> select field1 a, field2 || ', ' || field3 b
> from tablec
> order by field2 || ', ' || field3;
>
> uhm.. how do I get around this?
from tablec
order by 2;