How to write multiple column "in" sql query syntax?
Example :-
I am looking for the name : Peter in all of these 3 columns (or) any of these 3 columns : colA, colB, colC from the table : TableA
select * from TableA
where (colA, colB, colC) in 'Peter'
Table has the columns in a Pivot format. Alternate would be .. writing a union query for each column in syntax.