select (Civilimg1 + Civilimg2) as civilimagefull
from NewCus
but I get an error:
Msg 8117, Level 16, State 1, Line 2
Operand data type image is invalid for add operator.
How can I solve this problem?
select (Civilimg1 + Civilimg2) as civilimagefull
from NewCus
but I get an error:
Msg 8117, Level 16, State 1, Line 2
Operand data type image is invalid for add operator.
How can I solve this problem?
As mentioned by Mark_S I dono what are you trying to do here by adding to image columns but still if you want to do then cast the image column as Binary then you can concatenate the two columns together. Try this.
select cast(Civilimg1 as varbinary(max))+cast(Civilimg2 as varbinary(max))
from NewCus