MySQL Tutorial/Math Numeric Functions/Modulo
Версия от 13:44, 26 мая 2010; (обсуждение)
Modulo operation (%): Returns the remainder of N divided by M.
mysql>
mysql> select 5%2;
+------+
| 5%2 |
+------+
| 1 |
+------+
1 row in set (0.00 sec)
mysql>