Combining “LIKE” and “IN” for SQL Server [duplicate]
Effectively, the IN statement creates a series of OR statements… so SELECT * FROM table WHERE column IN (1, 2, 3) Is effectively SELECT * FROM table WHERE column = 1 OR column = 2 OR column = 3 And sadly, that is the route you’ll have to take with your LIKE statements SELECT * … Read more