all groups > sql server mseq > february 2006 >
You're in the

sql server mseq

group:

select field contain chr(10) (Line Feed character) usng T-SQL


select field contain chr(10) (Line Feed character) usng T-SQL kei
2/9/2006 11:03:27 PM
sql server mseq:
How to retrieve all record which has chr(10) in the value of a specific column?

select column1 from table1 where............? (how to write the where
statement)?
Re: select field contain chr(10) (Line Feed character) usng T-SQL Hugo Kornelis
2/10/2006 10:52:27 PM
[quoted text, click to view]

Hi kei,

SELECT column1
FROM table1
WHERE CHARINDEX(CHAR(10), column1) <> 0

--
AddThis Social Bookmark Button