2017-03-29 9 views

答えて

0

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

0

簡単、ちょうど SELECT TRUNC(タイムスタンプ、 'D')+ INTERVAL 1 DAYを試してみてください。

関連する問題