我知道如何更新记录并替换另一个字符串中的子字符串:
update(conn,'tableName',{'columnName'},{'value'},'where columName=xx') %update record in database
modifiedStr = strrep(origStr, oldSubstr, newSubstr) %replaces substring with new string in another string.
现在我想混合这两者并更改数据库中记录的子字符串。我们怎么能做到这一点?我想要一个查询来做到这一点。我们可以将两者混合吗?