My query looks something similar to COL1 = ? AND COL2 LIKE ? OR COL3 LIKE ? OR COL4 LIKE ? ..
and i pass the values of selection args as {"col1value","searchstring", "searchstring","searchstring"}
I am comparing if col2, 3 and 4 with same string . So can i optimize using binding to something like COL1 = ? AND COL2 LIKE ?2 OR COL3 LIKE ?2 OR COL4 LIKE ?2
so that i dont have to repeat the string in arguments {"col1value","searchstring"}
Is this possible and if yes what is the right syntax for it.