Subject Re: [firebird-support] Err Number 335544779
Author Anderson Farias
Hi,


| When executing the following sentence you give me error.
|SELECT cast(((163303.39/49.210000) * 49.210000) as decimal(15,2)) as val
|from MON$DATABASE

One way is *not* to use that many decimal places, like:


SELECT cast(((163303.39/49.210000) * 49.21) as decimal(15,2)) as val
from MON$DATABASE



Regards,
Anderson