Subject | Re: [firebird-support] Err Number 335544779 |
---|---|
Author | Anderson Farias |
Post date | 2011-03-01T19:17:06Z |
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
| 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