SQL Server, SSRS and Crystal Reports
Showing posts with label
Tab
.
Show all posts
Showing posts with label
Tab
.
Show all posts
Monday, 22 March 2010
Remove Carriage Return, Line Feed and Tab - SQL
Remove Carriage Return, Line Feed and Tab characters in T-SQL.
REPLACE
(
REPLACE
(
REPLACE
(
Field
,
CHAR
(
10
),
''
),
CHAR
(
13
),
''
),
CHAR
(
9
),
''
)
Older Posts
Home
Subscribe to:
Posts (Atom)