Subject | Re: [ib-support] Rounding function? |
---|---|
Author | Joe Martinez |
Post date | 2003-02-05T07:14:50Z |
> >So, it would be something like:Will that work if the target field is a float?
> >
> >update mytable set field1 = ROUND(field2 * 2.3,2)
> >
> >Does such a function exist in FB 1.0, and if so, what is the exact syntax?
> >
> >
>update mytable
>set field1=cast(field1 as numeric (18,2) )
-Joe