DATE_TRUNC
Overview
The DATE_TRUNC()
function truncates intervals or timestamps/time zones to a specified field. The return type is the same as the source type.
Syntax
The syntax for using the DATE_TRUNC()
function is as follows:
or
Let’s analyze the above syntax:
field
: The unit of time used to truncate thesource
value. It acceptstext
inputs and is case-insensitive.source
: The value you want to truncate. It can beINTERVAL
,TIMESTAMP
, orTIMESTAMP WITH TIME ZONE
.time_zone
(applicable for the second syntax option): The time zone for the operation. It acceptstext
input.
Fields
Below is a list of supported values to specify the fields param in DATE_TRUNC()
syntax.
microseconds
milliseconds
second
minute
hour
day
week
month
quarter
year
decade
century
millennium
Examples
Case #1: Truncating to Year
This example truncates the timestamp to the year level.
The timestamp **“1911-12-02 19:40:00” **has been truncated to 1911, with the month and day set to January 1st.
Case #2: Truncating to Day
This query truncates the timestamp “1911-12-02 19:40:00” to the day level.
The timestamp has been truncated to the same day, year, month, and day components.
Case #3: Truncating to Week
This query truncates the timestamp “1911-12-02 19:40:00” to the week level.
The timestamp has been truncated to the week starting on November 27, 1911.
Case #4: Truncating to Quarter
This query truncates the timestamp “1911-12-02 19:40:00” to the quarter level.
The year component of the timestamp is truncated, but the month and day components are set to the beginning of the quarter.
Case #5: Truncating to Hour
This query truncates the interval of “15 hours 10 minutes” to the hour level.
The interval** **has been truncated to 15 hours, with the minutes and seconds set to zero.
Case #6: Truncating to Quarter (Interval)
This query truncates the interval “16 years 4 months” to the quarter level.
The interval has been truncated to the nearest quarter.