meta data for this page
  •  

F_BIN_XOR

input/output-compatibility to ib_udf

input/output-compatibility to rFunc (BINXOR)

Entrypoint f_bin_xor compatible with UTF-8


Inputs/Outputs

   Input      INTEGER     integer 1
              INTEGER     integer 2
   Output     INTEGER     binary exclusive OR of the two integers

Syntax

   TestSQL
   SELECT 6 AS ISCORRECT, F_BIN_XOR(3, 5) FROM RDB$DATABASE;
   SELECT NULL AS ISCORRECT, F_BIN_XOR(NULL, NULL) FROM RDB$DATABASE;