I have a table that contains binary values such as:
binaryid description
1 description1
2 description2
4 description3
8 description4
And I have another table that contains values:
DBID BinaryTogether
1 15
1 12
1 6
With the bitwise operator I want to get a table that would contain the following:
DBID BinaryTogether BitwiseResult
1 15 description1,description2,description3,description4
1 12 description3,description4
1 6 description2, description3