Modulus Function | SQL Server Performance Forums

SQL Server Performance Forum – Threads Archive

Modulus Function

Hi, Is there any function in SQL to find the modulus? eg 123 mod 5 is 3 Madhivanan
Refer to thehttp://www.umachandar.com/technical/SQL6x70Scripts/Main29.htm provided and can define that as a function for future references. Satya SKJ
Moderator
http://www.SQL-Server-Performance.Com/forum
This posting is provided “AS IS” with no rights for the sake of knowledge sharing.

Thanks satya. That one is very helpful. Madhivanan
select 123%5
]]>