Ich muss in der Lage sein zu prüfen, ob eine Variable eine bestimmte Textzeichenfolge enthält. Hier ist, was ich jetzt habe:
--This sample always goes to the ELSE block.
IF( @name LIKE '%John%' )
BEGIN
--do one thing
END
ELSE
BEGIN
--do the other thing
END