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

My data looks like

ID    MyText
1     some text; some more text
2     text again; even more text

How can I update MyText to drop everything after the semi-colon and including the semi colon, so I'm left with the following:

ID    MyText
1     some text
2     text again

I've looked at SQL Server Replace, but can't think of a viable way of checking for the ";"

share|improve this question

5 Answers

up vote 16 down vote accepted

Use LEFT combined with CHARINDEX:

UPDATE MyTable
SET MyText = LEFT(MyText, CHARINDEX(';', MyText) - 1)
WHERE CHARINDEX(';', MyText) > 0
share|improve this answer
Thanks this works great! ;) – user155695 Nov 3 '09 at 15:40
1  
What if MyText does not contain the ';' character? In that case, wouldn't you be using a negative 1 as the second parameter in left(). In that case, on my box, I get an error of "Invalid length parameter passed to the substring function." – Mike Nov 17 '09 at 17:08
@Mike That is exactly my problem atm - See next Answer from @najmeddine!! – Etienne Dupuis Dec 3 '10 at 19:09

For the times when some fields have a ";" and some do not you can also add a semi-colon to the field and use the same method described.

SET MyText = LEFT(MyText+';', CHARINDEX(';',MyText+';')-1)
share|improve this answer

Use CHARINDEX to find the ";". Then use SUBSTRING to just return the part before the ";".

share|improve this answer
UPDATE MyTable
   SET MyText = SUBSTRING(MyText, 1, CHARINDEX(';', MyText) - 1)
 WHERE CHARINDEX(';', MyText) > 0
share|improve this answer
Just tried this, it seems to leave the ; at the end. ;) – user155695 Nov 3 '09 at 15:39
fixed, thanks . – manji Nov 3 '09 at 15:54

Could use "CASE WHEN" to leave those with no ';' alone.

    SELECT
    CASE WHEN CHARINDEX(';', MyText) > 0 THEN
    LEFT(MyText, CHARINDEX(';', MyText)-1) ELSE
    MyText END
    FROM MyTable
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.