How do I convert a DoubleType into a Timestamp in Impala ?
I have the following doubletype format:
month_date: 201710
I would have thought something like:
SELECT
to_timestamp(cast (t1.month_date as string), 'yyyy-MM')
FROM old t1;
I am getting all Null
in