Hi
I want to remove the decimals after the , in an avg calculation.
This is my script
select AVG(PROCESSED)*60
from PREPAID.RATING_REPORT
where BATCH = 600
and STARTDATE > (sysdate -12/24)
The result is something like this 21123,1677018634 I'd like it to be 21123 - that means coutting of the decimals after the ,
Please notice that it should be after the *60 to give the best result.
thanks.
/Larshg
I want to remove the decimals after the , in an avg calculation.
This is my script
select AVG(PROCESSED)*60
from PREPAID.RATING_REPORT
where BATCH = 600
and STARTDATE > (sysdate -12/24)
The result is something like this 21123,1677018634 I'd like it to be 21123 - that means coutting of the decimals after the ,
Please notice that it should be after the *60 to give the best result.
thanks.
/Larshg