I have a table with column name Logo which has a datatype nvarchar(max) but the content is already in Base64 format. I want to move data from this column to another column which has a data type varbinary(max). If i use convert function it converts the logo Byte to varbinary which was actually in byte. How can i do this. Such as in the Logo column which has nvarchar(max) data type i have this -
'iVBORw0KGgoAAAANSUhEUgAAAFoAAABaCAYAAAA4qEECAAAACXBI......'
and i want to move exactly the same value to another column which has a data type varbinary(max).
Thanx in advance