impala:内置函数trunc()的返回日

acruukt9  于 2021-06-26  发布在  Impala
关注(0)|答案(2)|浏览(1487)

当我使用 trunc(timestamp, 'D') ,它总是给我那个星期的星期一。是否可以要求函数返回一周中的其他日期,例如星期二?谢谢!

68de4m5k

68de4m5k1#

简单,只需选择trunc(timestamp,'d')+interval 1天;

46scxncf

46scxncf2#

你应该使用 trunc(timestamp, 'J') . 请参阅文档中的日期,您使用的是“一周中的开始日期”:

trunc(timestamp, string unit)
Purpose: Strips off fields from a TIMESTAMP value.
Unit argument: The unit argument value is case-sensitive. This argument string can be one of:
SYYYY, YYYY, YEAR, SYEAR, YYY, YY, Y: Year.
Q: Quarter.
MONTH, MON, MM, RM: Month.
WW, W: Same day of the week as the first day of the month.
DDD, DD, J: Day.
DAY, DY, D: Starting day of the week. (Not necessarily the current day.)
HH, HH12, HH24: Hour. A TIMESTAMP value truncated to the hour is always represented in 24-hour notation, even for the HH12 argument string.
MI: Minute.

https://www.cloudera.com/documentation/enterprise/latest/topics/impala_datetime_functions.html

相关问题