• declare @charpos int

    declare @searchterm nvarchar(max)

    SET @searchterm = 'blood and sweat'

    set @charpos = charindex('and', @SearchTerm)

    IF (@charpos = 0) --Check to make sure string position was found

    BEGIN

    print 'charindex not working as I think it should [Smile] '

    print cast(@charpos as varchar(max))

    END

    else

    BEGIN

    print 'charindex is working [LOL]'

    print cast(@charpos as varchar(max))

    END

    highlight "charindex" in your query panel and press F1

    Johan

    Learn to play, play to learn !

    Dont drive faster than your guardian angel can fly ...
    but keeping both feet on the ground wont get you anywhere :w00t:

    - How to post Performance Problems
    - How to post data/code to get the best help[/url]

    - How to prevent a sore throat after hours of presenting ppt

    press F1 for solution, press shift+F1 for urgent solution 😀

    Need a bit of Powershell? How about this

    Who am I ? Sometimes this is me but most of the time this is me