Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
Stoater
Starting Member
1 Post |
Posted - 2005-11-24 : 14:57:37
|
| Hi Guys,I am new to sql server 2000, and need a little help.I have a table called CMRC_Products with various columns, there is one column called Product Images that has the name of every image in my catalog over 4000, I want to add to each row in that particular column .jpg without loosing what is already in thereI have tried:UPDATE CMRC_ProductsSET ProductImage = ProductImage&' .jpg'But I get an error,any help would be much appreciated, cheers |
|
|
nr
SQLTeam MVY
12543 Posts |
Posted - 2005-11-24 : 19:14:09
|
| UPDATE CMRC_ProductsSET ProductImage = ProductImage + ' .jpg'==========================================Cursors are useful if you don't know sql.DTS can be used in a similar way.Beer is not cold and it isn't fizzy. |
 |
|
|
|
|
|