As I had written in title, I have SQL query, run on Oracle DB, lets say:
SELECT * FROM TABLE WHERE TABLE.NAME Like \'IgNoReCaSe\'
If I woul
Select * from table where upper(table.name) like upper('IgNoreCaSe');
Alternatively, substitute lower for upper.