Is it possible to use something working like CONTAINS function from new Oracle?
I have 11.2 and would like to do sth like this:
select * from cars
inner join customers on customers.as_id = cars.as_id
where cars.type like 'AUDI' and contains(request, customers.name, 1) > 0;
so as I know I can't use LIKE here because customers.name is not a fixed value.
Is there a way to find some workaround for old Oracle?
You can use
LIKEas follows:Note:
containsclause is used for finding specific strings within an Oracle Text index. it can not be applied on normal columns.