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