4> DECLARE @FullName VarChar(25), @SpaceIndex TinyInt5> SET @FullName = 'George'6>7> -- Get index of the delimiting space:8> SET @SpaceIndex = CHARINDEX(' ', @FullName)9>