I tried to do this
replace(comments, '"', '')
but that didn’t work
Any ideas on how to replace in a text field?
UPDATE
The error is
argument data type text is invalid for argument 1 of replace function
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.
You can’t to a lot of string functions in the
textdatatype.Don’t use
text.It’s been deprecated for like 6 years now. Use
varchar(max)instead.