I have a transformation bringing stuff from Oracle to my SQL Server. I need to use pattern matching in my query.
In T-SQL I can write:
Select * from MyTable where MyField like '__[rl]%'
and the [] works fine. But Oracle doesn't have clue what to do with [] even though it recognizes '_' and '%'.
Can anyone show me an example of the Oracle 8i version of this query for my transformation?
[font="Courier New"]ZenDada[/font]