Subject | RE: [firebird-support] Simple question |
---|---|
Author | Alan McDonald |
Post date | 2004-07-27T21:51:05Z |
> Hello,what's wrong with
>
> Is it possible to optimize this query:
>
> select
> field2
> from
> table
> where
> field1 = ( select max(field1) from table )
>
>
select max(field1), field2 from table
Alan