vote up 6 vote down star

For Example; SELECT TRIM(Names) FROM Customer

flag

78% accept rate

3 Answers

vote up 11 vote down check
SELECT LTRIM(RTRIM(Names)) AS Names FROM Customer
link|flag
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
vote up 15 vote down

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|flag
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
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
vote up 0 vote down

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|flag

Your Answer

Get an OpenID
or

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