As you know, in MySQL we have HEX and UNHEX, for example, when I write like this:
select hex("Ali");
conversion result: 416C69
and unhex looks like this: select unhex("416C69");
In MSSQL I cannot convert this, could you give me an example for both of them ???
Thanks a lot...
source share