MOD

Represents the SQLite MOD(X, Y) function, which computes the floating-point remainder of the division of X by Y.

The result of MOD(X, Y) is equivalent to X - Y * CAST(X/Y AS INTEGER).

Return

A KQLiteColumn with the floating-point remainder. Returns null if the divisor y is zero.

Author

MOHAMMAD AZIM ANSARI

Parameters

x

The column representing the dividend (the number to be divided).

y

The column representing the divisor (the number to divide by).

See also