I want to replace an apostrophe with a space in a SQL field. I have tried this bit does not work:
What am I doing wrong? Thanks
Code:
Update [Record_Retention].[dbo].[Records] Set contents = replace(contents, ''''', ' ') where status='Destroyed' and format='L';
Comment