I have a string value of '2.4.3369.6'. Using the command:
select encode('2.4.3369.6', 'hex') as string_to_hex
I translate this value into a hex and get the next value of
'322e342e333336392e36'
Which command or commands do I use to get the value '2.4.3369.6' from the value '322e342e333336392e36'?
decode('322e342e333336392e36','hex')doesn't work.select '2.4.3369.6' as string_in_dec, encode('2.4.3369.6', 'hex') as string_to_hex, convert_from(decode('322e342e333336392e36','hex'),'UTF-8') as string_to_dec;