SQL: I want use the wildcard \"%\" in the IN clause but I\'m not getting the results I expect. My query is like this
SELECT DISTINCT ID, FROM I
I guess what you're looking for is not an IN Condition, but an LIKE Condition. What about searching for
IN
LIKE
SELECT DISTINCT ID, FROM INST WHERE TYPE like 'IP_%_International'