Question
Query?
update TableName set ColumnName=replace(ColumnName,'if
matches 555',
'replace with 666')
Above works for items that I have a specific description I want to replace.
What if I just want to update all the items in a certain column? How do
I do that. In other words, I want to everything in ColumnName to be 777
Something like this?
update TableName set ColumnName=replace(ColumnName,'%%', 'replace with 777')
Would this do it?
'replace with 666')
Above works for items that I have a specific description I want to replace.
What if I just want to update all the items in a certain column? How do
I do that. In other words, I want to everything in ColumnName to be 777
Something like this?
update TableName set ColumnName=replace(ColumnName,'%%', 'replace with 777')
Would this do it?
