I have a table with lot of rows. how can i extract a string from all rows that between specific strings. for example i have this text: "stackoverflow". the strings "stack" and "flow" is common in all rows; how can i extract string between in this tow String and copy to a new column? what i try is:
UPDATE word set m = (SELECT m FROM word WHERE m BETWEEN 'stack' and 'flow') ;
Update: consider this text:"I like stackoverflow services." the words "stack" and "flow" is common in all rows and I want string between them.
JOINsubstr(x,y)to get the word in between, wherem like 'stack%' and m like '%flow'