is there any equivalent statement in oracle for MySQL’s Binary ?
Example:
Select * from table1 where BINARY column1 = BINARY column2;
It forces a exact case-sensitive match.
Is there any different statement besides to convert to UPPER or LOWER both columns ?
Found the answer somewhere.