Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 VARCHAR 列,其中一些值以数字“5”结尾。这些值可能具有不同的长度。我想用字符串“UTR-5”替换所有这些值。我怎样才能做到这一点?
也许不是最快的解决方案,但是:
update myTable set value = 'UTR-5' where value like '%5'