Very strange. Are you really sure?CREATE TABLE #Temp
(
ID INT,
Data IMAGE
)
select * from #temp
INSERT #Temp
SELECT 1, 0x1234 UNION ALL
SELECT 6, 0x2244
select * from #temp
UPDATE t1
SET t1.Data = (SELECT t2.Data FROM #Temp AS t2 WHERE t2.ID = 6)
FROM #Temp AS t1
WHERE t1.ID = 1
select * from #temp
drop table #temp
E 12°55'05.25"
N 56°04'39.16"