[EMAIL PROTECTED] writes:
> select date_fld from my_table order by date_fld desc;
> The above query put NULLs on top of normal values
> in stead of bottom, this is not the case in 7.1.3.
This is not a bug; it is an intentional change in behavior to conform
to SQL92. We are not going to change
On Tue, 2 Jul 2002 [EMAIL PROTECTED] wrote:
> John Liu ([EMAIL PROTECTED]) reports a bug with a severity of 2
> The lower the number the more severe it is.
>
> Short Description
> NULLs order by bug in 7.2.1
>
> Long Description
> select date_fld from my_table order by date_fld desc;
>
> The ab