Re: select field contain chr(10) (Line Feed character) usng T-SQL
- From: Hugo Kornelis <hugo@xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Fri, 10 Feb 2006 22:52:27 +0100
On Thu, 9 Feb 2006 23:03:27 -0800, kei wrote:
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)?
Thx!!
Hi kei,
SELECT column1
FROM table1
WHERE CHARINDEX(CHAR(10), column1) <> 0
--
Hugo Kornelis, SQL Server MVP
.
- Prev by Date: Re: Datetime Selection II
- Next by Date: Re: question on date (or string after using convert function) comparis
- Previous by thread: Re: Datetime Selection II
- Next by thread: Re: question on date (or string after using convert function) comparis
- Index(es):
Relevant Pages
|
|