How to CONVERT
a date in format YYYY-MM-DD
into integer YYYYMMDD
in Presto/Hive?
I am trying to convert the below list into YYYYMMDD
integers
WITH all_dates as (SELECT CAST(date_column AS DATE) date_column FROM (VALUES (SEQUENCE(FROM_ISO8601_DATE('2017-07-01'), FROM_ISO8601_DATE('2017-11-15'), INTERVAL '1' DAY) ) ) AS t1(date_array) CROSS JOIN UNNEST(date_array) AS t2(date_column) )
I tried something like this but it doesn’t work
SELECT CAST( CAST(year(date_column) AS VARCHAR(4)) + right('0' + CAST(month(date_column) AS VARCHAR(2)), 2) + right('0' + CAST(day(date_column) AS VARCHAR(2)), 2) AS DATETIME) FROM all_dates
Advertisement
Answer
If you just need to transform your date YYYY-MM-DD into an integer YYYYMMDD why don’t you try to first remove all the occurrences of "-"
from the string representation of your date before casting the result to int by using something like this?
cast(regexp_replace(str_column,'-','') as int)