I need to fix some (bad) inserted data in DB, I had data inserted with single qoutes like: ('love')
I want to move this to (love), without effect on something like (we're),
info table (structure)
id text
1 'love'
2 'man'
3 we're..
4 John
5 'Sarah'
I want to fix "info" table to be:
info table (structure)
id text
1 love
2 man
3 we're..
4 John
5 Sarah
I can select this data using:
select * from info where text like "'%'"
thanks,