ved hjælp af STUFF
vi kan opnå dette
STUFF ( character_expression , start , length , replaceWith_expression )
SELECT STUFF('Name - Location - 0005', 5, 0, ' (West)');
output ville være Name (West) - Location - 0005
ved hjælp af STUFF
vi kan opnå dette
STUFF ( character_expression , start , length , replaceWith_expression )
SELECT STUFF('Name - Location - 0005', 5, 0, ' (West)');
output ville være Name (West) - Location - 0005