I have a list of values , for example id= ('10','20','30') I want to check if these values exisit in either columnA, columnB or columnC
This is what I have and this works fine
"select * from Table1 where ColumnA in", id
What I am trying to do is
"select * from Table1 where (ColumnA or ColumnB or ColumnC) in", id
I am getting a bunch of errors, so need help with the syntax