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 ).>
you should use either lower or upper function to ignore the case while you are searching for some field using like.
select * from student where upper(sname) like 'S%';
OR
select * from student where lower(sname) like 'S%';