The exclusive OR (XOR) operator takes two Boolean operands and returns TRUE if either operand is TRUE, but not both. This operator is usually used to connect two comparisons.
Examples:
(1 > 2) XOR ("JUAN" ~= "JUAN")
Result = TRUE
(1 < 2) XOR ("JUAN" ~= "JUAN")
Result = FALSE
| Copyright © 2011 CA. All rights reserved. | Email CA Technologies about this topic |