0

I have a VARCHAR column in which some values end with the digit '5'. These values may be of different lengths. I want to replace all such values with the string 'UTR-5'. How can I do that?

4

1 に答える 1

1

最速の解決策ではないかもしれませんが、

update myTable set value = 'UTR-5' where value like '%5'
于 2012-06-01T18:58:19.820 に答える