How to convert a column value from varbinary(max) to varchar in human-readable form?
varbinary(max)
varchar
The following expression worked for me:
SELECT CONVERT(VARCHAR(1000), varbinary_value, 2);
Here are more details on the choice of style (the third parameter).
1.4m articles
1.4m replys
5 comments
57.0k users