2017-03-29 4 views

Antwort

0

Sie sollten trunc(timestamp, 'J') verwenden. Lesen Sie die Dokumentation für Tag, Sie mit 'Starttag der Woche':

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

0

einfach, versuchen Sie einfach SELECT TRUNC (Zeitstempel, 'D') + INTERVAL 1 Tag;