I'm a noob when it comes to MySQL.
I need to change a character after a specific character to lowercase. For example, the word in the database shows up as "it'S". I'd like to change it to be correct, which would be "it's".
I think this might do what I'm trying to do but I'm not sure.
SELECT column_name FROM table a where column = LOWER(''', '=',-1)
The column name in my case is post_title on a Wordpress based website. Thank you!