I have a SQL Server bit of code like this:
SELECT [something]
FROM [Table1]
JOIN [Table2]
ON [Table1].Field = [Table2].Field COLLATE Latin1_General_CI_AS
How can I rewrite this to work in Oracle?
I've consulted a few places like here, but I'm a little confused about how to translate a wildcard search into a join query.