在hive中将日期格式(04-10-2017)转换为(2017年10月4日)

时间:2017-11-05 15:17:19

标签: sql hive hiveql

我有一个数据库,其中Date的结果是以下格式

20171004

所以我使用了这个查询

 select SUBSTRING(week_first_day_id,1,4) ||'/' ||
 (SUBSTRING(week_first_day_id,5,2)) || '/' ||
 SUBSTRING(week_first_day_id,7,2)  from d_date;

结果是

04/10/2017

我想将月份格式更改为Mon ( 04/Oct/2017)

2 个答案:

答案 0 :(得分:1)

使用date_format()

select date_format(week_first_day_id, 'dd/MMM/yyyy')

我觉得您没有将日期存储为日期或标准格式。这是一件坏事,你应该修复数据。您可以解析日期并使用它。我认为代码看起来像:

select date_format(from_unix_timestamp(unix_timestamp(week_first_day_id, 'dd/mm/yyyy')))

答案 1 :(得分:0)

使用unix_timestamp(字符串日期,字符串模式)将给定日期格式转换为1970-01-01传递的秒数。然后使用from_unixtime()转换为所需的格式:

hive> select  from_unixtime(unix_timestamp( '20171004','yyyyMMdd'), 'dd-MMM-yyyy');
OK
_c0
04-Oct-2017
Time taken: 1.329 seconds, Fetched: 1 row(s)