I have a table that has a varbinary field like:
0x83838383838372723 .....
I would like to concatenate this varbinary field to a string, for example:
SELECT CONCAT('Varbinary value is', varbinary_field)
FROM MyTable
I expect the following string:
Varbinary value is 0x83838383838372723
I need to use concat so how to do it?
CONVERT(VARCHAR(MAX), myBinaryValue, 1)or something like that. See binary styles here