1
Speak my darlings, I’m making an oracle average with the AVG function...
select avg (checkd) from table
Only it sometimes returns a very broken number, for example 0.002298850574712643678160919540229885057471
how can I return a value for example 0.2 ... so on.
I appreciate any possible help !
from 0.002 to 0.2 would have to multiply by 100... but as said, if the problem is the number of decimals, look for the round function
– Rovann Linhalis
was just an example of 0.2, I just want it to show a smaller number kk
– RM08
only use round to round, or trunc to truncate number
– Rovann Linhalis
Can you show me an example by doing a favor ? I’m new with programming
– RM08