I am trying really hard to solve this problem. I have a table named tbl.Products it has a column named articlenumber which is full of numbers like s401, s402 etc. etc.
Now I generated a list with new article numbers which will replace the old ones. It looks like this.
s401 I00010
s402 I00020
s403 I00030
s403 I00040
...
I have a query from which I hoped that it would work out but I it does... somehow.. nothing?
(offcourse I have nested the other values into the query)
SELECT REPLACE('articlenumber','s401','I00010') FROM tbl.Products
How do I get a query which replaces old values with new ones in a column?!
please help