Hi,I need to remove some part from a statement-DECLARE @loc varchar (100)set @loc = 'opt - ABC Trading (India)'select substring(@loc,1,LEN(@loc)-LEN(SUBSTRING(@LOC, CHARINDEX('(',@loc), CHARINDEX(')',@loc,len(@loc)-3))))Basically, i need to remove all the characters contained in the parenthesis & including the parenthesis.Output - 'opt - ABC Trading'Can anybody suggest a better option (performance wise) than what i have written?Thanks 