Subject Re: [ib-support] Arithmatic Operator
Author Helen Borrie
At 02:59 AM 6/02/2003 +0000, you wrote:
>Dear All,
>
>Is the mod operator in Firebird ? example 10 mod 2 = 0

It's a function, not an operator, and it is implemented as a UDF, in the
ib_udf library. Here's the declaration:

DECLARE EXTERNAL FUNCTION mod
INTEGER, INTEGER
RETURNS DOUBLE PRECISION BY VALUE
ENTRY_POINT 'IB_UDF_mod' MODULE_NAME 'ib_udf';

heLen