Hi,
I need to omit some specific stng in a given string, Here is an example.
Declare @Original varchar(100)
Declare @Omit Varchar(25)
Set @Original = 'Globe is sphere, Box is Square, Ring is circle, Globe is sphere'
Set @omit = 'Globe is sphere'
I need result as "Box is Square, Ring is circle" Only
Please help me to bring the result.
Regards,
Fazlu
I need to omit some specific stng in a given string, Here is an example.
Declare @Original varchar(100)
Declare @Omit Varchar(25)
Set @Original = 'Globe is sphere, Box is Square, Ring is circle, Globe is sphere'
Set @omit = 'Globe is sphere'
I need result as "Box is Square, Ring is circle" Only
Please help me to bring the result.
Regards,
Fazlu