up vote 9 down vote favorite
share [g+] share [fb]

For Example; SELECT TRIM(Names) FROM Customer

link|improve this question

78% accept rate
feedback

4 Answers

up vote 19 down vote accepted
SELECT LTRIM(RTRIM(Names)) AS Names FROM Customer
link|improve this answer
this is the easiest way to do it, just remember to alias your column being returned – Miles Oct 8 '08 at 15:10
@Miles - I added the alias for completeness. – Ben Hoffstein Oct 8 '08 at 15:29
feedback

To Trim on the right, use:

SELECT RTRIM(Names) FROM Customer

To Trim on the left, use:

SELECT LTRIM(Names) FROM Customer

To Trim on the both sides, use:

SELECT LTRIM(RTRIM(Names)) FROM Customer
link|improve this answer
Incidentally, what possible reason could Microsoft have for including an LTRIM and RTRIM function without a TRIM? It's peculiar. – Ben Hoffstein Oct 7 '08 at 18:06
Because it is redundant. You can accomplish the same thing with LTRIM(RTRIM(var)). – Kibbee Oct 7 '08 at 23:11
3  
Yes, but that's two function calls. You could say they are all redundant since TSQL has CHARINDEX and SUBSTRING, but that's an idiotic way to look at it. – Ben Hoffstein Oct 8 '08 at 14:02
feedback

I assume this is a one-off data scrubbing exercise. Once done, ensure you add database constraints to prevent bad data in the future e.g.

ALTER TABLE Customer ADD
   CONSTRAINT customer_names__whitespace
      CHECK (
             Names NOT LIKE ' %'
             AND Names NOT LIKE '% '
             AND Names NOT LIKE '%  %'
            );

Also consider disallowing other characters (tab, carriage return, line feed, etc) that may cause problems.

It may also be a good time to split those Names into family_name, first_name, etc :)

link|improve this answer
feedback

in sql server 2008 r2 with ssis expression we have the trim function .

SQL Server Integration Services (SSIS) is a component of the Microsoft SQL Server database software that can be used to perform a broad range of data migration tasks.

you can find the complete description on this link

http://msdn.microsoft.com/en-us/library/ms139947.aspx

but this function have some limitation in itself which are also mentioned by msdn on that page. but this is in sql server 2008 r2

TRIM("   New York   ") .The return result is "New York".
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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