Zagnieżdżone zastępowanie jest w porządku, ale wraz ze wzrostem poziomu zagnieżdżenia czytelność kodu spada. Gdybym miał dużą liczbę znaków do zastąpienia, wybrałbym coś czystszego, takiego jak podejście oparte na poniższej tabeli.
declare @Category varchar(25)
set @Category = 'ABC & DEF/GHI, LMN OP'
-- nested replace
select replace(replace(replace(replace(@Category, ' & ', '-'), '/', '-'), ', ', '-'), ' ', '-') as Department
-- table driven
declare @t table (ReplaceThis varchar(10), WithThis varchar(10))
insert into @t
values (' & ', '-'),
('/', '-'),
(', ', '-'),
(' ', '-')
select @Category = replace(@Category, ReplaceThis, isnull(WithThis, ''))
from @t
where charindex(ReplaceThis, @Category) > 0;
select @Category [Department]