Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 INST
WHERE TYPE in ('IP_%_International')

Please help resolve this and the solution should be with the IN clause.

share|improve this question

3 Answers

You can't do that. IN is for literals, percent signs are for LIKE. Sorry! So WHERE type LIKE 'IP_%_International'. But if you have several patterns , the only thing you can do is to OR them together.WHERE type LIKE 'IP_%_International' OR type LIKE 'some_%_other_pattern'

share|improve this answer
TYPE LIKE IP_%_International

The syntax might change depending on your DBMS

share|improve this answer

I guess what you're looking for is not an IN Condition, but an LIKE Condition. What about searching for

SELECT DISTINCT ID, FROM INST WHERE TYPE like 'IP_%_International'

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.