I am trying to execute the sql query:
select * from table where column like \'%value%\';
But the data is saved as \'Value\' ( V is capital ).>
This will eventually do the same thing. The ILIKE works, irrespective of the casing nature
SELECT * FROM table WHERE column_name ILIKE "%value%"