Hello I'm not very good at SQL so any help would be great thank you.
I have a table with 2 columns word and replacement
right now my replacement column is null however i'm trying to do a update statement which counts the character from the world column then adds specific symbol to the replacement column
for example value in word column is Hello World the update would add
Hello World, ***** *****
right now i got simple
update Words
set replacement = Replace(words, '*')