How do I select a field from a numeric column?
Example. I want to sum the fourth digit after the decimal place, typical number= 26.2345 so I want to select '5' and then sum this.
This might not be what you're looking for, but you can simply multiply the number by 10000 and then take modulo 10. Not the most efficient way to do it but the first thing that poped into my head. Almost by definition, floating point operations are not going to be efficient. Good luck. MYenigmaSELF:-9 myenigmaself@myenigmaself.gaiden.com
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.