I have a value in database and it contains a few apostrophes like………..
It’s a good day. He’s so happy.
Result must be…..
Its a good day. Hes so happy.
What T-SQL statement can I use to remove the apostrohe?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use replace, here’s an example:
If you want to update a column in a table, do it like this:
It replaces all occurrences of a specified string value (in your case apostrophes) with another string value (in your case empty string).