Modulus operator in SQL Server

added by jacobsebastian
2/2/2011 1:23:34 AM

215 Views

Modulus operator is used to find the remainder after the division. All programming languages have specific operators to find a remainder like mod, rem, etc. In SQL Server, we can use modulus operator %. However we can also use general approach to find a remainder. Here are two methods Method 1 : Use...


0 comments