Answers for "modulus operators in pl sql"

SQL
-1

module operator in oracle sql

##ORACLE and MYSQL
/*
MOD returns the remainder of n2 divided by n1. Returns n2 if n1 is 0.
*/
MOD(11,4)

##TRANSACT SQL
11 % 4
Posted by: Guest on November-15-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language