SELECT * FROM abc WHERE column1 IN (a1,b1,c1)
I want to use LIKE with this select query; how can I write LIKE statement with IN, similar to the que
You can't. Write it as:
column1 LIKE 'a%' OR column1 LIKE 'b%' OR column1 LIKE 'c%'