Subject Re: [ib-support] How to ORDER BY a field produced by a singleton select?
Author Helen Borrie
At 04:37 25/12/2002 +1030, you wrote:
>The following is required for allowing ordering by a looked-up field that is
>computed.
>
>SELECT
> A.ID,
> A.NAME,
> (SELECT B.NAME from B WHERE B.ID = A.BID) AS B_Name
> FROM A
>ORDER BY B_Name
>
>It doesn't work, so how should one do this?
>--

ORDER BY 3

heLen