Hi All,
I cannot use round function in Query of Query. I can cast the number as integer like:
<cfquery dbtype="query">
select cast(myValue as integer) finalNumber
from myQuery
</cfquery>
where myValue = 65.7, but the result is 65, it should be 66.
It is a work around this issue?
Thanks!