Mysql replace question

OK - bit of a weird one here - I’m looking to replace a character in my database with a " - this is what I have, and it doesn’t like it :frowning:

UPDATE store_products SET description = replace(description,"ø",""")

I’ve tried wrapping it in other quotes - but that doesn’t work… how do I do it?

Ah - replace both sets of quotes… makes sense really.

Thanks r937 :slight_smile:

UPDATE store_products 
   SET description = REPLACE(description,[B][COLOR="Red"]'[/COLOR][/B]ø[B][COLOR="Red"]'[/COLOR][/B],[B][COLOR="Red"]'[/COLOR][/B]"[B][COLOR="Red"]'[/COLOR][/B])