sql server 2005 - SQL update for the varchar column -
i want change string of attachmentcopyloc
columns d:\it\public\ftx_robotalerts\336
v:\it\public\ftx_robotalerts\336
change here d v, remaining string same (i don't event want change that).
how can that?
thanks in advance help.
another way basic string manipulation
update {table} set attachmentcopyloc ='v' + substring(attachmentcopyloc,2,len(attachmentcopyloc )) attachmentcopyloc 'd%'