Problems with Escape Character

Hi,

I've problems using Escape Characters in pl/sql Developer.

I want to search records which contain the text Philips_IP&S_-_FSR.

For this I've build the following query :
select o117323.code
from fsr_target.dwh_product_division o117323
where o117323.code in 'Philips_IP&&S_-_FSR';
This query doesn't return any records. When I execute this query in Oracle SQL Developer it does return records.

When I execute the following query in pl/sql Developer it asks me for a value for parameter S_.
select o117323.code
from fsr_target.dwh_product_division o117323
where o117323.code in 'Philips_IP&S_-_FSR';

What am I doing wrong ?
 
Back
Top