mod

mod

mod 介绍

expr1 mod expr2 - 返回 expr1 除以 expr2 后的余数。

Examples:

> SELECT 2 % 1.8;
 0.2
> SELECT MOD(2, 1.8);
 0.2

Since: 1.0.0