3.2.7. BITOR(string1[,[string2][,padchar]])

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

     BITOR(‘123456’x, ‘3456’x)     –>   ‘367656’x
     BITOR(‘FOOBAR’,, ‘20’x)  –>   ‘foobar’ /*For ASCII */
     BITOR(‘123456’x, ‘3456’x, ‘f0’x)   –>   ‘3676F6’x



PREV NEXT