con l'aiuto di STUFF
possiamo raggiungere questo obiettivo
STUFF ( character_expression , start , length , replaceWith_expression )
SELECT STUFF('Name - Location - 0005', 5, 0, ' (West)');
l'output sarebbe Name (West) - Location - 0005
con l'aiuto di STUFF
possiamo raggiungere questo obiettivo
STUFF ( character_expression , start , length , replaceWith_expression )
SELECT STUFF('Name - Location - 0005', 5, 0, ' (West)');
l'output sarebbe Name (West) - Location - 0005