|
Posted by andrea.demagistris@libero.it on August 1, 2006, 9:51 am
Please log in for more thread options yes!
very good, you solved my problem!
Thank you very much
Andrea
Bill Karwin ha scritto:
> andrea.demagistris@libero.it wrote:
> > How can i sort the table only on the numeric part of the field?
>
> ...ORDER BY 0 + harddiskcapacity
>
> This coerces the column to be evaluated as an integer. It uses the
> digits in the leading portion of the value, to form an integer.
> In other words, the expression 0 + '80Gb' returns the integer value 80.
>
> Regards,
> Bill K.
|