Hi I am trying to extract the month and year part of a timestamp column in hive using the below query
select from_unixtime(unix_timestamp(upd_gmt_ts,'yyyyMM')) from abc.test;
The output looks like 2016-05-20 01:08:48
the desired output should be 201605
Appreciate any suggestions.
select date_format(upd_gmt_ts,'yyyyMM') from abc.test;
– Felicitasfelicitate