The modulus operator (Mod) is used to divide two numbers and return only the remainder. Floating point numbers are rounded to integers.
8 Mod 3 returns 2
21 mod 7 returns 0
21.9 mod 7 returns 1
It appears that you want to return the decimal portion of a number. Use the following to perform this operation. x - fix(x)
x=6.3 : ?x - fix(x) returns 0.3 If you want to get the best answer for your question read faq183-874 and thread183-468158. Terry L. Broadbent - DBA
SQL Server Page:
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.