Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

SQL query for a carriage return in a string and ultimately removing carriage return

I have some data in a table and there are some carriage returns in places where I don't want them. I am trying to write a query to get all of the strings that contain carriage returns.

I tried this

select * from Parameters
where Name LIKE '%"\n" %'

Also

select * from Parameters
where Name LIKE '\r'

'

Both are valid SQL but are not returning what I am looking for. Do I need to use the Like command or a different command? How do I get the carriage return into the query?

The carriage return is not necessarily at the end of the line either (may be in the middle).

share|improve this question
was this for sql server? – KM. Aug 26 '09 at 20:23

7 Answers

up vote 8 down vote accepted

this will be slow, but if it is a one time thing, try...

select * from parameters where name like '%'+char(13)+'%' or name like '%'+char(10)+'%'

Note that the ANSI SQL string concatenation operator is "||", so it may need to be: select * from parameters where name like '%' || char(13) || '%' or name like '%' || char(10) || '%'

share|improve this answer

The main question was to remove the CR/LF. Here is what works for me: Select replace(replace(Name,char(10),''),char(13),'')

share|improve this answer

In SQL Server I Would use

where charindex(char(13), name)<>0
share|improve this answer

You can also use regular expressions:

SELECT * FROM Parameters WHERE Name REGEXP '\n';
share|improve this answer

Omit the double quotes from your first query.

... LIKE '%\n%'
share|improve this answer

Something like SELECT * FROM Parameters WHERE Name LIKE '%\n%' seems to work for me.

share|improve this answer

This also works

SELECT TRANSLATE(STRING_WITH_NL_CR, CHAR(10) || CHAR(13), '  ') FROM DUAL;
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.