【发布时间】:2022-01-12 12:58:25
【问题描述】:
I need a query to convert hexa value to decimal value. below is the query For 0xE7 the decimal value is 231. How to convert hexadecimal value to decimal value in snowflake. Below is the query I am trying to execute选择
hexa_decode_string(concat(substr('0x00E7000101000000'::varchar,1,2), substr(replace('0x00E7000101000000'::varchar,'0x'),3,2)));
【问题讨论】:
标签: hex