Need Help Using CHARINDEX to Create a New Variable

95 Views Asked by At

I'm trying to take the second number in the variable description and make a new variable. However, I'm not too familiar with string manipulation. Below is a small example of the variable description, I'm having a hard time formatting it because the first number changes in size.

Description 
4 Matching notifications 11 Updates
32 Matching notifications 12 Updates
1211 Matching notifications 1 Updates

Below this is a rough idea of the code I thought would originally work.

 SELECT 
     LEFT(Description, CHARNDEX('Updates', Description)-1) AS Second_variable
 FROM X
1

There are 1 best solutions below

1
On

This is a bit tricky in SQL Server. One method is:

select s.value as second_variable
from t cross apply
     (select top (1) s.value
      from string_split(description, ' ') s
      where description like concat('% ', s.value, ' Updates')
     ) s;

This extracts the individual "words" from the string and then chooses the one that matches the value before the last ' Updates'.