I have a procedure in Postgres which is doing just fine. It is storing data in a database table which you can use them later. One column in the database table stores names of customers. Some of the names have special chars such as apostrophe '. How can I replace this character with an empty string in Postgres?
UPDATE
booking
SET
name= REPLACE(name,"'",'')
WHERE
booking_id = 1;