Я думаю, это то, что вы просите. Пожалуйста, посмотрите на это:
Declare @start INT;
Declare @end int;
set @start=CHARINDEX('Fi','this is the final exam');
set @end =CHARINDEX('al','this is the final exam');
if(@start >0 and @end>0)
Begin
SELECT
SUBSTRING('this is the final exam',
@start,
5)
END