3.2.8. BITXOR(string1[,[string2][,padchar]])

Works like BITAND(), except that the logical function XOR
(exclusive OR) is used instead of AND. For more information see
BITAND().

     BITXOR(‘123456’x, ‘3456’x)         –>   ‘266256’x
     BITXOR(‘FooBar’,, ‘20’x)      –>   ‘fOObAR’ /*For ASCII */
     BITXOR(‘123456’x, ‘3456’x, ‘f0’x)  –>   ‘2662A6’x



PREV NEXT