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 ).>
Use the lower() function:
lower()
select t.* from table t where lower(column) like '%value%';