Consider a table that looks like this:
**************************
* Col1 *** Col2 *** Col3 *
--------------------------
* 0 *** 1 *** 0 *
* 0 *** 0 *** 0 *
* 1 *** 1 *** 0 *
* 1 *** 1 *** 1 *
**************************
How could I join (for example) the last row with each field containing “1” translated into something?
So for the first row, it would return something like: “Yes” (omitting the ones that isn’t “1”). Or for the last row: “Yes, Yes, Yes”.
Replace
'NO'with0if you don’t want No.ANSWER MODIFICATION TO REFLECT QUESTION: