suppose a table is like this
ID Desc
1 I am a boy
2 I am a boy xyz
3 I am a boy abc
4 xyzab I am a boy
5 life is beautiful
6 blank
now my requirement is whenever in a row the phrase “I am a boy” is found it will be removed but the rest of the part will remain as it is. If that phrase is not there there will be no change. So for the above table after the query it will look like this
ID Desc
1 <blank>
2 xyz
3 abc
4 xyzab
5 life is beautiful
6 blank