문제

Usually when one has to search in oracle for a single where condition where you don't know the exact condition we use :

Select * from Table where column like '%Val%'

If I have to run check for multiple condition we use IN

Select * from Table where column in ('Value1','ABC2')

How we combine the two ?i.e , search for a bunch of values in DB when the exact value is not know The below code doesn't give the desired result as it considers the whole as a string .

Select * from Table where column in ('%Val%','%AB%')
도움이 되었습니까?

해결책

Select * from Table where column like  '%Val%' or column like '%AB%';

다른 팁

Select * from Table where column like '%Val%' or column like '%AB%'.....

I know its little hard to write you can create a vertical list and change \n and \r by '% and %' respectively.

SELECT * FROM Table
WHERE instr(column, 'Val', 1) > 0 or instr(column, 'AB', 1) > 0

or:

SELECT * FROM Table
WHERE contains(column, 'Val', 1) > 0 or contains(column, 'AB', 1) > 0
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top