MOD(N,M), N % M, N MOD M : MOD : Math Numeric Functions MySQL TUTORIALS


MySQL TUTORIALS » Math Numeric Functions » MOD »

 

MOD(N,M), N % M, N MOD M


mysql>
mysql> SELECT MOD(23410);
+--------------+
| MOD(23410|
+--------------+
|            |
+--------------+
row in set (0.02 sec)

mysql>
mysql> SELECT 253 7;
+---------+
253 |
+---------+
|       |
+---------+
row in set (0.00 sec)

mysql>
mysql> SELECT MOD(29,9);
+-----------+
| MOD(29,9|
+-----------+
|         |
+-----------+
row in set (0.00 sec)

mysql>
mysql> SELECT 29 MOD 9;
+----------+
29 MOD |
+----------+
|        |
+----------+
row in set (0.00 sec)

mysql>



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .

Follow Navioo On Twitter

MySQL TUTORIALS

 Navioo Math Numeric Functions
» MOD