29/01/2025
Write SQL query to fetch all rows from the table having specific value in any one of the columns without using or keyword?
Ans: select * from table where 'specific value' in (column_1,column_2,....column_n)