Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am rewriting more code from Access to SQL Server and I have never encountered a TRIM code before, any ideas how to write it for SQL Server as far as I know there is not just plain TRIM for SQL Server

Trim([FCT_TYP_CD]) & " (" & Trim([Dep_TYP_CD]) & ")" AS [Course Owner]
share|improve this question

2 Answers

up vote 4 down vote accepted
SELECT  RTRIM(LTRIM([FCT_TYP_CD])) + ' (' + 
        RTRIM(LTRIM([Dep_TYP_CD])) + ')' AS [Course Owner]
share|improve this answer
Thank you very much, idk what I would do without this site.! – Andrew Jan 22 at 19:32
@Andrew you are welcome – Lamak Jan 22 at 19:33
LTRIM(@String)
RTRIM(@string)

or

LTRIM(RTRIM(@string))
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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