I’m a beginner with SQL. I always use update, set and where commands to replace values with other values. For example:
update _Items SET CodeName = 'ITEM_07_CH' where CodeName = 'ITEM_08_CH'.
What if i want to replace just small letter into a column just like using notepad++ (ctrl + H)? e.g. find (_08_) and replace it with (_07_). How do I do this in SQL?
Please note that I have about 2000 values in the table and I can’t do it one by one. I just wanna replace this letter in the whole column.
For example in MySQL (and also in the most RDBMS) you can use REPLACE function.