so I want to search for one value in 3 columns in the MYSQL table and write JPA query like this: SELECT * FROM table WHERE 123 IN(col1, col2, col3); so the pr
SELECT * FROM table WHERE 123 IN(col1, col2, col3);