Hi,
I have a table that contains images(an image data type fields). I want to
copy certain images from that table to another table(also image data type),
using the following statement
update tbl_property set image = (select thumbimage from tbl_propertyimage
where property_id =1).
I get an error saying :
Server: Msg 279, Level 16, State 3, Line 1
The text, ntext, and image data types are invalid in this subquery or
aggregate expression.
How can I copy the image data ?