SyntaxFix
Write A Post
Hire A Developer
Questions
Are you sure your newline is not CHR(13) + CHR(10), in which case, you are ending up with CHR(13) + '_', which might still look like a newline?
CHR(13) + CHR(10)
CHR(13) + '_'
Try REPLACE(col_name, CHR(13) + CHR(10), '')
REPLACE(col_name, CHR(13) + CHR(10), '')