UNION Expression

set-expression-1 UNION set-expression-2

The UNION expression returns the set union of the left and right operands. The result set contains values that are members of either the left or right operand. The operands must have compatible set types. The following example performs a set union:

proc optmodel;
   put ({1,3} union {2,3}); /* outputs {1,3,2} */