If I have string like
select field1 + N' ' + field2 + N' ' + field3 from table1
how to make so that I could change or replace the characters starting from third place to fifth?
I mean if select statement above returns a string ABCD EFGH IJKL, then I want to replace CD(space) with *
Thanks.
stuff function