I am successfully executing the following query in SQL Server 2008 built into VS2008:
SELECT REPLACE(image32, 'img', 'images/Products')
FROM Product
but when I do a select * from product
query, I am given the old results. Whats going on? Why isnt my data being updated?
Did I just answer my question? Do I need to throw in an Update statement as well? If so, can you help me, my sql nerd powers are not that great yet.