Trying to convert two or three columns in a huge table from base 36 to base 10.
I know the python code for it. But looking to do it in SQL (Snowflake). Is there a better way?
Trying to convert two or three columns in a huge table from base 36 to base 10.
I know the python code for it. But looking to do it in SQL (Snowflake). Is there a better way?
I wrote a JavaScript UDF to convert from any base to another base. Just call CONV(x, 36, 10) to go from base 36 to base 10.