Relational Data - Functions - Date Time Functions: Difference between revisions

From FojiSoft Docs
(Import ClickHouse Docs: Wed Aug 28 2024 14:52:19 GMT-0400 (Eastern Daylight Time))
 
(Import ClickHouse Docs: Wed Aug 28 2024 15:05:45 GMT-0400 (Eastern Daylight Time))
 
Line 1: Line 1:
<br />
Most functions in this section accept an optional time zone argument, e.g. <code>Europe/Amsterdam</code>. In this case, the time zone is the specified one instead of the local (default) one.
G | era | text | AD |<br />
 
C | century of era (&gt;=0) | number | 20 |<br />
'''Example'''
Y | year of era (&gt;=0) | year | 1996 |<br />
 
x | weekyear (not supported yet) | year | 1996 |<br />
<syntaxhighlight lang="sql">SELECT
w | week of weekyear (not supported yet) | number | 27 |<br />
    toDateTime('2016-06-15 23:00:00') AS time,
e | day of week | number | 2 |<br />
    toDate(time) AS date_local,
E | day of week | text | Tuesday; Tue |<br />
    toDate(time, 'Asia/Yekaterinburg') AS date_yekat,
y | year | year | 1996 |<br />
    toString(time, 'US/Samoa') AS time_samoa</syntaxhighlight>
D | day of year | number | 189 |<br />
<syntaxhighlight lang="text">┌────────────────time─┬─date_local─┬─date_yekat─┬─time_samoa──────────┐
M | month of year | month | July; Jul; 07 |<br />
│ 2016-06-15 23:00:00 │ 2016-06-15 │ 2016-06-16 │ 2016-06-15 09:00:00 │
d | day of month | number | 10 |<br />
└─────────────────────┴────────────┴────────────┴─────────────────────┘</syntaxhighlight>
a | halfday of day | text | PM |<br />
<span id="makedate"></span>
K | hour of halfday (0~11) | number | 0 |<br />
== makeDate ==
h | clockhour of halfday (1~12) | number | 12 |<br />
 
H | hour of day (0~23) | number | 0 |<br />
Creates a [[Relational_Data_-_Data_Types_-_Date|Date]] - from a year, month and day argument, or - from a year and day of year argument.
k | clockhour of day (1~24) | number | 24 |<br />
 
m | minute of hour | number | 30 |<br />
'''Syntax'''
s | second of minute | number | 55 |<br />
 
S | fraction of second (not supported yet) | number | 978 |<br />
<syntaxhighlight lang="sql">makeDate(year, month, day);
z | time zone (short name not supported yet) | text | Pacific Standard Time; PST |<br />
makeDate(year, day_of_year);</syntaxhighlight>
Z | time zone offset/id (not supported yet) | zone | -0800; -08:00; America/Los_Angeles |<br />
Alias: - <code>MAKEDATE(year, month, day);</code> - <code>MAKEDATE(year, day_of_year);</code>
| escape for text | delimiter | |<br />
 
’’ | single quote | literal | ’ |
'''Arguments'''
 
* <code>year</code> — Year. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>month</code> — Month. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>day</code> — Day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>day_of_year</code> — Day of the year. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
 
'''Returned value'''
 
* A date created from the arguments. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
Create a Date from a year, month and day:
 
<syntaxhighlight lang="sql">SELECT makeDate(2023, 2, 28) AS Date;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────date─┐
│ 2023-02-28 │
└────────────┘</syntaxhighlight>
Create a Date from a year and day of year argument:
 
<syntaxhighlight lang="sql">SELECT makeDate(2023, 42) AS Date;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────date─┐
│ 2023-02-11 │
└────────────┘</syntaxhighlight>
<span id="makedate32"></span>
== makeDate32 ==
 
Creates a date of type [[Relational_Data_-_Data_Types_-_Date32|Date32]] from a year, month, day (or optionally a year and a day).
 
'''Syntax'''
 
<syntaxhighlight lang="sql">makeDate32(year, [month,] day)</syntaxhighlight>
'''Arguments'''
 
* <code>year</code> — Year. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>month</code> — Month (optional). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>day</code> — Day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
 
<div class="note">
 
If <code>month</code> is omitted then <code>day</code> should take a value between <code>1</code> and <code>365</code>, otherwise it should take a value between <code>1</code> and <code>31</code>.
 
 
</div>
'''Returned values'''
 
* A date created from the arguments. [[Relational_Data_-_Data_Types_-_Date32|Date32]].
 
'''Examples'''
 
Create a date from a year, month, and day:
 
Query:
 
<syntaxhighlight lang="sql">SELECT makeDate32(2024, 1, 1);</syntaxhighlight>
Result:
 
<pre class="response">2024-01-01</pre>
Create a Date from a year and day of year:
 
Query:
 
<syntaxhighlight lang="sql">SELECT makeDate32(2024, 100);</syntaxhighlight>
Result:
 
<pre class="response">2024-04-09</pre>
<span id="makedatetime"></span>
== makeDateTime ==
 
Creates a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] from a year, month, day, hour, minute and second argument.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">makeDateTime(year, month, day, hour, minute, second[, timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>year</code> — Year. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>month</code> — Month. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>day</code> — Day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>hour</code> — Hour. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>minute</code> — Minute. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>second</code> — Second. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional).
 
'''Returned value'''
 
* A date with time created from the arguments. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT makeDateTime(2023, 2, 28, 17, 12, 33) AS DateTime;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌────────────DateTime─┐
│ 2023-02-28 17:12:33 │
└─────────────────────┘</syntaxhighlight>
<span id="makedatetime64"></span>
== makeDateTime64 ==
 
Creates a [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]] data type value from its components: year, month, day, hour, minute, second. With optional sub-second precision.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">makeDateTime64(year, month, day, hour, minute, second[, precision])</syntaxhighlight>
'''Arguments'''
 
* <code>year</code> — Year (0-9999). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>month</code> — Month (1-12). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>day</code> — Day (1-31). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>hour</code> — Hour (0-23). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>minute</code> — Minute (0-59). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>second</code> — Second (0-59). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>precision</code> — Optional precision of the sub-second component (0-9). [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* A date and time created from the supplied arguments. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT makeDateTime64(2023, 5, 15, 10, 30, 45, 779, 5);</syntaxhighlight>
<pre class="response">┌─makeDateTime64(2023, 5, 15, 10, 30, 45, 779, 5)─┐
│                      2023-05-15 10:30:45.00779 │
└─────────────────────────────────────────────────┘</pre>
== timestamp ==
 
Converts the first argument ‘expr’ to type [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64(6)]]. If a second argument ‘expr_time’ is provided, it adds the specified time to the converted value.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timestamp(expr[, expr_time])</syntaxhighlight>
Alias: <code>TIMESTAMP</code>
 
'''Arguments'''
 
* <code>expr</code> - Date or date with time. [[Relational_Data_-_Data_Types_-_String|String]].
* <code>expr_time</code> - Optional parameter. Time to add. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Examples'''
 
<syntaxhighlight lang="sql">SELECT timestamp('2023-12-31') as ts;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─────────────────────────ts─┐
│ 2023-12-31 00:00:00.000000 │
└────────────────────────────┘</syntaxhighlight>
<syntaxhighlight lang="sql">SELECT timestamp('2023-12-31 12:00:00', '12:00:00.11') as ts;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─────────────────────────ts─┐
│ 2024-01-01 00:00:00.110000 │
└────────────────────────────┘</syntaxhighlight>
'''Returned value'''
 
* [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]](6)
 
<span id="timezone"></span>
== timeZone ==
 
Returns the timezone of the current session, i.e. the value of setting [https://clickhouse.com/docs/en/operations/settings/settings#session_timezone session_timezone]. If the function is executed in the context of a distributed table, then it generates a normal column with values relevant to each shard, otherwise it produces a constant value.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timeZone()</syntaxhighlight>
Alias: <code>timezone</code>.
 
'''Returned value'''
 
* Timezone. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT timezone()</syntaxhighlight>
Result:
 
<pre class="response">┌─timezone()─────┐
│ America/Denver │
└────────────────┘</pre>
'''See also'''
 
* [[#servertimezone|serverTimeZone]]
 
<span id="servertimezone"></span>
== serverTimeZone ==
 
Returns the timezone of the server, i.e. the value of setting [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone timezone]. If the function is executed in the context of a distributed table, then it generates a normal column with values relevant to each shard. Otherwise, it produces a constant value.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">serverTimeZone()</syntaxhighlight>
Alias: <code>serverTimezone</code>.
 
'''Returned value'''
 
* Timezone. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT serverTimeZone()</syntaxhighlight>
Result:
 
<pre class="response">┌─serverTimeZone()─┐
│ UTC              │
└──────────────────┘</pre>
'''See also'''
 
* [[#timezone|timeZone]]
 
<span id="totimezone"></span>
== toTimeZone ==
 
Converts a date or date with time to the specified time zone. Does not change the internal value (number of unix seconds) of the data, only the value’s time zone attribute and the value’s string representation changes.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toTimezone(value, timezone)</syntaxhighlight>
Alias: <code>toTimezone</code>.
 
'''Arguments'''
 
* <code>value</code> — Time or date and time. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — Timezone for the returned value. [[Relational_Data_-_Data_Types_-_String|String]]. This argument is a constant, because <code>toTimezone</code> changes the timezone of a column (timezone is an attribute of <code>DateTime*</code> types).
 
'''Returned value'''
 
* Date and time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDateTime('2019-01-01 00:00:00', 'UTC') AS time_utc,
    toTypeName(time_utc) AS type_utc,
    toInt32(time_utc) AS int32utc,
    toTimeZone(time_utc, 'Asia/Yekaterinburg') AS time_yekat,
    toTypeName(time_yekat) AS type_yekat,
    toInt32(time_yekat) AS int32yekat,
    toTimeZone(time_utc, 'US/Samoa') AS time_samoa,
    toTypeName(time_samoa) AS type_samoa,
    toInt32(time_samoa) AS int32samoa
FORMAT Vertical;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">Row 1:
──────
time_utc:  2019-01-01 00:00:00
type_utc:  DateTime('UTC')
int32utc:  1546300800
time_yekat: 2019-01-01 05:00:00
type_yekat: DateTime('Asia/Yekaterinburg')
int32yekat: 1546300800
time_samoa: 2018-12-31 13:00:00
type_samoa: DateTime('US/Samoa')
int32samoa: 1546300800</syntaxhighlight>
'''See Also'''
 
* [[#formatdatetime|formatDateTime]] - supports non-constant timezone.
* [[Relational_Data_-_Functions_-_Type_Conversion_Functions#tostring|toString]] - supports non-constant timezone.
 
<span id="timezoneof"></span>
== timeZoneOf ==
 
Returns the timezone name of [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]] data types.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timeZoneOf(value)</syntaxhighlight>
Alias: <code>timezoneOf</code>.
 
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Returned value'''
 
* Timezone name. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT timezoneOf(now());</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─timezoneOf(now())─┐
│ Etc/UTC          │
└───────────────────┘</syntaxhighlight>
<span id="timezoneoffset"></span>
== timeZoneOffset ==
 
Returns the timezone offset in seconds from [https://en.wikipedia.org/wiki/Coordinated_Universal_Time UTC]. The function [https://en.wikipedia.org/wiki/Daylight_saving_time daylight saving time] and historical timezone changes at the specified date and time into account. The [https://www.iana.org/time-zones IANA timezone database] is used to calculate the offset.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timeZoneOffset(value)</syntaxhighlight>
Alias: <code>timezoneOffset</code>.
 
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Returned value'''
 
* Offset from UTC in seconds. [[Relational_Data_-_Data_Types_-_Int_Uint|Int32]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDateTime('2021-04-21 10:20:30', 'America/New_York') AS Time, toTypeName(Time) AS Type,
      timeZoneOffset(Time) AS Offset_in_seconds, (Offset_in_seconds / 3600) AS Offset_in_hours;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌────────────────Time─┬─Type─────────────────────────┬─Offset_in_seconds─┬─Offset_in_hours─┐
│ 2021-04-21 10:20:30 │ DateTime('America/New_York') │            -14400 │              -4 │
└─────────────────────┴──────────────────────────────┴───────────────────┴─────────────────┘</syntaxhighlight>
<span id="toyear"></span>
== toYear ==
 
Returns the year component (AD) of a date or date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toYear(value)</syntaxhighlight>
Alias: <code>YEAR</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The year of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt16]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toYear(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                      2023 │
└───────────────────────────────────────────┘</pre>
<span id="toquarter"></span>
== toQuarter ==
 
Returns the quarter (1-4) of a date or date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toQuarter(value)</syntaxhighlight>
Alias: <code>QUARTER</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The quarter of the year (1, 2, 3 or 4) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toQuarter(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toQuarter(toDateTime('2023-04-21 10:20:30'))─┐
│                                            2 │
└──────────────────────────────────────────────┘</pre>
<span id="tomonth"></span>
== toMonth ==
 
Returns the month component (1-12) of a date or date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toMonth(value)</syntaxhighlight>
Alias: <code>MONTH</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The month of the year (1 - 12) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toMonth(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                          4 │
└────────────────────────────────────────────┘</pre>
<span id="todayofyear"></span>
== toDayOfYear ==
 
Returns the number of the day within the year (1-366) of a date or date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toDayOfYear(value)</syntaxhighlight>
Alias: <code>DAYOFYEAR</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The day of the year (1 - 366) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt16]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDayOfYear(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toDayOfYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                            111 │
└────────────────────────────────────────────────┘</pre>
<span id="todayofmonth"></span>
== toDayOfMonth ==
 
Returns the number of the day within the month (1-31) of a date or date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toDayOfMonth(value)</syntaxhighlight>
Aliases: <code>DAYOFMONTH</code>, <code>DAY</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The day of the month (1 - 31) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDayOfMonth(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toDayOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                              21 │
└─────────────────────────────────────────────────┘</pre>
<span id="todayofweek"></span>
== toDayOfWeek ==
 
Returns the number of the day within the week of a date or date with time.
 
The two-argument form of <code>toDayOfWeek()</code> enables you to specify whether the week starts on Monday or Sunday, and whether the return value should be in the range from 0 to 6 or 1 to 7. If the mode argument is omitted, the default mode is 0. The time zone of the date can be specified as the third argument.
 
{| class="wikitable"
|-
! Mode
! First day of week
! Range
|-
| 0
| Monday
| 1-7: Monday = 1, Tuesday = 2, …, Sunday = 7
|-
| 1
| Monday
| 0-6: Monday = 0, Tuesday = 1, …, Sunday = 6
|-
| 2
| Sunday
| 0-6: Sunday = 0, Monday = 1, …, Saturday = 6
|-
| 3
| Sunday
| 1-7: Sunday = 1, Monday = 2, …, Saturday = 7
|}
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toDayOfWeek(t[, mode[, timezone]])</syntaxhighlight>
Alias: <code>DAYOFWEEK</code>.
 
'''Arguments'''
 
* <code>t</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>mode</code> - determines what the first day of the week is. Possible values are 0, 1, 2 or 3. See the table above for the differences.
* <code>timezone</code> - optional parameter, it behaves like any other conversion function
 
The first argument can also be specified as [[Relational_Data_-_Data_Types_-_String|String]] in a format supported by [[Relational_Data_-_Functions_-_Type_Conversion_Functions#parsedatetime64besteffort|parseDateTime64BestEffort()]]. Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.
 
'''Returned value'''
 
* The day of the week (1-7), depending on the chosen mode, of the given date/time
 
'''Example'''
 
The following date is April 21, 2023, which was a Friday:
 
<syntaxhighlight lang="sql">SELECT
    toDayOfWeek(toDateTime('2023-04-21')),
    toDayOfWeek(toDateTime('2023-04-21'), 1)</syntaxhighlight>
Result:
 
<pre class="response">┌─toDayOfWeek(toDateTime('2023-04-21'))─┬─toDayOfWeek(toDateTime('2023-04-21'), 1)─┐
│                                    5 │                                        4 │
└───────────────────────────────────────┴──────────────────────────────────────────┘</pre>
<span id="tohour"></span>
== toHour ==
 
Returns the hour component (0-24) of a date with time.
 
Assumes that if clocks are moved ahead, it is by one hour and occurs at 2 a.m., and if clocks are moved back, it is by one hour and occurs at 3 a.m. (which is not always exactly when it occurs - it depends on the timezone).
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toHour(value)</syntaxhighlight>
Alias: <code>HOUR</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The hour of the day (0 - 23) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toHour(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toHour(toDateTime('2023-04-21 10:20:30'))─┐
│                                        10 │
└───────────────────────────────────────────┘</pre>
<span id="tominute"></span>
== toMinute ==
 
Returns the minute component (0-59) a date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toMinute(value)</syntaxhighlight>
Alias: <code>MINUTE</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The minute of the hour (0 - 59) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toMinute(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toMinute(toDateTime('2023-04-21 10:20:30'))─┐
│                                          20 │
└─────────────────────────────────────────────┘</pre>
<span id="tosecond"></span>
== toSecond ==
 
Returns the second component (0-59) of a date with time. Leap seconds are not considered.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toSecond(value)</syntaxhighlight>
Alias: <code>SECOND</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The second in the minute (0 - 59) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt8]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toSecond(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toSecond(toDateTime('2023-04-21 10:20:30'))─┐
│                                          30 │
└─────────────────────────────────────────────┘</pre>
<span id="tomillisecond"></span>
== toMillisecond ==
 
Returns the millisecond component (0-999) of a date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toMillisecond(value)</syntaxhighlight>
*Arguments**
 
* <code>value</code> - [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
Alias: <code>MILLISECOND</code>
 
<syntaxhighlight lang="sql">SELECT toMillisecond(toDateTime64('2023-04-21 10:20:30.456', 3))</syntaxhighlight>
Result:
 
<pre class="response">┌──toMillisecond(toDateTime64('2023-04-21 10:20:30.456', 3))─┐
│                                                        456 │
└────────────────────────────────────────────────────────────┘</pre>
'''Returned value'''
 
* The millisecond in the minute (0 - 59) of the given date/time. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt16]].
 
<span id="tounixtimestamp"></span>
== toUnixTimestamp ==
 
Converts a string, a date or a date with time to the [https://en.wikipedia.org/wiki/Unix_time Unix Timestamp] in <code>UInt32</code> representation.
 
If the function is called with a string, it accepts an optional timezone argument.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toUnixTimestamp(date)
toUnixTimestamp(str, [timezone])</syntaxhighlight>
'''Returned value'''
 
* Returns the unix timestamp. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt32]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    '2017-11-05 08:07:47' AS dt_str,
    toUnixTimestamp(dt_str) AS from_str,
    toUnixTimestamp(dt_str, 'Asia/Tokyo') AS from_str_tokyo,
    toUnixTimestamp(toDateTime(dt_str)) AS from_datetime,
    toUnixTimestamp(toDateTime64(dt_str, 0)) AS from_datetime64,
    toUnixTimestamp(toDate(dt_str)) AS from_date,
    toUnixTimestamp(toDate32(dt_str)) AS from_date32
FORMAT Vertical;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">Row 1:
──────
dt_str:          2017-11-05 08:07:47
from_str:        1509869267
from_str_tokyo:  1509836867
from_datetime:  1509869267
from_datetime64: 1509869267
from_date:      1509840000
from_date32:    1509840000</syntaxhighlight>
<div class="note">
 
The return type of <code>toStartOf*</code>, <code>toLastDayOf*</code>, <code>toMonday</code>, <code>timeSlot</code> functions described below is determined by the configuration parameter [https://clickhouse.com/docs/en/operations/settings/settings#enable-extended-results-for-datetime-functions enable_extended_results_for_datetime_functions] which is <code>0</code> by default.
 
Behavior for * <code>enable_extended_results_for_datetime_functions = 0</code>: * Functions <code>toStartOfYear</code>, <code>toStartOfISOYear</code>, <code>toStartOfQuarter</code>, <code>toStartOfMonth</code>, <code>toStartOfWeek</code>, <code>toLastDayOfWeek</code>, <code>toLastDayOfMonth</code>, <code>toMonday</code> return <code>Date</code> or <code>DateTime</code>. * Functions <code>toStartOfDay</code>, <code>toStartOfHour</code>, <code>toStartOfFifteenMinutes</code>, <code>toStartOfTenMinutes</code>, <code>toStartOfFiveMinutes</code>, <code>toStartOfMinute</code>, <code>timeSlot</code> return <code>DateTime</code>. Though these functions can take values of the extended types <code>Date32</code> and <code>DateTime64</code> as an argument, passing them a time outside the normal range (year 1970 to 2149 for <code>Date</code> / 2106 for <code>DateTime</code>) will produce wrong results. * <code>enable_extended_results_for_datetime_functions = 1</code>: * Functions <code>toStartOfYear</code>, <code>toStartOfISOYear</code>, <code>toStartOfQuarter</code>, <code>toStartOfMonth</code>, <code>toStartOfWeek</code>, <code>toLastDayOfWeek</code>, <code>toLastDayOfMonth</code>, <code>toMonday</code> return <code>Date</code> or <code>DateTime</code> if their argument is a <code>Date</code> or <code>DateTime</code>, and they return <code>Date32</code> or <code>DateTime64</code> if their argument is a <code>Date32</code> or <code>DateTime64</code>. * Functions <code>toStartOfDay</code>, <code>toStartOfHour</code>, <code>toStartOfFifteenMinutes</code>, <code>toStartOfTenMinutes</code>, <code>toStartOfFiveMinutes</code>, <code>toStartOfMinute</code>, <code>timeSlot</code> return <code>DateTime</code> if their argument is a <code>Date</code> or <code>DateTime</code>, and they return <code>DateTime64</code> if their argument is a <code>Date32</code> or <code>DateTime64</code>.
 
 
</div>
<span id="tostartofyear"></span>
== toStartOfYear ==
 
Rounds down a date or date with time to the first day of the year. Returns the date as a <code>Date</code> object.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfYear(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The first day of the year of the input date/time. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toStartOfYear(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                      2023-01-01 │
└──────────────────────────────────────────────────┘</pre>
<span id="tostartofisoyear"></span>
== toStartOfISOYear ==
 
Rounds down a date or date with time to the first day of the ISO year, which can be different than a “regular” year. (See https://en.wikipedia.org/wiki/ISO_week_date.)
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfISOYear(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The first day of the year of the input date/time. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toStartOfISOYear(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfISOYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-01-02 │
└─────────────────────────────────────────────────────┘</pre>
<span id="tostartofquarter"></span>
== toStartOfQuarter ==
 
Rounds down a date or date with time to the first day of the quarter. The first day of the quarter is either 1 January, 1 April, 1 July, or 1 October. Returns the date.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfQuarter(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The first day of the quarter of the given date/time. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toStartOfQuarter(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfQuarter(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-04-01 │
└─────────────────────────────────────────────────────┘</pre>
<span id="tostartofmonth"></span>
== toStartOfMonth ==
 
Rounds down a date or date with time to the first day of the month. Returns the date.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfMonth(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The first day of the month of the given date/time. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toStartOfMonth(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                        2023-04-01 │
└───────────────────────────────────────────────────┘</pre>
<div class="note">
 
The behavior of parsing incorrect dates is implementation specific. ClickHouse may return zero date, throw an exception, or do “natural” overflow.
 
 
</div>
<span id="tolastdayofmonth"></span>
== toLastDayOfMonth ==
 
Rounds a date or date with time to the last day of the month. Returns the date.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toLastDayOfMonth(value)</syntaxhighlight>
Alias: <code>LAST_DAY</code>
 
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The last day of the month of the given date/time=. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toLastDayOfMonth(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toLastDayOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-04-30 │
└─────────────────────────────────────────────────────┘</pre>
<span id="tomonday"></span>
== toMonday ==
 
Rounds down a date or date with time to the nearest Monday. Returns the date.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toMonday(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The date of the nearest Monday on or prior to the given date. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toMonday(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toMonday(toDate('2023-04-24')), /* already a Monday */</syntaxhighlight>
Result:
 
<pre class="response">┌─toMonday(toDateTime('2023-04-21 10:20:30'))─┬─toMonday(toDate('2023-04-24'))─┐
│                                  2023-04-17 │                    2023-04-24 │
└─────────────────────────────────────────────┴────────────────────────────────┘</pre>
<span id="tostartofweek"></span>
== toStartOfWeek ==
 
Rounds a date or date with time down to the nearest Sunday or Monday. Returns the date. The mode argument works exactly like the mode argument in function <code>toWeek()</code>. If no mode is specified, it defaults to 0.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfWeek(t[, mode[, timezone]])</syntaxhighlight>
'''Arguments'''
 
* <code>t</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>mode</code> - determines the first day of the week as described in the [[#toweek|toWeek()]] function
* <code>timezone</code> - Optional parameter, it behaves like any other conversion function
 
'''Returned value'''
 
* The date of the nearest Sunday or Monday on or prior to the given date, depending on the mode. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfWeek(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toStartOfWeek(toDateTime('2023-04-21 10:20:30'), 1), /* a Friday */
    toStartOfWeek(toDate('2023-04-24')), /* a Monday */
    toStartOfWeek(toDate('2023-04-24'), 1) /* a Monday */
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toStartOfWeek(toDateTime('2023-04-21 10:20:30')):    2023-04-16
toStartOfWeek(toDateTime('2023-04-21 10:20:30'), 1): 2023-04-17
toStartOfWeek(toDate('2023-04-24')):                2023-04-23
toStartOfWeek(toDate('2023-04-24'), 1):              2023-04-24</pre>
<span id="tolastdayofweek"></span>
== toLastDayOfWeek ==
 
Rounds a date or date with time up to the nearest Saturday or Sunday. Returns the date. The mode argument works exactly like the mode argument in function <code>toWeek()</code>. If no mode is specified, mode is assumed as 0.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toLastDayOfWeek(t[, mode[, timezone]])</syntaxhighlight>
'''Arguments'''
 
* <code>t</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>mode</code> - determines the last day of the week as described in the [[#toweek|toWeek]] function
* <code>timezone</code> - Optional parameter, it behaves like any other conversion function
 
'''Returned value'''
 
* The date of the nearest Sunday or Monday on or after the given date, depending on the mode. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toLastDayOfWeek(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toLastDayOfWeek(toDateTime('2023-04-21 10:20:30'), 1), /* a Friday */
    toLastDayOfWeek(toDate('2023-04-22')), /* a Saturday */
    toLastDayOfWeek(toDate('2023-04-22'), 1) /* a Saturday */
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toLastDayOfWeek(toDateTime('2023-04-21 10:20:30')):    2023-04-22
toLastDayOfWeek(toDateTime('2023-04-21 10:20:30'), 1): 2023-04-23
toLastDayOfWeek(toDate('2023-04-22')):                2023-04-22
toLastDayOfWeek(toDate('2023-04-22'), 1):              2023-04-23</pre>
<span id="tostartofday"></span>
== toStartOfDay ==
 
Rounds down a date with time to the start of the day.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfDay(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the day of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toStartOfDay(toDateTime('2023-04-21 10:20:30'))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfDay(toDateTime('2023-04-21 10:20:30'))─┐
│                            2023-04-21 00:00:00 │
└─────────────────────────────────────────────────┘</pre>
<span id="tostartofhour"></span>
== toStartOfHour ==
 
Rounds down a date with time to the start of the hour.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfHour(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the hour of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfHour(toDateTime('2023-04-21 10:20:30')),
    toStartOfHour(toDateTime64('2023-04-21', 6))</syntaxhighlight>
Result:
 
<pre class="response">┌─toStartOfHour(toDateTime('2023-04-21 10:20:30'))─┬─toStartOfHour(toDateTime64('2023-04-21', 6))─┐
│                              2023-04-21 10:00:00 │                          2023-04-21 00:00:00 │
└──────────────────────────────────────────────────┴──────────────────────────────────────────────┘</pre>
<span id="tostartofminute"></span>
== toStartOfMinute ==
 
Rounds down a date with time to the start of the minute.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfMinute(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the minute of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfMinute(toDateTime('2023-04-21 10:20:30')),
    toStartOfMinute(toDateTime64('2023-04-21 10:20:30.5300', 8))
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toStartOfMinute(toDateTime('2023-04-21 10:20:30')):          2023-04-21 10:20:00
toStartOfMinute(toDateTime64('2023-04-21 10:20:30.5300', 8)): 2023-04-21 10:20:00</pre>
<span id="tostartofsecond"></span>
== toStartOfSecond ==
 
Truncates sub-seconds.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfSecond(value, [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional). If not specified, the function uses the timezone of the <code>value</code> parameter. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Input value without sub-seconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Examples'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999', 3) AS dt64
SELECT toStartOfSecond(dt64);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───toStartOfSecond(dt64)─┐
│ 2020-01-01 10:20:30.000 │
└─────────────────────────┘</syntaxhighlight>
Query with timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999', 3) AS dt64
SELECT toStartOfSecond(dt64, 'Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toStartOfSecond(dt64, 'Asia/Istanbul')─┐
│                2020-01-01 13:20:30.000 │
└────────────────────────────────────────┘</syntaxhighlight>
'''See also'''
 
* [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] server configuration parameter.
 
<span id="tostartofmillisecond"></span>
== toStartOfMillisecond ==
 
Rounds down a date with time to the start of the milliseconds.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfMillisecond(value, [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional). If not specified, the function uses the timezone of the <code>value</code> parameter. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Input value with sub-milliseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Examples'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMillisecond(dt64);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌────toStartOfMillisecond(dt64)─┐
│ 2020-01-01 10:20:30.999000000 │
└───────────────────────────────┘</syntaxhighlight>
Query with timezone:
 
<syntaxhighlight lang="sql">┌─toStartOfMillisecond(dt64, 'Asia/Istanbul')─┐
│              2020-01-01 12:20:30.999000000 │
└─────────────────────────────────────────────┘</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toStartOfMillisecond(dt64, 'Asia/Istanbul')─┐
│                    2020-01-01 12:20:30.999 │
└─────────────────────────────────────────────┘</syntaxhighlight>
<span id="tostartofmicrosecond"></span>
== toStartOfMicrosecond ==
 
Rounds down a date with time to the start of the microseconds.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfMicrosecond(value, [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional). If not specified, the function uses the timezone of the <code>value</code> parameter. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Input value with sub-microseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Examples'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMicrosecond(dt64);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌────toStartOfMicrosecond(dt64)─┐
│ 2020-01-01 10:20:30.999999000 │
└───────────────────────────────┘</syntaxhighlight>
Query with timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMicrosecond(dt64, 'Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toStartOfMicrosecond(dt64, 'Asia/Istanbul')─┐
│              2020-01-01 12:20:30.999999000 │
└─────────────────────────────────────────────┘</syntaxhighlight>
'''See also'''
 
* [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] server configuration parameter.
 
<span id="tostartofnanosecond"></span>
== toStartOfNanosecond ==
 
Rounds down a date with time to the start of the nanoseconds.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfNanosecond(value, [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional). If not specified, the function uses the timezone of the <code>value</code> parameter. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Input value with nanoseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Examples'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfNanosecond(dt64);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─────toStartOfNanosecond(dt64)─┐
│ 2020-01-01 10:20:30.999999999 │
└───────────────────────────────┘</syntaxhighlight>
Query with timezone:
 
<syntaxhighlight lang="sql">WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfNanosecond(dt64, 'Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toStartOfNanosecond(dt64, 'Asia/Istanbul')─┐
│              2020-01-01 12:20:30.999999999 │
└────────────────────────────────────────────┘</syntaxhighlight>
'''See also'''
 
* [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] server configuration parameter.
 
<span id="tostartoffiveminutes"></span>
== toStartOfFiveMinutes ==
 
Rounds down a date with time to the start of the five-minute interval.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfFiveMinutes(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the five-minute interval of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toStartOfFiveMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:15:00
toStartOfFiveMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:20:00
toStartOfFiveMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:20:00</pre>
<span id="tostartoftenminutes"></span>
== toStartOfTenMinutes ==
 
Rounds down a date with time to the start of the ten-minute interval.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfTenMinutes(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the ten-minute interval of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfTenMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfTenMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfTenMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toStartOfTenMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:10:00
toStartOfTenMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:20:00
toStartOfTenMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:20:00</pre>
<span id="tostartoffifteenminutes"></span>
== toStartOfFifteenMinutes ==
 
Rounds down the date with time to the start of the fifteen-minute interval.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toStartOfFifteenMinutes(value)</syntaxhighlight>
'''Arguments'''
 
* <code>value</code> - a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
 
'''Returned value'''
 
* The start of the fifteen-minute interval of the given date/time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical</syntaxhighlight>
Result:
 
<pre class="response">Row 1:
──────
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:15:00
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:15:00
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:15:00</pre>
<span id="tostartofinterval"></span>
== toStartOfInterval ==
 
This function generalizes other <code>toStartOf*()</code> functions with <code>toStartOfInterval(date_or_date_with_time, INTERVAL x unit [, time_zone])</code> syntax. For example, - <code>toStartOfInterval(t, INTERVAL 1 YEAR)</code> returns the same as <code>toStartOfYear(t)</code>, - <code>toStartOfInterval(t, INTERVAL 1 MONTH)</code> returns the same as <code>toStartOfMonth(t)</code>, - <code>toStartOfInterval(t, INTERVAL 1 DAY)</code> returns the same as <code>toStartOfDay(t)</code>, - <code>toStartOfInterval(t, INTERVAL 15 MINUTE)</code> returns the same as <code>toStartOfFifteenMinutes(t)</code>.
 
The calculation is performed relative to specific points in time:
 
{| class="wikitable"
|-
! Interval
! Start
|-
| YEAR
| year 0
|-
| QUARTER
| 1900 Q1
|-
| MONTH
| 1900 January
|-
| WEEK
| 1970, 1st week (01-05)
|-
| DAY
| 1970-01-01
|-
| HOUR
| (*)
|-
| MINUTE
| 1970-01-01 00:00:00
|-
| SECOND
| 1970-01-01 00:00:00
|-
| MILLISECOND
| 1970-01-01 00:00:00
|-
| MICROSECOND
| 1970-01-01 00:00:00
|-
| NANOSECOND
| 1970-01-01 00:00:00
|}
 
(*) hour intervals are special: the calculation is always performed relative to 00:00:00 (midnight) of the current day. As a result, only hour values between 1 and 23 are useful.
 
If unit <code>WEEK</code> was specified, <code>toStartOfInterval</code> assumes that weeks start on Monday. Note that this behavior is different from that of function <code>toStartOfWeek</code> in which weeks start by default on Sunday.
 
'''See Also'''
 
* [[#date_trunc|date_trunc]]
 
<span id="totime"></span>
== toTime ==
 
Converts a date with time to a certain fixed date, while preserving the time.
 
<span id="torelativeyearnum"></span>
== toRelativeYearNum ==
 
Converts a date, or date with time, to the number of the year, starting from a certain fixed point in the past.
 
<span id="torelativequarternum"></span>
== toRelativeQuarterNum ==
 
Converts a date, or date with time, to the number of the quarter, starting from a certain fixed point in the past.
 
<span id="torelativemonthnum"></span>
== toRelativeMonthNum ==
 
Converts a date, or date with time, to the number of the month, starting from a certain fixed point in the past.
 
<span id="torelativeweeknum"></span>
== toRelativeWeekNum ==
 
Converts a date, or date with time, to the number of the week, starting from a certain fixed point in the past.
 
<span id="torelativedaynum"></span>
== toRelativeDayNum ==
 
Converts a date, or date with time, to the number of the day, starting from a certain fixed point in the past.
 
<span id="torelativehournum"></span>
== toRelativeHourNum ==
 
Converts a date, or date with time, to the number of the hour, starting from a certain fixed point in the past.
 
<span id="torelativeminutenum"></span>
== toRelativeMinuteNum ==
 
Converts a date, or date with time, to the number of the minute, starting from a certain fixed point in the past.
 
<span id="torelativesecondnum"></span>
== toRelativeSecondNum ==
 
Converts a date, or date with time, to the number of the second, starting from a certain fixed point in the past.
 
<span id="toisoyear"></span>
== toISOYear ==
 
Converts a date, or date with time, to a UInt16 number containing the ISO Year number.
 
<span id="toisoweek"></span>
== toISOWeek ==
 
Converts a date, or date with time, to a UInt8 number containing the ISO Week number.
 
<span id="toweek"></span>
== toWeek ==
 
This function returns the week number for date or datetime. The two-argument form of <code>toWeek()</code> enables you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range from 0 to 53 or from 1 to 53. If the mode argument is omitted, the default mode is 0.
 
<code>toISOWeek()</code> is a compatibility function that is equivalent to <code>toWeek(date,3)</code>.
 
The following table describes how the mode argument works.
 
{| class="wikitable"
|-
! Mode
! First day of week
! Range
! Week 1 is the first week …
|-
| 0
| Sunday
| 0-53
| with a Sunday in this year
|-
| 1
| Monday
| 0-53
| with 4 or more days this year
|-
| 2
| Sunday
| 1-53
| with a Sunday in this year
|-
| 3
| Monday
| 1-53
| with 4 or more days this year
|-
| 4
| Sunday
| 0-53
| with 4 or more days this year
|-
| 5
| Monday
| 0-53
| with a Monday in this year
|-
| 6
| Sunday
| 1-53
| with 4 or more days this year
|-
| 7
| Monday
| 1-53
| with a Monday in this year
|-
| 8
| Sunday
| 1-53
| contains January 1
|-
| 9
| Monday
| 1-53
| contains January 1
|}
 
For mode values with a meaning of “with 4 or more days this year,” weeks are numbered according to ISO 8601:1988:
 
* If the week containing January 1 has 4 or more days in the new year, it is week 1.
* Otherwise, it is the last week of the previous year, and the next week is week 1.
 
For mode values with a meaning of “contains January 1”, the week contains January 1 is week 1. It does not matter how many days in the new year the week contained, even if it contained only one day. I.e. if the last week of December contains January 1 of the next year, it will be week 1 of the next year.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toWeek(t[, mode[, time_zone]])</syntaxhighlight>
Alias: <code>WEEK</code>
 
'''Arguments'''
 
* <code>t</code> – Date or DateTime.
* <code>mode</code> – Optional parameter, Range of values is [0,9], default is 0.
* <code>Timezone</code> – Optional parameter, it behaves like any other conversion function.
 
The first argument can also be specified as [[Relational_Data_-_Data_Types_-_String|String]] in a format supported by [[Relational_Data_-_Functions_-_Type_Conversion_Functions#parsedatetime64besteffort|parseDateTime64BestEffort()]]. Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDate('2016-12-27') AS date, toWeek(date) AS week0, toWeek(date,1) AS week1, toWeek(date,9) AS week9;</syntaxhighlight>
<syntaxhighlight lang="text">┌───────date─┬─week0─┬─week1─┬─week9─┐
│ 2016-12-27 │    52 │    52 │    1 │
└────────────┴───────┴───────┴───────┘</syntaxhighlight>
<span id="toyearweek"></span>
== toYearWeek ==
 
Returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year.
 
The mode argument works like the mode argument to <code>toWeek()</code>. For the single-argument syntax, a mode value of 0 is used.
 
<code>toISOYear()</code> is a compatibility function that is equivalent to <code>intDiv(toYearWeek(date,3),100)</code>.
 
<div class="warning">
 
The week number returned by <code>toYearWeek()</code> can be different from what the <code>toWeek()</code> returns. <code>toWeek()</code> always returns week number in the context of the given year, and in case <code>toWeek()</code> returns <code>0</code>, <code>toYearWeek()</code> returns the value corresponding to the last week of previous year. See <code>prev_yearWeek</code> in example below.
 
 
</div>
'''Syntax'''
 
<syntaxhighlight lang="sql">toYearWeek(t[, mode[, timezone]])</syntaxhighlight>
Alias: <code>YEARWEEK</code>
 
The first argument can also be specified as [[Relational_Data_-_Data_Types_-_String|String]] in a format supported by [[Relational_Data_-_Functions_-_Type_Conversion_Functions#parsedatetime64besteffort|parseDateTime64BestEffort()]]. Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDate('2016-12-27') AS date, toYearWeek(date) AS yearWeek0, toYearWeek(date,1) AS yearWeek1, toYearWeek(date,9) AS yearWeek9, toYearWeek(toDate('2022-01-01')) AS prev_yearWeek;</syntaxhighlight>
<syntaxhighlight lang="text">┌───────date─┬─yearWeek0─┬─yearWeek1─┬─yearWeek9─┬─prev_yearWeek─┐
│ 2016-12-27 │    201652 │    201652 │    201701 │        202152 │
└────────────┴───────────┴───────────┴───────────┴───────────────┘</syntaxhighlight>
<span id="todayssinceyearzero"></span>
== toDaysSinceYearZero ==
 
Returns for a given date, the number of days passed since [https://en.wikipedia.org/wiki/Year_zero 1 January 0000] in the [https://en.wikipedia.org/wiki/Gregorian_calendar#Proleptic_Gregorian_calendar proleptic Gregorian calendar defined by ISO 8601]. The calculation is the same as in MySQL’s [https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_to-days <code>TO_DAYS()</code>] function.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">toDaysSinceYearZero(date[, time_zone])</syntaxhighlight>
Alias: <code>TO_DAYS</code>
 
'''Arguments'''
 
* <code>date</code> — The date to calculate the number of days passed since year zero from. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>time_zone</code> — A String type const value or an expression represent the time zone. [[Relational_Data_-_Data_Types_-_String|String types]]
 
'''Returned value'''
 
The number of days passed since date 0000-01-01. [[Relational_Data_-_Data_Types_-_Int_Uint|UInt32]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toDaysSinceYearZero(toDate('2023-09-08'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toDaysSinceYearZero(toDate('2023-09-08')))─┐
│                                    713569 │
└────────────────────────────────────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#fromdayssinceyearzero|fromDaysSinceYearZero]]
 
<span id="fromdayssinceyearzero"></span>
== fromDaysSinceYearZero ==
 
Returns for a given number of days passed since [https://en.wikipedia.org/wiki/Year_zero 1 January 0000] the corresponding date in the [https://en.wikipedia.org/wiki/Gregorian_calendar#Proleptic_Gregorian_calendar proleptic Gregorian calendar defined by ISO 8601]. The calculation is the same as in MySQL’s [https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_from-days <code>FROM_DAYS()</code>] function.
 
The result is undefined if it cannot be represented within the bounds of the [[Relational_Data_-_Data_Types_-_Date|Date]] type.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">fromDaysSinceYearZero(days)</syntaxhighlight>
Alias: <code>FROM_DAYS</code>
 
'''Arguments'''
 
* <code>days</code> — The number of days passed since year zero.
 
'''Returned value'''
 
The date corresponding to the number of days passed since year zero. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT fromDaysSinceYearZero(739136), fromDaysSinceYearZero(toDaysSinceYearZero(toDate('2023-09-08')));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─fromDaysSinceYearZero(739136)─┬─fromDaysSinceYearZero(toDaysSinceYearZero(toDate('2023-09-08')))─┐
│                    2023-09-08 │                                                      2023-09-08 │
└───────────────────────────────┴──────────────────────────────────────────────────────────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#todayssinceyearzero|toDaysSinceYearZero]]
 
<span id="fromdayssinceyearzero32"></span>
== fromDaysSinceYearZero32 ==
 
Like [[#fromdayssinceyearzero|fromDaysSinceYearZero]] but returns a [[Relational_Data_-_Data_Types_-_Date32|Date32]].
 
== age ==
 
Returns the <code>unit</code> component of the difference between <code>startdate</code> and <code>enddate</code>. The difference is calculated using a precision of 1 nanosecond. E.g. the difference between <code>2021-12-29</code> and <code>2022-01-01</code> is 3 days for <code>day</code> unit, 0 months for <code>month</code> unit, 0 years for <code>year</code> unit.
 
For an alternative to <code>age</code>, see function <code>date_diff</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">age('unit', startdate, enddate, [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>unit</code> — The type of interval for result. [[Relational_Data_-_Data_Types_-_String|String]]. Possible values:
** <code>nanosecond</code>, <code>nanoseconds</code>, <code>ns</code>
** <code>microsecond</code>, <code>microseconds</code>, <code>us</code>, <code>u</code>
** <code>millisecond</code>, <code>milliseconds</code>, <code>ms</code>
** <code>second</code>, <code>seconds</code>, <code>ss</code>, <code>s</code>
** <code>minute</code>, <code>minutes</code>, <code>mi</code>, <code>n</code>
** <code>hour</code>, <code>hours</code>, <code>hh</code>, <code>h</code>
** <code>day</code>, <code>days</code>, <code>dd</code>, <code>d</code>
** <code>week</code>, <code>weeks</code>, <code>wk</code>, <code>ww</code>
** <code>month</code>, <code>months</code>, <code>mm</code>, <code>m</code>
** <code>quarter</code>, <code>quarters</code>, <code>qq</code>, <code>q</code>
** <code>year</code>, <code>years</code>, <code>yyyy</code>, <code>yy</code>
* <code>startdate</code> — The first time value to subtract (the subtrahend). [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>enddate</code> — The second time value to subtract from (the minuend). [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] (optional). If specified, it is applied to both <code>startdate</code> and <code>enddate</code>. If not specified, timezones of <code>startdate</code> and <code>enddate</code> are used. If they are not the same, the result is unspecified. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
Difference between <code>enddate</code> and <code>startdate</code> expressed in <code>unit</code>. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT age('hour', toDateTime('2018-01-01 22:30:00'), toDateTime('2018-01-02 23:00:00'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─age('hour', toDateTime('2018-01-01 22:30:00'), toDateTime('2018-01-02 23:00:00'))─┐
│                                                                                24 │
└───────────────────────────────────────────────────────────────────────────────────┘</syntaxhighlight>
<syntaxhighlight lang="sql">SELECT
    toDate('2022-01-01') AS e,
    toDate('2021-12-29') AS s,
    age('day', s, e) AS day_age,
    age('month', s, e) AS month__age,
    age('year', s, e) AS year_age;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌──────────e─┬──────────s─┬─day_age─┬─month__age─┬─year_age─┐
│ 2022-01-01 │ 2021-12-29 │      3 │          0 │        0 │
└────────────┴────────────┴─────────┴────────────┴──────────┘</syntaxhighlight>
== date_diff ==
 
Returns the count of the specified <code>unit</code> boundaries crossed between the <code>startdate</code> and the <code>enddate</code>. The difference is calculated using relative units, e.g. the difference between <code>2021-12-29</code> and <code>2022-01-01</code> is 3 days for unit <code>day</code> (see [[#torelativedaynum|toRelativeDayNum]]), 1 month for unit <code>month</code> (see [[#torelativemonthnum|toRelativeMonthNum]]) and 1 year for unit <code>year</code> (see [[#torelativeyearnum|toRelativeYearNum]]).
 
If unit <code>week</code> was specified, <code>date_diff</code> assumes that weeks start on Monday. Note that this behavior is different from that of function <code>toWeek()</code> in which weeks start by default on Sunday.
 
For an alternative to <code>date_diff</code>, see function <code>age</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">date_diff('unit', startdate, enddate, [timezone])</syntaxhighlight>
Aliases: <code>dateDiff</code>, <code>DATE_DIFF</code>, <code>timestampDiff</code>, <code>timestamp_diff</code>, <code>TIMESTAMP_DIFF</code>.
 
'''Arguments'''
 
* <code>unit</code> — The type of interval for result. [[Relational_Data_-_Data_Types_-_String|String]]. Possible values:
** <code>nanosecond</code>, <code>nanoseconds</code>, <code>ns</code>
** <code>microsecond</code>, <code>microseconds</code>, <code>us</code>, <code>u</code>
** <code>millisecond</code>, <code>milliseconds</code>, <code>ms</code>
** <code>second</code>, <code>seconds</code>, <code>ss</code>, <code>s</code>
** <code>minute</code>, <code>minutes</code>, <code>mi</code>, <code>n</code>
** <code>hour</code>, <code>hours</code>, <code>hh</code>, <code>h</code>
** <code>day</code>, <code>days</code>, <code>dd</code>, <code>d</code>
** <code>week</code>, <code>weeks</code>, <code>wk</code>, <code>ww</code>
** <code>month</code>, <code>months</code>, <code>mm</code>, <code>m</code>
** <code>quarter</code>, <code>quarters</code>, <code>qq</code>, <code>q</code>
** <code>year</code>, <code>years</code>, <code>yyyy</code>, <code>yy</code>
* <code>startdate</code> — The first time value to subtract (the subtrahend). [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>enddate</code> — The second time value to subtract from (the minuend). [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] (optional). If specified, it is applied to both <code>startdate</code> and <code>enddate</code>. If not specified, timezones of <code>startdate</code> and <code>enddate</code> are used. If they are not the same, the result is unspecified. [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
Difference between <code>enddate</code> and <code>startdate</code> expressed in <code>unit</code>. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT dateDiff('hour', toDateTime('2018-01-01 22:00:00'), toDateTime('2018-01-02 23:00:00'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─dateDiff('hour', toDateTime('2018-01-01 22:00:00'), toDateTime('2018-01-02 23:00:00'))─┐
│                                                                                    25 │
└────────────────────────────────────────────────────────────────────────────────────────┘</syntaxhighlight>
<syntaxhighlight lang="sql">SELECT
    toDate('2022-01-01') AS e,
    toDate('2021-12-29') AS s,
    dateDiff('day', s, e) AS day_diff,
    dateDiff('month', s, e) AS month__diff,
    dateDiff('year', s, e) AS year_diff;</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌──────────e─┬──────────s─┬─day_diff─┬─month__diff─┬─year_diff─┐
│ 2022-01-01 │ 2021-12-29 │        3 │          1 │        1 │
└────────────┴────────────┴──────────┴─────────────┴───────────┘</syntaxhighlight>
== date_trunc ==
 
Truncates date and time data to the specified part of date.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">date_trunc(unit, value[, timezone])</syntaxhighlight>
Alias: <code>dateTrunc</code>.
 
'''Arguments'''
 
<ul>
<li><p><code>unit</code> — The type of interval to truncate the result. [[Relational_Data_-_Syntax#syntax-string-literal|String Literal]]. Possible values:</p>
<ul>
<li><code>nanosecond</code> - Compatible only with DateTime64</li>
<li><code>microsecond</code> - Compatible only with DateTime64</li>
<li><code>milisecond</code> - Compatible only with DateTime64</li>
<li><code>second</code></li>
<li><code>minute</code></li>
<li><code>hour</code></li>
<li><code>day</code></li>
<li><code>week</code></li>
<li><code>month</code></li>
<li><code>quarter</code></li>
<li><code>year</code></li></ul>
 
<p><code>unit</code> argument is case-insensitive.</p></li>
<li><p><code>value</code> — Date and time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].</p></li>
<li><p><code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] for the returned value (optional). If not specified, the function uses the timezone of the <code>value</code> parameter. [[Relational_Data_-_Data_Types_-_String|String]].</p></li></ul>
 
'''Returned value'''
 
* Value, truncated to the specified part of date. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">SELECT now(), date_trunc('hour', now());</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────────────now()─┬─date_trunc('hour', now())─┐
│ 2020-09-28 10:40:45 │      2020-09-28 10:00:00 │
└─────────────────────┴───────────────────────────┘</syntaxhighlight>
Query with the specified timezone:
 
<syntaxhighlight lang="sql">SELECT now(), date_trunc('hour', now(), 'Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────────────now()─┬─date_trunc('hour', now(), 'Asia/Istanbul')─┐
│ 2020-09-28 10:46:26 │                        2020-09-28 13:00:00 │
└─────────────────────┴────────────────────────────────────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#tostartofinterval|toStartOfInterval]]
 
== date_add ==
 
Adds the time interval or date interval to the provided date or date with time.
 
If the addition results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">date_add(unit, value, date)</syntaxhighlight>
Alternative syntax:
 
<syntaxhighlight lang="sql">date_add(date, INTERVAL value unit)</syntaxhighlight>
Aliases: <code>dateAdd</code>, <code>DATE_ADD</code>.
 
'''Arguments'''
 
* <code>unit</code> — The type of interval to add. Note: This is not a [[Relational_Data_-_Data_Types_-_String|String]] and must therefore not be quoted. Possible values:
** <code>second</code>
** <code>minute</code>
** <code>hour</code>
** <code>day</code>
** <code>week</code>
** <code>month</code>
** <code>quarter</code>
** <code>year</code>
* <code>value</code> — Value of interval to add. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].
* <code>date</code> — The date or date with time to which <code>value</code> is added. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Returned value'''
 
Date or date with time obtained by adding <code>value</code>, expressed in <code>unit</code>, to <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT date_add(YEAR, 3, toDate('2018-01-01'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─plus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2021-01-01 │
└───────────────────────────────────────────────┘</syntaxhighlight>
<syntaxhighlight lang="sql">SELECT date_add(toDate('2018-01-01'), INTERVAL 3 YEAR);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─plus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2021-01-01 │
└───────────────────────────────────────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#adddate|addDate]]
 
== date_sub ==
 
Subtracts the time interval or date interval from the provided date or date with time.
 
If the subtraction results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">date_sub(unit, value, date)</syntaxhighlight>
Alternative syntax:
 
<syntaxhighlight lang="sql">date_sub(date, INTERVAL value unit)</syntaxhighlight>
Aliases: <code>dateSub</code>, <code>DATE_SUB</code>.
 
'''Arguments'''
 
<ul>
<li><p><code>unit</code> — The type of interval to subtract. Note: This is not a [[Relational_Data_-_Data_Types_-_String|String]] and must therefore not be quoted.</p>
<p>Possible values:</p>
<ul>
<li><code>second</code></li>
<li><code>minute</code></li>
<li><code>hour</code></li>
<li><code>day</code></li>
<li><code>week</code></li>
<li><code>month</code></li>
<li><code>quarter</code></li>
<li><code>year</code></li></ul>
</li>
<li><p><code>value</code> — Value of interval to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].</p></li>
<li><p><code>date</code> — The date or date with time from which <code>value</code> is subtracted. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].</p></li></ul>
 
'''Returned value'''
 
Date or date with time obtained by subtracting <code>value</code>, expressed in <code>unit</code>, from <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT date_sub(YEAR, 3, toDate('2018-01-01'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─minus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2015-01-01 │
└────────────────────────────────────────────────┘</syntaxhighlight>
<syntaxhighlight lang="sql">SELECT date_sub(toDate('2018-01-01'), INTERVAL 3 YEAR);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─minus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2015-01-01 │
└────────────────────────────────────────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#subdate|subDate]]
 
== timestamp_add ==
 
Adds the specified time value with the provided date or date time value.
 
If the addition results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timestamp_add(date, INTERVAL value unit)</syntaxhighlight>
Aliases: <code>timeStampAdd</code>, <code>TIMESTAMP_ADD</code>.
 
'''Arguments'''
 
* <code>date</code> — Date or date with time. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>value</code> — Value of interval to add. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].
* <code>unit</code> — The type of interval to add. [[Relational_Data_-_Data_Types_-_String|String]]. Possible values:
** <code>second</code>
** <code>minute</code>
** <code>hour</code>
** <code>day</code>
** <code>week</code>
** <code>month</code>
** <code>quarter</code>
** <code>year</code>
 
'''Returned value'''
 
Date or date with time with the specified <code>value</code> expressed in <code>unit</code> added to <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">select timestamp_add(toDate('2018-01-01'), INTERVAL 3 MONTH);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─plus(toDate('2018-01-01'), toIntervalMonth(3))─┐
│                                    2018-04-01 │
└────────────────────────────────────────────────┘</syntaxhighlight>
== timestamp_sub ==
 
Subtracts the time interval from the provided date or date with time.
 
If the subtraction results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">timestamp_sub(unit, value, date)</syntaxhighlight>
Aliases: <code>timeStampSub</code>, <code>TIMESTAMP_SUB</code>.
 
'''Arguments'''
 
* <code>unit</code> — The type of interval to subtract. [[Relational_Data_-_Data_Types_-_String|String]]. Possible values:
** <code>second</code>
** <code>minute</code>
** <code>hour</code>
** <code>day</code>
** <code>week</code>
** <code>month</code>
** <code>quarter</code>
** <code>year</code>
* <code>value</code> — Value of interval to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|Int]].
* <code>date</code> — Date or date with time. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Returned value'''
 
Date or date with time obtained by subtracting <code>value</code>, expressed in <code>unit</code>, from <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">select timestamp_sub(MONTH, 5, toDateTime('2018-12-18 01:02:03'));</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─minus(toDateTime('2018-12-18 01:02:03'), toIntervalMonth(5))─┐
│                                          2018-07-18 01:02:03 │
└──────────────────────────────────────────────────────────────┘</syntaxhighlight>
<span id="adddate"></span>
== addDate ==
 
Adds the time interval to the provided date, date with time or String-encoded date / date with time.
 
If the addition results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addDate(date, interval)</syntaxhighlight>
'''Arguments'''
 
* <code>date</code> — The date or date with time to which <code>interval</code> is added. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]], [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], or [[Relational_Data_-_Data_Types_-_String|String]]
* <code>interval</code> — Interval to add. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval Interval].
 
'''Returned value'''
 
Date or date with time obtained by adding <code>interval</code> to <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT addDate(toDate('2018-01-01'), INTERVAL 3 YEAR);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─addDate(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                      2021-01-01 │
└──────────────────────────────────────────────────┘</syntaxhighlight>
Alias: <code>ADDDATE</code>
 
'''See Also'''
 
* [[#date_add|date_add]]
 
<span id="subdate"></span>
== subDate ==
 
Subtracts the time interval from the provided date, date with time or String-encoded date / date with time.
 
If the subtraction results in a value outside the bounds of the data type, the result is undefined.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subDate(date, interval)</syntaxhighlight>
'''Arguments'''
 
* <code>date</code> — The date or date with time from which <code>interval</code> is subtracted. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]], [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], or [[Relational_Data_-_Data_Types_-_String|String]]
* <code>interval</code> — Interval to subtract. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval Interval].
 
'''Returned value'''
 
Date or date with time obtained by subtracting <code>interval</code> from <code>date</code>. [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT subDate(toDate('2018-01-01'), INTERVAL 3 YEAR);</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─subDate(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                      2015-01-01 │
└──────────────────────────────────────────────────┘</syntaxhighlight>
Alias: <code>SUBDATE</code>
 
'''See Also'''
 
* [[#date_sub|date_sub]]
 
== now ==
 
Returns the current date and time at the moment of query analysis. The function is a constant expression.
 
Alias: <code>current_timestamp</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">now([timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] for the returned value (optional). [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Current date and time. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
Query without timezone:
 
<syntaxhighlight lang="sql">SELECT now();</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────────────now()─┐
│ 2020-10-17 07:42:09 │
└─────────────────────┘</syntaxhighlight>
Query with the specified timezone:
 
<syntaxhighlight lang="sql">SELECT now('Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─now('Asia/Istanbul')─┐
│  2020-10-17 10:42:23 │
└──────────────────────┘</syntaxhighlight>
== now64 ==
 
Returns the current date and time with sub-second precision at the moment of query analysis. The function is a constant expression.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">now64([scale], [timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>scale</code> - Tick size (precision): 10<sup>-precision</sup> seconds. Valid range: [ 0 : 9 ]. Typically, are used - 3 (default) (milliseconds), 6 (microseconds), 9 (nanoseconds).
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] for the returned value (optional). [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Current date and time with sub-second precision. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT now64(), now64(9, 'Asia/Istanbul');</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─────────────────now64()─┬─────now64(9, 'Asia/Istanbul')─┐
│ 2022-08-21 19:34:26.196 │ 2022-08-21 22:34:26.196542766 │
└─────────────────────────┴───────────────────────────────┘</syntaxhighlight>
== nowInBlock ==
 
Returns the current date and time at the moment of processing of each block of data. In contrast to the function [[#now|now]], it is not a constant expression, and the returned value will be different in different blocks for long-running queries.
 
It makes sense to use this function to generate the current time in long-running INSERT SELECT queries.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">nowInBlock([timezone])</syntaxhighlight>
'''Arguments'''
 
* <code>timezone</code> — [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone name] for the returned value (optional). [[Relational_Data_-_Data_Types_-_String|String]].
 
'''Returned value'''
 
* Current date and time at the moment of processing of each block of data. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    now(),
    nowInBlock(),
    sleep(1)
FROM numbers(3)
SETTINGS max_block_size = 1
FORMAT PrettyCompactMonoBlock</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌───────────────now()─┬────────nowInBlock()─┬─sleep(1)─┐
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:19 │        0 │
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:20 │        0 │
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:21 │        0 │
└─────────────────────┴─────────────────────┴──────────┘</syntaxhighlight>
== today ==
 
Returns the current date at moment of query analysis. It is the same as ‘toDate(now())’ and has aliases: <code>curdate</code>, <code>current_date</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">today()</syntaxhighlight>
'''Arguments'''
 
* None
 
'''Returned value'''
 
* Current date. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
Query:
 
<syntaxhighlight lang="sql">SELECT today() AS today, curdate() AS curdate, current_date() AS current_date FORMAT Pretty</syntaxhighlight>
'''Result''':
 
Running the query above on the 3rd of March 2024 would have returned the following response:
 
<pre class="response">┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃      today ┃    curdate ┃ current_date ┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ 2024-03-03 │ 2024-03-03 │  2024-03-03 │
└────────────┴────────────┴──────────────┘</pre>
== yesterday ==
 
Accepts zero arguments and returns yesterday’s date at one of the moments of query analysis. The same as ‘today() - 1’.
 
<span id="timeslot"></span>
== timeSlot ==
 
Rounds the time to the half hour.
 
<span id="toyyyymm"></span>
== toYYYYMM ==
 
Converts a date or date with time to a UInt32 number containing the year and month number (YYYY * 100 + MM). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.
 
This function is the opposite of function <code>YYYYMMDDToDate()</code>.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    toYYYYMM(now(), 'US/Eastern')</syntaxhighlight>
Result:
 
<syntaxhighlight lang="text">┌─toYYYYMM(now(), 'US/Eastern')─┐
│                        202303 │
└───────────────────────────────┘</syntaxhighlight>
<span id="toyyyymmdd"></span>
== toYYYYMMDD ==
 
Converts a date or date with time to a UInt32 number containing the year and month number (YYYY * 10000 + MM * 100 + DD). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toYYYYMMDD(now(), 'US/Eastern')</syntaxhighlight>
Result:
 
<pre class="response">┌─toYYYYMMDD(now(), 'US/Eastern')─┐
│                        20230302 │
└─────────────────────────────────┘</pre>
<span id="toyyyymmddhhmmss"></span>
== toYYYYMMDDhhmmss ==
 
Converts a date or date with time to a UInt64 number containing the year and month number (YYYY * 10000000000 + MM * 100000000 + DD * 1000000 + hh * 10000 + mm * 100 + ss). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT toYYYYMMDDhhmmss(now(), 'US/Eastern')</syntaxhighlight>
Result:
 
<pre class="response">┌─toYYYYMMDDhhmmss(now(), 'US/Eastern')─┐
│                        20230302112209 │
└───────────────────────────────────────┘</pre>
<span id="yyyymmddtodate"></span>
== YYYYMMDDToDate ==
 
Converts a number containing the year, month and day number to a [[Relational_Data_-_Data_Types_-_Date|Date]].
 
This function is the opposite of function <code>toYYYYMMDD()</code>.
 
The output is undefined if the input does not encode a valid Date value.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">YYYYMMDDToDate(yyyymmdd);</syntaxhighlight>
'''Arguments'''
 
* <code>yyyymmdd</code> - A number representing the year, month and day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
 
'''Returned value'''
 
* a date created from the arguments. [[Relational_Data_-_Data_Types_-_Date|Date]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT YYYYMMDDToDate(20230911);</syntaxhighlight>
Result:
 
<pre class="response">┌─toYYYYMMDD(20230911)─┐
│          2023-09-11 │
└──────────────────────┘</pre>
<span id="yyyymmddtodate32"></span>
== YYYYMMDDToDate32 ==
 
Like function <code>YYYYMMDDToDate()</code> but produces a [[Relational_Data_-_Data_Types_-_Date32|Date32]].
 
<span id="yyyymmddhhmmsstodatetime"></span>
== YYYYMMDDhhmmssToDateTime ==
 
Converts a number containing the year, month, day, hours, minute and second number to a [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
The output is undefined if the input does not encode a valid DateTime value.
 
This function is the opposite of function <code>toYYYYMMDDhhmmss()</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">YYYYMMDDhhmmssToDateTime(yyyymmddhhmmss[, timezone]);</syntaxhighlight>
'''Arguments'''
 
* <code>yyyymmddhhmmss</code> - A number representing the year, month and day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]], [[Relational_Data_-_Data_Types_-_Float|Float]] or [[Relational_Data_-_Data_Types_-_Decimal|Decimal]].
* <code>timezone</code> - [https://clickhouse.com/docs/en/operations/server-configuration-parameters/settings#server_configuration_parameters-timezone Timezone] for the returned value (optional).
 
'''Returned value'''
 
* a date with time created from the arguments. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT YYYYMMDDToDateTime(20230911131415);</syntaxhighlight>
Result:
 
<pre class="response">┌──────YYYYMMDDhhmmssToDateTime(20230911131415)─┐
│                          2023-09-11 13:14:15 │
└───────────────────────────────────────────────┘</pre>
<span id="yyyymmddhhmmsstodatetime64"></span>
== YYYYMMDDhhmmssToDateTime64 ==
 
Like function <code>YYYYMMDDhhmmssToDate()</code> but produces a [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
Accepts an additional, optional <code>precision</code> parameter after the <code>timezone</code> parameter.
 
<span id="changeyear"></span>
== changeYear ==
 
Changes the year component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">
changeYear(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the year. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* The same type as <code>date_or_datetime</code>.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT changeYear(toDate('1999-01-01'), 2000), changeYear(toDateTime64('1999-01-01 00:00:00.000', 3), 2000);</syntaxhighlight>
Result:
 
<pre>┌─changeYear(toDate('1999-01-01'), 2000)─┬─changeYear(toDateTime64('1999-01-01 00:00:00.000', 3), 2000)─┐
│                            2000-01-01 │                                      2000-01-01 00:00:00.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘</pre>
<span id="changemonth"></span>
== changeMonth ==
 
Changes the month component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">changeMonth(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the month. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* Returns a value of same type as <code>date_or_datetime</code>.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT changeMonth(toDate('1999-01-01'), 2), changeMonth(toDateTime64('1999-01-01 00:00:00.000', 3), 2);</syntaxhighlight>
Result:
 
<pre>┌─changeMonth(toDate('1999-01-01'), 2)─┬─changeMonth(toDateTime64('1999-01-01 00:00:00.000', 3), 2)─┐
│                          1999-02-01 │                                    1999-02-01 00:00:00.000 │
└──────────────────────────────────────┴────────────────────────────────────────────────────────────┘</pre>
<span id="changeday"></span>
== changeDay ==
 
Changes the day component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">changeDay(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the day. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* Returns a value of same type as <code>date_or_datetime</code>.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT changeDay(toDate('1999-01-01'), 5), changeDay(toDateTime64('1999-01-01 00:00:00.000', 3), 5);</syntaxhighlight>
Result:
 
<pre>┌─changeDay(toDate('1999-01-01'), 5)─┬─changeDay(toDateTime64('1999-01-01 00:00:00.000', 3), 5)─┐
│                        1999-01-05 │                                  1999-01-05 00:00:00.000 │
└────────────────────────────────────┴──────────────────────────────────────────────────────────┘</pre>
<span id="changehour"></span>
== changeHour ==
 
Changes the hour component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">changeHour(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the hour. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* Returns a value of same type as <code>date_or_datetime</code>. If the input is a [[Relational_Data_-_Data_Types_-_Date|Date]], return [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]. If the input is a [[Relational_Data_-_Data_Types_-_Date32|Date32]], return [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT changeHour(toDate('1999-01-01'), 14), changeHour(toDateTime64('1999-01-01 00:00:00.000', 3), 14);</syntaxhighlight>
Result:
 
<pre>┌─changeHour(toDate('1999-01-01'), 14)─┬─changeHour(toDateTime64('1999-01-01 00:00:00.000', 3), 14)─┐
│                  1999-01-01 14:00:00 │                                    1999-01-01 14:00:00.000 │
└──────────────────────────────────────┴────────────────────────────────────────────────────────────┘</pre>
<span id="changeminute"></span>
== changeMinute ==
 
Changes the minute component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">changeMinute(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the minute. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* Returns a value of same type as <code>date_or_datetime</code>. If the input is a [[Relational_Data_-_Data_Types_-_Date|Date]], return [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]. If the input is a [[Relational_Data_-_Data_Types_-_Date32|Date32]], return [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">    SELECT changeMinute(toDate('1999-01-01'), 15), changeMinute(toDateTime64('1999-01-01 00:00:00.000', 3), 15);</syntaxhighlight>
Result:
 
<pre>┌─changeMinute(toDate('1999-01-01'), 15)─┬─changeMinute(toDateTime64('1999-01-01 00:00:00.000', 3), 15)─┐
│                    1999-01-01 00:15:00 │                                      1999-01-01 00:15:00.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘</pre>
<span id="changesecond"></span>
== changeSecond ==
 
Changes the second component of a date or date time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">changeSecond(date_or_datetime, value)</syntaxhighlight>
'''Arguments'''
 
* <code>date_or_datetime</code> - a [[Relational_Data_-_Data_Types_-_Date|Date]], [[Relational_Data_-_Data_Types_-_Date32|Date32]], [[Relational_Data_-_Data_Types_-_Datetime|DateTime]] or [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]]
* <code>value</code> - a new value of the second. [[Relational_Data_-_Data_Types_-_Int_Uint|Integer]].
 
'''Returned value'''
 
* Returns a value of same type as <code>date_or_datetime</code>. If the input is a [[Relational_Data_-_Data_Types_-_Date|Date]], return [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]. If the input is a [[Relational_Data_-_Data_Types_-_Date32|Date32]], return [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT changeSecond(toDate('1999-01-01'), 15), changeSecond(toDateTime64('1999-01-01 00:00:00.000', 3), 15);</syntaxhighlight>
Result:
 
<pre>┌─changeSecond(toDate('1999-01-01'), 15)─┬─changeSecond(toDateTime64('1999-01-01 00:00:00.000', 3), 15)─┐
│                    1999-01-01 00:00:15 │                                      1999-01-01 00:00:15.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘</pre>
<span id="addyears"></span>
== addYears ==
 
Adds a specified number of years to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addYears(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of years to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of years to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> years. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addYears(date, 1) AS add_years_with_date,
    addYears(date_time, 1) AS add_years_with_date_time,
    addYears(date_time_string, 1) AS add_years_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_years_with_date─┬─add_years_with_date_time─┬─add_years_with_date_time_string─┐
│          2025-01-01 │      2025-01-01 00:00:00 │        2025-01-01 00:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘</pre>
<span id="addquarters"></span>
== addQuarters ==
 
Adds a specified number of quarters to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addQuarters(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of quarters to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of quarters to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> quarters. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addQuarters(date, 1) AS add_quarters_with_date,
    addQuarters(date_time, 1) AS add_quarters_with_date_time,
    addQuarters(date_time_string, 1) AS add_quarters_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_quarters_with_date─┬─add_quarters_with_date_time─┬─add_quarters_with_date_time_string─┐
│            2024-04-01 │        2024-04-01 00:00:00 │            2024-04-01 00:00:00.000 │
└────────────────────────┴─────────────────────────────┴────────────────────────────────────┘</pre>
<span id="addmonths"></span>
== addMonths ==
 
Adds a specified number of months to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addMonths(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of months to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of months to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> months. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMonths(date, 6) AS add_months_with_date,
    addMonths(date_time, 6) AS add_months_with_date_time,
    addMonths(date_time_string, 6) AS add_months_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_months_with_date─┬─add_months_with_date_time─┬─add_months_with_date_time_string─┐
│          2024-07-01 │      2024-07-01 00:00:00 │          2024-07-01 00:00:00.000 │
└──────────────────────┴───────────────────────────┴──────────────────────────────────┘</pre>
<span id="addweeks"></span>
== addWeeks ==
 
Adds a specified number of weeks to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addWeeks(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of weeks to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of weeks to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> weeks. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addWeeks(date, 5) AS add_weeks_with_date,
    addWeeks(date_time, 5) AS add_weeks_with_date_time,
    addWeeks(date_time_string, 5) AS add_weeks_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_weeks_with_date─┬─add_weeks_with_date_time─┬─add_weeks_with_date_time_string─┐
│          2024-02-05 │      2024-02-05 00:00:00 │        2024-02-05 00:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘</pre>
<span id="adddays"></span>
== addDays ==
 
Adds a specified number of days to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addDays(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of days to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of days to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> days. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addDays(date, 5) AS add_days_with_date,
    addDays(date_time, 5) AS add_days_with_date_time,
    addDays(date_time_string, 5) AS add_days_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_days_with_date─┬─add_days_with_date_time─┬─add_days_with_date_time_string─┐
│        2024-01-06 │    2024-01-06 00:00:00 │        2024-01-06 00:00:00.000 │
└────────────────────┴─────────────────────────┴────────────────────────────────┘</pre>
<span id="addhours"></span>
== addHours ==
 
Adds a specified number of days to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addHours(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of hours to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of hours to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value''' o - Returns <code>date</code> plus <code>num</code> hours. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addHours(date, 12) AS add_hours_with_date,
    addHours(date_time, 12) AS add_hours_with_date_time,
    addHours(date_time_string, 12) AS add_hours_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_hours_with_date─┬─add_hours_with_date_time─┬─add_hours_with_date_time_string─┐
│ 2024-01-01 12:00:00 │      2024-01-01 12:00:00 │        2024-01-01 12:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘</pre>
<span id="addminutes"></span>
== addMinutes ==
 
Adds a specified number of minutes to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addMinutes(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of minutes to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of minutes to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> minutes. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMinutes(date, 20) AS add_minutes_with_date,
    addMinutes(date_time, 20) AS add_minutes_with_date_time,
    addMinutes(date_time_string, 20) AS add_minutes_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_minutes_with_date─┬─add_minutes_with_date_time─┬─add_minutes_with_date_time_string─┐
│  2024-01-01 00:20:00 │        2024-01-01 00:20:00 │          2024-01-01 00:20:00.000 │
└───────────────────────┴────────────────────────────┴───────────────────────────────────┘</pre>
<span id="addseconds"></span>
== addSeconds ==
 
Adds a specified number of seconds to a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addSeconds(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to add specified number of seconds to. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of seconds to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> plus <code>num</code> seconds. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addSeconds(date, 30) AS add_seconds_with_date,
    addSeconds(date_time, 30) AS add_seconds_with_date_time,
    addSeconds(date_time_string, 30) AS add_seconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_seconds_with_date─┬─add_seconds_with_date_time─┬─add_seconds_with_date_time_string─┐
│  2024-01-01 00:00:30 │        2024-01-01 00:00:30 │          2024-01-01 00:00:30.000 │
└───────────────────────┴────────────────────────────┴───────────────────────────────────┘</pre>
<span id="addmilliseconds"></span>
== addMilliseconds ==
 
Adds a specified number of milliseconds to a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addMilliseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to add specified number of milliseconds to. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of milliseconds to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> plus <code>num</code> milliseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMilliseconds(date_time, 1000) AS add_milliseconds_with_date_time,
    addMilliseconds(date_time_string, 1000) AS add_milliseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_milliseconds_with_date_time─┬─add_milliseconds_with_date_time_string─┐
│        2024-01-01 00:00:01.000 │                2024-01-01 00:00:01.000 │
└─────────────────────────────────┴────────────────────────────────────────┘</pre>
<span id="addmicroseconds"></span>
== addMicroseconds ==
 
Adds a specified number of microseconds to a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addMicroseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to add specified number of microseconds to. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of microseconds to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> plus <code>num</code> microseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMicroseconds(date_time, 1000000) AS add_microseconds_with_date_time,
    addMicroseconds(date_time_string, 1000000) AS add_microseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_microseconds_with_date_time─┬─add_microseconds_with_date_time_string─┐
│      2024-01-01 00:00:01.000000 │            2024-01-01 00:00:01.000000 │
└─────────────────────────────────┴────────────────────────────────────────┘</pre>
<span id="addnanoseconds"></span>
== addNanoseconds ==
 
Adds a specified number of microseconds to a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addNanoseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to add specified number of nanoseconds to. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of nanoseconds to add. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> plus <code>num</code> nanoseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addNanoseconds(date_time, 1000) AS add_nanoseconds_with_date_time,
    addNanoseconds(date_time_string, 1000) AS add_nanoseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─add_nanoseconds_with_date_time─┬─add_nanoseconds_with_date_time_string─┐
│  2024-01-01 00:00:00.000001000 │        2024-01-01 00:00:00.000001000 │
└────────────────────────────────┴───────────────────────────────────────┘</pre>
<span id="addinterval"></span>
== addInterval ==
 
Adds an interval to another interval or tuple of intervals.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addInterval(interval_1, interval_2)</syntaxhighlight>
'''Parameters'''
 
* <code>interval_1</code>: First interval or tuple of intervals. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval], [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
* <code>interval_2</code>: Second interval to be added. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval].
 
'''Returned value'''
 
* Returns a tuple of intervals. [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
 
<div class="note">
 
Intervals of the same type will be combined into a single interval. For instance if <code>toIntervalDay(1)</code> and <code>toIntervalDay(2)</code> are passed then the result will be <code>(3)</code> rather than <code>(1,1)</code>.
 
 
</div>
'''Example'''
 
Query:
 
<syntaxhighlight lang="sql">SELECT addInterval(INTERVAL 1 DAY, INTERVAL 1 MONTH);
SELECT addInterval((INTERVAL 1 DAY, INTERVAL 1 YEAR), INTERVAL 1 MONTH);
SELECT addInterval(INTERVAL 2 DAY, INTERVAL 1 DAY);</syntaxhighlight>
Result:
 
<pre class="response">┌─addInterval(toIntervalDay(1), toIntervalMonth(1))─┐
│ (1,1)                                            │
└───────────────────────────────────────────────────┘
┌─addInterval((toIntervalDay(1), toIntervalYear(1)), toIntervalMonth(1))─┐
│ (1,1,1)                                                                │
└────────────────────────────────────────────────────────────────────────┘
┌─addInterval(toIntervalDay(2), toIntervalDay(1))─┐
│ (3)                                            │
└─────────────────────────────────────────────────┘</pre>
<span id="addtupleofintervals"></span>
== addTupleOfIntervals ==
 
Consecutively adds a tuple of intervals to a Date or a DateTime.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">addTupleOfIntervals(interval_1, interval_2)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: First interval or interval of tuples. [[Relational_Data_-_Data_Types_-_Date|date]]/[[Relational_Data_-_Data_Types_-_Date32|date32]]/[[Relational_Data_-_Data_Types_-_Datetime|datetime]]/[[Relational_Data_-_Data_Types_-_Datetime64|datetime64]].
* <code>intervals</code>: Tuple of intervals to add to <code>date</code>. [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
 
'''Returned value'''
 
* Returns <code>date</code> with added <code>intervals</code>. [[Relational_Data_-_Data_Types_-_Date|date]]/[[Relational_Data_-_Data_Types_-_Date32|date32]]/[[Relational_Data_-_Data_Types_-_Datetime|datetime]]/[[Relational_Data_-_Data_Types_-_Datetime64|datetime64]].
 
'''Example'''
 
Query:
 
<syntaxhighlight lang="sql">WITH toDate('2018-01-01') AS date
SELECT addTupleOfIntervals(date, (INTERVAL 1 DAY, INTERVAL 1 MONTH, INTERVAL 1 YEAR))</syntaxhighlight>
Result:
 
<pre class="response">┌─addTupleOfIntervals(date, (toIntervalDay(1), toIntervalMonth(1), toIntervalYear(1)))─┐
│                                                                          2019-02-02 │
└──────────────────────────────────────────────────────────────────────────────────────┘</pre>
<span id="subtractyears"></span>
== subtractYears ==
 
Subtracts a specified number of years from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractYears(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of years from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of years to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> years. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractYears(date, 1) AS subtract_years_with_date,
    subtractYears(date_time, 1) AS subtract_years_with_date_time,
    subtractYears(date_time_string, 1) AS subtract_years_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_years_with_date─┬─subtract_years_with_date_time─┬─subtract_years_with_date_time_string─┐
│              2023-01-01 │          2023-01-01 00:00:00 │              2023-01-01 00:00:00.000 │
└──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘</pre>
<span id="subtractquarters"></span>
== subtractQuarters ==
 
Subtracts a specified number of quarters from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractQuarters(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of quarters from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of quarters to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> quarters. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractQuarters(date, 1) AS subtract_quarters_with_date,
    subtractQuarters(date_time, 1) AS subtract_quarters_with_date_time,
    subtractQuarters(date_time_string, 1) AS subtract_quarters_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_quarters_with_date─┬─subtract_quarters_with_date_time─┬─subtract_quarters_with_date_time_string─┐
│                  2023-10-01 │              2023-10-01 00:00:00 │                2023-10-01 00:00:00.000 │
└─────────────────────────────┴──────────────────────────────────┴─────────────────────────────────────────┘</pre>
<span id="subtractmonths"></span>
== subtractMonths ==
 
Subtracts a specified number of months from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractMonths(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of months from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of months to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> months. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMonths(date, 1) AS subtract_months_with_date,
    subtractMonths(date_time, 1) AS subtract_months_with_date_time,
    subtractMonths(date_time_string, 1) AS subtract_months_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_months_with_date─┬─subtract_months_with_date_time─┬─subtract_months_with_date_time_string─┐
│                2023-12-01 │            2023-12-01 00:00:00 │              2023-12-01 00:00:00.000 │
└───────────────────────────┴────────────────────────────────┴───────────────────────────────────────┘</pre>
<span id="subtractweeks"></span>
== subtractWeeks ==
 
Subtracts a specified number of weeks from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractWeeks(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of weeks from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of weeks to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> weeks. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractWeeks(date, 1) AS subtract_weeks_with_date,
    subtractWeeks(date_time, 1) AS subtract_weeks_with_date_time,
    subtractWeeks(date_time_string, 1) AS subtract_weeks_with_date_time_string</syntaxhighlight>
<pre class="response"> ┌─subtract_weeks_with_date─┬─subtract_weeks_with_date_time─┬─subtract_weeks_with_date_time_string─┐
│              2023-12-25 │          2023-12-25 00:00:00 │              2023-12-25 00:00:00.000 │
└──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘</pre>
<span id="subtractdays"></span>
== subtractDays ==
 
Subtracts a specified number of days from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractDays(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of days from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of days to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> days. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractDays(date, 31) AS subtract_days_with_date,
    subtractDays(date_time, 31) AS subtract_days_with_date_time,
    subtractDays(date_time_string, 31) AS subtract_days_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_days_with_date─┬─subtract_days_with_date_time─┬─subtract_days_with_date_time_string─┐
│              2023-12-01 │          2023-12-01 00:00:00 │            2023-12-01 00:00:00.000 │
└─────────────────────────┴──────────────────────────────┴─────────────────────────────────────┘</pre>
<span id="subtracthours"></span>
== subtractHours ==
 
Subtracts a specified number of hours from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractHours(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of hours from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|Datetime]]/[[Relational_Data_-_Data_Types_-_Datetime64|Datetime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of hours to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> hours. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|Datetime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractHours(date, 12) AS subtract_hours_with_date,
    subtractHours(date_time, 12) AS subtract_hours_with_date_time,
    subtractHours(date_time_string, 12) AS subtract_hours_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_hours_with_date─┬─subtract_hours_with_date_time─┬─subtract_hours_with_date_time_string─┐
│      2023-12-31 12:00:00 │          2023-12-31 12:00:00 │              2023-12-31 12:00:00.000 │
└──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘</pre>
<span id="subtractminutes"></span>
== subtractMinutes ==
 
Subtracts a specified number of minutes from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractMinutes(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of minutes from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of minutes to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> minutes. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMinutes(date, 30) AS subtract_minutes_with_date,
    subtractMinutes(date_time, 30) AS subtract_minutes_with_date_time,
    subtractMinutes(date_time_string, 30) AS subtract_minutes_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_minutes_with_date─┬─subtract_minutes_with_date_time─┬─subtract_minutes_with_date_time_string─┐
│        2023-12-31 23:30:00 │            2023-12-31 23:30:00 │                2023-12-31 23:30:00.000 │
└────────────────────────────┴─────────────────────────────────┴────────────────────────────────────────┘</pre>
<span id="subtractseconds"></span>
== subtractSeconds ==
 
Subtracts a specified number of seconds from a date, a date with time or a string-encoded date / date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractSeconds(date, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: Date / date with time to subtract specified number of seconds from. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of seconds to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date</code> minus <code>num</code> seconds. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractSeconds(date, 60) AS subtract_seconds_with_date,
    subtractSeconds(date_time, 60) AS subtract_seconds_with_date_time,
    subtractSeconds(date_time_string, 60) AS subtract_seconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_seconds_with_date─┬─subtract_seconds_with_date_time─┬─subtract_seconds_with_date_time_string─┐
│        2023-12-31 23:59:00 │            2023-12-31 23:59:00 │                2023-12-31 23:59:00.000 │
└────────────────────────────┴─────────────────────────────────┴────────────────────────────────────────┘</pre>
<span id="subtractmilliseconds"></span>
== subtractMilliseconds ==
 
Subtracts a specified number of milliseconds from a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractMilliseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to subtract specified number of milliseconds from. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of milliseconds to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> minus <code>num</code> milliseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMilliseconds(date_time, 1000) AS subtract_milliseconds_with_date_time,
    subtractMilliseconds(date_time_string, 1000) AS subtract_milliseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_milliseconds_with_date_time─┬─subtract_milliseconds_with_date_time_string─┐
│              2023-12-31 23:59:59.000 │                    2023-12-31 23:59:59.000 │
└──────────────────────────────────────┴─────────────────────────────────────────────┘</pre>
<span id="subtractmicroseconds"></span>
== subtractMicroseconds ==
 
Subtracts a specified number of microseconds from a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractMicroseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to subtract specified number of microseconds from. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of microseconds to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> minus <code>num</code> microseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMicroseconds(date_time, 1000000) AS subtract_microseconds_with_date_time,
    subtractMicroseconds(date_time_string, 1000000) AS subtract_microseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_microseconds_with_date_time─┬─subtract_microseconds_with_date_time_string─┐
│          2023-12-31 23:59:59.000000 │                  2023-12-31 23:59:59.000000 │
└──────────────────────────────────────┴─────────────────────────────────────────────┘</pre>
<span id="subtractnanoseconds"></span>
== subtractNanoseconds ==
 
Subtracts a specified number of nanoseconds from a date with time or a string-encoded date with time.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractNanoseconds(date_time, num)</syntaxhighlight>
'''Parameters'''
 
* <code>date_time</code>: Date with time to subtract specified number of nanoseconds from. [[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]], [[Relational_Data_-_Data_Types_-_String|String]].
* <code>num</code>: Number of nanoseconds to subtract. [[Relational_Data_-_Data_Types_-_Int_Uint|(U)Int*]], [[Relational_Data_-_Data_Types_-_Float|Float*]].
 
'''Returned value'''
 
* Returns <code>date_time</code> minus <code>num</code> nanoseconds. [[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
<syntaxhighlight lang="sql">WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractNanoseconds(date_time, 1000) AS subtract_nanoseconds_with_date_time,
    subtractNanoseconds(date_time_string, 1000) AS subtract_nanoseconds_with_date_time_string</syntaxhighlight>
<pre class="response">┌─subtract_nanoseconds_with_date_time─┬─subtract_nanoseconds_with_date_time_string─┐
│      2023-12-31 23:59:59.999999000 │              2023-12-31 23:59:59.999999000 │
└─────────────────────────────────────┴────────────────────────────────────────────┘</pre>
<span id="subtractinterval"></span>
== subtractInterval ==
 
Adds a negated interval to another interval or tuple of intervals.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractInterval(interval_1, interval_2)</syntaxhighlight>
'''Parameters'''
 
* <code>interval_1</code>: First interval or interval of tuples. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval], [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
* <code>interval_2</code>: Second interval to be negated. [https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval].
 
'''Returned value'''
 
* Returns a tuple of intervals. [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
 
<div class="note">
 
Intervals of the same type will be combined into a single interval. For instance if <code>toIntervalDay(2)</code> and <code>toIntervalDay(1)</code> are passed then the result will be <code>(1)</code> rather than <code>(2,1)</code>
 
 
</div>
'''Example'''
 
Query:
 
<syntaxhighlight lang="sql">SELECT subtractInterval(INTERVAL 1 DAY, INTERVAL 1 MONTH);
SELECT subtractInterval((INTERVAL 1 DAY, INTERVAL 1 YEAR), INTERVAL 1 MONTH);
SELECT subtractInterval(INTERVAL 2 DAY, INTERVAL 1 DAY);</syntaxhighlight>
Result:
 
<pre class="response">┌─subtractInterval(toIntervalDay(1), toIntervalMonth(1))─┐
│ (1,-1)                                                │
└────────────────────────────────────────────────────────┘
┌─subtractInterval((toIntervalDay(1), toIntervalYear(1)), toIntervalMonth(1))─┐
│ (1,1,-1)                                                                    │
└─────────────────────────────────────────────────────────────────────────────┘
┌─subtractInterval(toIntervalDay(2), toIntervalDay(1))─┐
│ (1)                                                  │
└──────────────────────────────────────────────────────┘</pre>
<span id="subtracttupleofintervals"></span>
== subtractTupleOfIntervals ==
 
Consecutively subtracts a tuple of intervals from a Date or a DateTime.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">subtractTupleOfIntervals(interval_1, interval_2)</syntaxhighlight>
'''Parameters'''
 
* <code>date</code>: First interval or interval of tuples. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
* <code>intervals</code>: Tuple of intervals to subtract from <code>date</code>. [[Relational_Data_-_Data_Types_-_Tuple|tuple]]([https://clickhouse.com/docs/en/sql-reference/data-types/special-data-types/interval interval]).
 
'''Returned value'''
 
* Returns <code>date</code> with subtracted <code>intervals</code>. [[Relational_Data_-_Data_Types_-_Date|Date]]/[[Relational_Data_-_Data_Types_-_Date32|Date32]]/[[Relational_Data_-_Data_Types_-_Datetime|DateTime]]/[[Relational_Data_-_Data_Types_-_Datetime64|DateTime64]].
 
'''Example'''
 
Query:
 
<syntaxhighlight lang="sql">WITH toDate('2018-01-01') AS date SELECT subtractTupleOfIntervals(date, (INTERVAL 1 DAY, INTERVAL 1 YEAR))</syntaxhighlight>
Result:
 
<pre class="response">┌─subtractTupleOfIntervals(date, (toIntervalDay(1), toIntervalYear(1)))─┐
│                                                            2016-12-31 │
└───────────────────────────────────────────────────────────────────────┘</pre>
<span id="timeslotsstarttime-duration-size"></span>
== timeSlots(StartTime, Duration,[, Size]) ==
 
For a time interval starting at ‘StartTime’ and continuing for ‘Duration’ seconds, it returns an array of moments in time, consisting of points from this interval rounded down to the ‘Size’ in seconds. ‘Size’ is an optional parameter set to 1800 (30 minutes) by default. This is necessary, for example, when searching for pageviews in the corresponding session. Accepts DateTime and DateTime64 as ’StartTime’ argument. For DateTime, ’Duration’ and ’Size’ arguments must be <code>UInt32</code>. For ’DateTime64’ they must be <code>Decimal64</code>. Returns an array of DateTime/DateTime64 (return type matches the type of ’StartTime’). For DateTime64, the return value’s scale can differ from the scale of ’StartTime’ — the highest scale among all given arguments is taken.
 
Example:
 
<syntaxhighlight lang="sql">SELECT timeSlots(toDateTime('2012-01-01 12:20:00'), toUInt32(600));
SELECT timeSlots(toDateTime('1980-12-12 21:01:02', 'UTC'), toUInt32(600), 299);
SELECT timeSlots(toDateTime64('1980-12-12 21:01:02.1234', 4, 'UTC'), toDecimal64(600.1, 1), toDecimal64(299, 0));</syntaxhighlight>
<syntaxhighlight lang="text">┌─timeSlots(toDateTime('2012-01-01 12:20:00'), toUInt32(600))─┐
│ ['2012-01-01 12:00:00','2012-01-01 12:30:00']              │
└─────────────────────────────────────────────────────────────┘
┌─timeSlots(toDateTime('1980-12-12 21:01:02', 'UTC'), toUInt32(600), 299)─┐
│ ['1980-12-12 20:56:13','1980-12-12 21:01:12','1980-12-12 21:06:11']    │
└─────────────────────────────────────────────────────────────────────────┘
┌─timeSlots(toDateTime64('1980-12-12 21:01:02.1234', 4, 'UTC'), toDecimal64(600.1, 1), toDecimal64(299, 0))─┐
│ ['1980-12-12 20:56:13.0000','1980-12-12 21:01:12.0000','1980-12-12 21:06:11.0000']                        │
└───────────────────────────────────────────────────────────────────────────────────────────────────────────┘</syntaxhighlight>
<span id="formatdatetime"></span>
== formatDateTime ==
 
Formats a Time according to the given Format string. Format is a constant expression, so you cannot have multiple formats for a single result column.
 
formatDateTime uses MySQL datetime format style, refer to https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_date-format.
 
The opposite operation of this function is [[Relational_Data_-_Functions_-_Type_Conversion_Functions#type_conversion_functions-parseDateTime|parseDateTime]].
 
Alias: <code>DATE_FORMAT</code>.
 
'''Syntax'''
 
<syntaxhighlight lang="sql">formatDateTime(Time, Format[, Timezone])</syntaxhighlight>
'''Returned value(s)'''
 
Returns time and date values according to the determined format.
 
'''Replacement fields'''
 
Using replacement fields, you can define a pattern for the resulting string. “Example” column shows formatting result for <code>2018-01-02 22:33:44</code>.
 
{| class="wikitable"
|-
! Placeholder
! Description
! Example
|-
| %a
| abbreviated weekday name (Mon-Sun)
| Mon
|-
| %b
| abbreviated month name (Jan-Dec)
| Jan
|-
| %c
| month as an integer number (01-12), see ‘Note 3’ below
| 01
|-
| %C
| year divided by 100 and truncated to integer (00-99)
| 20
|-
| %d
| day of the month, zero-padded (01-31)
| 02
|-
| %D
| Short MM/DD/YY date, equivalent to %m/%d/%y
| 01/02/18
|-
| %e
| day of the month, space-padded (1-31)
|   2
|-
| %f
| fractional second, see ‘Note 1’ below
| 1234560
|-
| %F
| short YYYY-MM-DD date, equivalent to %Y-%m-%d
| 2018-01-02
|-
| %g
| two-digit year format, aligned to ISO 8601, abbreviated from four-digit notation
| 18
|-
| %G
| four-digit year format for ISO week number, calculated from the week-based year [https://en.wikipedia.org/wiki/ISO_8601#Week_dates defined by the ISO 8601] standard, normally useful only with %V
| 2018
|-
| %h
| hour in 12h format (01-12)
| 09
|-
| %H
| hour in 24h format (00-23)
| 22
|-
| %i
| minute (00-59)
| 33
|-
| %I
| hour in 12h format (01-12)
| 10
|-
| %j
| day of the year (001-366)
| 002
|-
| %k
| hour in 24h format (00-23), see ‘Note 3’ below
| 14
|-
| %l
| hour in 12h format (01-12), see ‘Note 3’ below
| 09
|-
| %m
| month as an integer number (01-12)
| 01
|-
| %M
| full month name (January-December), see ‘Note 2’ below
| January
|-
| %n
| new-line character (’’)
|
|-
| %p
| AM or PM designation
| PM
|-
| %Q
| Quarter (1-4)
| 1
|-
| %r
| 12-hour HH:MM AM/PM time, equivalent to %h:%i %p
| 10:30 PM
|-
| %R
| 24-hour HH:MM time, equivalent to %H:%i
| 22:33
|-
| %s
| second (00-59)
| 44
|-
| %S
| second (00-59)
| 44
|-
| %t
| horizontal-tab character (’)
|
|-
| %T
| ISO 8601 time format (HH:MM:SS), equivalent to %H:%i:%S
| 22:33:44
|-
| %u
| ISO 8601 weekday as number with Monday as 1 (1-7)
| 2
|-
| %V
| ISO 8601 week number (01-53)
| 01
|-
| %w
| weekday as a integer number with Sunday as 0 (0-6)
| 2
|-
| %W
| full weekday name (Monday-Sunday)
| Monday
|-
| %y
| Year, last two digits (00-99)
| 18
|-
| %Y
| Year
| 2018
|-
| %z
| Time offset from UTC as +HHMM or -HHMM
| -0500
|-
| %%
| a % sign
| %
|}
 
Note 1: In ClickHouse versions earlier than v23.4, <code>%f</code> prints a single zero (0) if the formatted value is a Date, Date32 or DateTime (which have no fractional seconds) or a DateTime64 with a precision of 0. The previous behavior can be restored using setting <code>formatdatetime_f_prints_single_zero = 1</code>.
 
Note 2: In ClickHouse versions earlier than v23.4, <code>%M</code> prints the minute (00-59) instead of the full month name (January-December). The previous behavior can be restored using setting <code>formatdatetime_parsedatetime_m_is_month_name = 0</code>.
 
Note 3: In ClickHouse versions earlier than v23.11, function <code>parseDateTime()</code> required leading zeros for formatters <code>%c</code> (month) and <code>%l</code>/<code>%k</code> (hour), e.g. <code>07</code>. In later versions, the leading zero may be omitted, e.g. <code>7</code>. The previous behavior can be restored using setting <code>parsedatetime_parse_without_leading_zeros = 0</code>. Note that function <code>formatDateTime()</code> by default still prints leading zeros for <code>%c</code> and <code>%l</code>/<code>%k</code> to not break existing use cases. This behavior can be changed by setting <code>formatdatetime_format_without_leading_zeros = 1</code>.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT formatDateTime(toDate('2010-01-04'), '%g')</syntaxhighlight>
Result:
 
<pre>┌─formatDateTime(toDate('2010-01-04'), '%g')─┐
│ 10                                        │
└────────────────────────────────────────────┘</pre>
<syntaxhighlight lang="sql">SELECT formatDateTime(toDateTime64('2010-01-04 12:34:56.123456', 7), '%f')</syntaxhighlight>
Result:
 
<pre>┌─formatDateTime(toDateTime64('2010-01-04 12:34:56.123456', 7), '%f')─┐
│ 1234560                                                            │
└─────────────────────────────────────────────────────────────────────┘</pre>
Additionally, the <code>formatDateTime</code> function can take a third String argument containing the name of the time zone. Example: <code>Asia/Istanbul</code>. In this case, the time is formatted according to the specified time zone.
 
'''Example'''
 
<syntaxhighlight lang="sql">SELECT
    now() AS ts,
    time_zone,
    formatDateTime(ts, '%T', time_zone) AS str_tz_time
FROM system.time_zones
WHERE time_zone LIKE 'Europe%'
LIMIT 10
 
┌──────────────────ts─┬─time_zone─────────┬─str_tz_time─┐
│ 2023-09-08 19:13:40 │ Europe/Amsterdam  │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Andorra    │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Astrakhan  │ 23:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Athens    │ 22:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Belfast    │ 20:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Belgrade  │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Berlin    │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Bratislava │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Brussels  │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Bucharest  │ 22:13:40    │
└─────────────────────┴───────────────────┴─────────────┘</syntaxhighlight>
'''See Also'''
 
* [[#formatdatetimeinjodasyntax|formatDateTimeInJodaSyntax]]
 
<span id="formatdatetimeinjodasyntax"></span>
== formatDateTimeInJodaSyntax ==
 
Similar to formatDateTime, except that it formats datetime in Joda style instead of MySQL style. Refer to https://joda-time.sourceforge.net/apidocs/org/joda/time/format/DateTimeFormat.html.
 
The opposite operation of this function is [[Relational_Data_-_Functions_-_Type_Conversion_Functions#type_conversion_functions-parseDateTimeInJodaSyntax|parseDateTimeInJodaSyntax]].
 
'''Replacement fields'''
 
Using replacement fields, you can define a pattern for the resulting string.
 
{| class="wikitable"
|-
! Placeholder
! Description
! Presentation
! Examples
|-
| G
| era
| text
| AD
|-
| C
| century of era (&gt;=0)
| number
| 20
|-
| Y
| year of era (&gt;=0)
| year
| 1996
|-
| x
| weekyear (not supported yet)
| year
| 1996
|-
| w
| week of weekyear (not supported yet)
| number
| 27
|-
| e
| day of week
| number
| 2
|-
| E
| day of week
| text
| Tuesday; Tue
|-
| y
| year
| year
| 1996
|-
| D
| day of year
| number
| 189
|-
| M
| month of year
| month
| July; Jul; 07
|-
| d
| day of month
| number
| 10
|-
| a
| halfday of day
| text
| PM
|-
| K
| hour of halfday (0~11)
| number
| 0
|-
| h
| clockhour of halfday (1~12)
| number
| 12
|-
| H
| hour of day (0~23)
| number
| 0
|-
| k
| clockhour of day (1~24)
| number
| 24
|-
| m
| minute of hour
| number
| 30
|-
| s
| second of minute
| number
| 55
|-
| S
| fraction of second (not supported yet)
| number
| 978
|-
| z
| time zone (short name not supported yet)
| text
| Pacific Standard Time; PST
|-
| Z
| time zone offset/id (not supported yet)
| zone
| -0800; -08:00; America/Los_Angeles
|-
| ’
| escape for text
| delimiter
|
|-
| ’’
| single quote
| literal
| ’
|}


'''Example'''
'''Example'''

Latest revision as of 19:05, 28 August 2024

Most functions in this section accept an optional time zone argument, e.g. Europe/Amsterdam. In this case, the time zone is the specified one instead of the local (default) one.

Example

SELECT
    toDateTime('2016-06-15 23:00:00') AS time,
    toDate(time) AS date_local,
    toDate(time, 'Asia/Yekaterinburg') AS date_yekat,
    toString(time, 'US/Samoa') AS time_samoa
┌────────────────time─┬─date_local─┬─date_yekat─┬─time_samoa──────────┐
│ 2016-06-15 23:00:00 │ 2016-06-15 │ 2016-06-16 │ 2016-06-15 09:00:00 │
└─────────────────────┴────────────┴────────────┴─────────────────────┘

makeDate

Creates a Date - from a year, month and day argument, or - from a year and day of year argument.

Syntax

makeDate(year, month, day);
makeDate(year, day_of_year);

Alias: - MAKEDATE(year, month, day); - MAKEDATE(year, day_of_year);

Arguments

Returned value

  • A date created from the arguments. Date.

Example

Create a Date from a year, month and day:

SELECT makeDate(2023, 2, 28) AS Date;

Result:

┌───────date─┐
│ 2023-02-28 │
└────────────┘

Create a Date from a year and day of year argument:

SELECT makeDate(2023, 42) AS Date;

Result:

┌───────date─┐
│ 2023-02-11 │
└────────────┘

makeDate32

Creates a date of type Date32 from a year, month, day (or optionally a year and a day).

Syntax

makeDate32(year, [month,] day)

Arguments

If month is omitted then day should take a value between 1 and 365, otherwise it should take a value between 1 and 31.


Returned values

  • A date created from the arguments. Date32.

Examples

Create a date from a year, month, and day:

Query:

SELECT makeDate32(2024, 1, 1);

Result:

2024-01-01

Create a Date from a year and day of year:

Query:

SELECT makeDate32(2024, 100);

Result:

2024-04-09

makeDateTime

Creates a DateTime from a year, month, day, hour, minute and second argument.

Syntax

makeDateTime(year, month, day, hour, minute, second[, timezone])

Arguments

Returned value

  • A date with time created from the arguments. DateTime.

Example

SELECT makeDateTime(2023, 2, 28, 17, 12, 33) AS DateTime;

Result:

┌────────────DateTime─┐
│ 2023-02-28 17:12:33 │
└─────────────────────┘

makeDateTime64

Creates a DateTime64 data type value from its components: year, month, day, hour, minute, second. With optional sub-second precision.

Syntax

makeDateTime64(year, month, day, hour, minute, second[, precision])

Arguments

Returned value

  • A date and time created from the supplied arguments. DateTime64.

Example

SELECT makeDateTime64(2023, 5, 15, 10, 30, 45, 779, 5);
┌─makeDateTime64(2023, 5, 15, 10, 30, 45, 779, 5)─┐
│                       2023-05-15 10:30:45.00779 │
└─────────────────────────────────────────────────┘

timestamp

Converts the first argument ‘expr’ to type DateTime64(6). If a second argument ‘expr_time’ is provided, it adds the specified time to the converted value.

Syntax

timestamp(expr[, expr_time])

Alias: TIMESTAMP

Arguments

  • expr - Date or date with time. String.
  • expr_time - Optional parameter. Time to add. String.

Examples

SELECT timestamp('2023-12-31') as ts;

Result:

┌─────────────────────────ts─┐
│ 2023-12-31 00:00:00.000000 │
└────────────────────────────┘
SELECT timestamp('2023-12-31 12:00:00', '12:00:00.11') as ts;

Result:

┌─────────────────────────ts─┐
│ 2024-01-01 00:00:00.110000 │
└────────────────────────────┘

Returned value

timeZone

Returns the timezone of the current session, i.e. the value of setting session_timezone. If the function is executed in the context of a distributed table, then it generates a normal column with values relevant to each shard, otherwise it produces a constant value.

Syntax

timeZone()

Alias: timezone.

Returned value

Example

SELECT timezone()

Result:

┌─timezone()─────┐
│ America/Denver │
└────────────────┘

See also

serverTimeZone

Returns the timezone of the server, i.e. the value of setting timezone. If the function is executed in the context of a distributed table, then it generates a normal column with values relevant to each shard. Otherwise, it produces a constant value.

Syntax

serverTimeZone()

Alias: serverTimezone.

Returned value

Example

SELECT serverTimeZone()

Result:

┌─serverTimeZone()─┐
│ UTC              │
└──────────────────┘

See also

toTimeZone

Converts a date or date with time to the specified time zone. Does not change the internal value (number of unix seconds) of the data, only the value’s time zone attribute and the value’s string representation changes.

Syntax

toTimezone(value, timezone)

Alias: toTimezone.

Arguments

  • value — Time or date and time. DateTime64.
  • timezone — Timezone for the returned value. String. This argument is a constant, because toTimezone changes the timezone of a column (timezone is an attribute of DateTime* types).

Returned value

Example

SELECT toDateTime('2019-01-01 00:00:00', 'UTC') AS time_utc,
    toTypeName(time_utc) AS type_utc,
    toInt32(time_utc) AS int32utc,
    toTimeZone(time_utc, 'Asia/Yekaterinburg') AS time_yekat,
    toTypeName(time_yekat) AS type_yekat,
    toInt32(time_yekat) AS int32yekat,
    toTimeZone(time_utc, 'US/Samoa') AS time_samoa,
    toTypeName(time_samoa) AS type_samoa,
    toInt32(time_samoa) AS int32samoa
FORMAT Vertical;

Result:

Row 1:
──────
time_utc:   2019-01-01 00:00:00
type_utc:   DateTime('UTC')
int32utc:   1546300800
time_yekat: 2019-01-01 05:00:00
type_yekat: DateTime('Asia/Yekaterinburg')
int32yekat: 1546300800
time_samoa: 2018-12-31 13:00:00
type_samoa: DateTime('US/Samoa')
int32samoa: 1546300800

See Also

timeZoneOf

Returns the timezone name of DateTime or DateTime64 data types.

Syntax

timeZoneOf(value)

Alias: timezoneOf.

Arguments

Returned value

Example

SELECT timezoneOf(now());

Result:

┌─timezoneOf(now())─┐
│ Etc/UTC           │
└───────────────────┘

timeZoneOffset

Returns the timezone offset in seconds from UTC. The function daylight saving time and historical timezone changes at the specified date and time into account. The IANA timezone database is used to calculate the offset.

Syntax

timeZoneOffset(value)

Alias: timezoneOffset.

Arguments

Returned value

  • Offset from UTC in seconds. Int32.

Example

SELECT toDateTime('2021-04-21 10:20:30', 'America/New_York') AS Time, toTypeName(Time) AS Type,
       timeZoneOffset(Time) AS Offset_in_seconds, (Offset_in_seconds / 3600) AS Offset_in_hours;

Result:

┌────────────────Time─┬─Type─────────────────────────┬─Offset_in_seconds─┬─Offset_in_hours─┐
│ 2021-04-21 10:20:30 │ DateTime('America/New_York') │            -14400 │              -4 │
└─────────────────────┴──────────────────────────────┴───────────────────┴─────────────────┘

toYear

Returns the year component (AD) of a date or date with time.

Syntax

toYear(value)

Alias: YEAR

Arguments

Returned value

  • The year of the given date/time. UInt16.

Example

SELECT toYear(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                      2023 │
└───────────────────────────────────────────┘

toQuarter

Returns the quarter (1-4) of a date or date with time.

Syntax

toQuarter(value)

Alias: QUARTER

Arguments

Returned value

  • The quarter of the year (1, 2, 3 or 4) of the given date/time. UInt8.

Example

SELECT toQuarter(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toQuarter(toDateTime('2023-04-21 10:20:30'))─┐
│                                            2 │
└──────────────────────────────────────────────┘

toMonth

Returns the month component (1-12) of a date or date with time.

Syntax

toMonth(value)

Alias: MONTH

Arguments

Returned value

  • The month of the year (1 - 12) of the given date/time. UInt8.

Example

SELECT toMonth(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                          4 │
└────────────────────────────────────────────┘

toDayOfYear

Returns the number of the day within the year (1-366) of a date or date with time.

Syntax

toDayOfYear(value)

Alias: DAYOFYEAR

Arguments

Returned value

  • The day of the year (1 - 366) of the given date/time. UInt16.

Example

SELECT toDayOfYear(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toDayOfYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                            111 │
└────────────────────────────────────────────────┘

toDayOfMonth

Returns the number of the day within the month (1-31) of a date or date with time.

Syntax

toDayOfMonth(value)

Aliases: DAYOFMONTH, DAY

Arguments

Returned value

  • The day of the month (1 - 31) of the given date/time. UInt8.

Example

SELECT toDayOfMonth(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toDayOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                              21 │
└─────────────────────────────────────────────────┘

toDayOfWeek

Returns the number of the day within the week of a date or date with time.

The two-argument form of toDayOfWeek() enables you to specify whether the week starts on Monday or Sunday, and whether the return value should be in the range from 0 to 6 or 1 to 7. If the mode argument is omitted, the default mode is 0. The time zone of the date can be specified as the third argument.

Mode First day of week Range
0 Monday 1-7: Monday = 1, Tuesday = 2, …, Sunday = 7
1 Monday 0-6: Monday = 0, Tuesday = 1, …, Sunday = 6
2 Sunday 0-6: Sunday = 0, Monday = 1, …, Saturday = 6
3 Sunday 1-7: Sunday = 1, Monday = 2, …, Saturday = 7

Syntax

toDayOfWeek(t[, mode[, timezone]])

Alias: DAYOFWEEK.

Arguments

  • t - a Date, Date32, DateTime or DateTime64
  • mode - determines what the first day of the week is. Possible values are 0, 1, 2 or 3. See the table above for the differences.
  • timezone - optional parameter, it behaves like any other conversion function

The first argument can also be specified as String in a format supported by parseDateTime64BestEffort(). Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.

Returned value

  • The day of the week (1-7), depending on the chosen mode, of the given date/time

Example

The following date is April 21, 2023, which was a Friday:

SELECT
    toDayOfWeek(toDateTime('2023-04-21')),
    toDayOfWeek(toDateTime('2023-04-21'), 1)

Result:

┌─toDayOfWeek(toDateTime('2023-04-21'))─┬─toDayOfWeek(toDateTime('2023-04-21'), 1)─┐
│                                     5 │                                        4 │
└───────────────────────────────────────┴──────────────────────────────────────────┘

toHour

Returns the hour component (0-24) of a date with time.

Assumes that if clocks are moved ahead, it is by one hour and occurs at 2 a.m., and if clocks are moved back, it is by one hour and occurs at 3 a.m. (which is not always exactly when it occurs - it depends on the timezone).

Syntax

toHour(value)

Alias: HOUR

Arguments

Returned value

  • The hour of the day (0 - 23) of the given date/time. UInt8.

Example

SELECT toHour(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toHour(toDateTime('2023-04-21 10:20:30'))─┐
│                                        10 │
└───────────────────────────────────────────┘

toMinute

Returns the minute component (0-59) a date with time.

Syntax

toMinute(value)

Alias: MINUTE

Arguments

Returned value

  • The minute of the hour (0 - 59) of the given date/time. UInt8.

Example

SELECT toMinute(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toMinute(toDateTime('2023-04-21 10:20:30'))─┐
│                                          20 │
└─────────────────────────────────────────────┘

toSecond

Returns the second component (0-59) of a date with time. Leap seconds are not considered.

Syntax

toSecond(value)

Alias: SECOND

Arguments

Returned value

  • The second in the minute (0 - 59) of the given date/time. UInt8.

Example

SELECT toSecond(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toSecond(toDateTime('2023-04-21 10:20:30'))─┐
│                                          30 │
└─────────────────────────────────────────────┘

toMillisecond

Returns the millisecond component (0-999) of a date with time.

Syntax

toMillisecond(value)
  • Arguments**

Alias: MILLISECOND

SELECT toMillisecond(toDateTime64('2023-04-21 10:20:30.456', 3))

Result:

┌──toMillisecond(toDateTime64('2023-04-21 10:20:30.456', 3))─┐
│                                                        456 │
└────────────────────────────────────────────────────────────┘

Returned value

  • The millisecond in the minute (0 - 59) of the given date/time. UInt16.

toUnixTimestamp

Converts a string, a date or a date with time to the Unix Timestamp in UInt32 representation.

If the function is called with a string, it accepts an optional timezone argument.

Syntax

toUnixTimestamp(date)
toUnixTimestamp(str, [timezone])

Returned value

  • Returns the unix timestamp. UInt32.

Example

SELECT
    '2017-11-05 08:07:47' AS dt_str,
    toUnixTimestamp(dt_str) AS from_str,
    toUnixTimestamp(dt_str, 'Asia/Tokyo') AS from_str_tokyo,
    toUnixTimestamp(toDateTime(dt_str)) AS from_datetime,
    toUnixTimestamp(toDateTime64(dt_str, 0)) AS from_datetime64,
    toUnixTimestamp(toDate(dt_str)) AS from_date,
    toUnixTimestamp(toDate32(dt_str)) AS from_date32
FORMAT Vertical;

Result:

Row 1:
──────
dt_str:          2017-11-05 08:07:47
from_str:        1509869267
from_str_tokyo:  1509836867
from_datetime:   1509869267
from_datetime64: 1509869267
from_date:       1509840000
from_date32:     1509840000

The return type of toStartOf*, toLastDayOf*, toMonday, timeSlot functions described below is determined by the configuration parameter enable_extended_results_for_datetime_functions which is 0 by default.

Behavior for * enable_extended_results_for_datetime_functions = 0: * Functions toStartOfYear, toStartOfISOYear, toStartOfQuarter, toStartOfMonth, toStartOfWeek, toLastDayOfWeek, toLastDayOfMonth, toMonday return Date or DateTime. * Functions toStartOfDay, toStartOfHour, toStartOfFifteenMinutes, toStartOfTenMinutes, toStartOfFiveMinutes, toStartOfMinute, timeSlot return DateTime. Though these functions can take values of the extended types Date32 and DateTime64 as an argument, passing them a time outside the normal range (year 1970 to 2149 for Date / 2106 for DateTime) will produce wrong results. * enable_extended_results_for_datetime_functions = 1: * Functions toStartOfYear, toStartOfISOYear, toStartOfQuarter, toStartOfMonth, toStartOfWeek, toLastDayOfWeek, toLastDayOfMonth, toMonday return Date or DateTime if their argument is a Date or DateTime, and they return Date32 or DateTime64 if their argument is a Date32 or DateTime64. * Functions toStartOfDay, toStartOfHour, toStartOfFifteenMinutes, toStartOfTenMinutes, toStartOfFiveMinutes, toStartOfMinute, timeSlot return DateTime if their argument is a Date or DateTime, and they return DateTime64 if their argument is a Date32 or DateTime64.


toStartOfYear

Rounds down a date or date with time to the first day of the year. Returns the date as a Date object.

Syntax

toStartOfYear(value)

Arguments

Returned value

  • The first day of the year of the input date/time. Date.

Example

SELECT toStartOfYear(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toStartOfYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                       2023-01-01 │
└──────────────────────────────────────────────────┘

toStartOfISOYear

Rounds down a date or date with time to the first day of the ISO year, which can be different than a “regular” year. (See https://en.wikipedia.org/wiki/ISO_week_date.)

Syntax

toStartOfISOYear(value)

Arguments

Returned value

  • The first day of the year of the input date/time. Date.

Example

SELECT toStartOfISOYear(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toStartOfISOYear(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-01-02 │
└─────────────────────────────────────────────────────┘

toStartOfQuarter

Rounds down a date or date with time to the first day of the quarter. The first day of the quarter is either 1 January, 1 April, 1 July, or 1 October. Returns the date.

Syntax

toStartOfQuarter(value)

Arguments

Returned value

  • The first day of the quarter of the given date/time. Date.

Example

SELECT toStartOfQuarter(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toStartOfQuarter(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-04-01 │
└─────────────────────────────────────────────────────┘

toStartOfMonth

Rounds down a date or date with time to the first day of the month. Returns the date.

Syntax

toStartOfMonth(value)

Arguments

Returned value

  • The first day of the month of the given date/time. Date.

Example

SELECT toStartOfMonth(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toStartOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                        2023-04-01 │
└───────────────────────────────────────────────────┘

The behavior of parsing incorrect dates is implementation specific. ClickHouse may return zero date, throw an exception, or do “natural” overflow.


toLastDayOfMonth

Rounds a date or date with time to the last day of the month. Returns the date.

Syntax

toLastDayOfMonth(value)

Alias: LAST_DAY

Arguments

Returned value

  • The last day of the month of the given date/time=. Date.

Example

SELECT toLastDayOfMonth(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toLastDayOfMonth(toDateTime('2023-04-21 10:20:30'))─┐
│                                          2023-04-30 │
└─────────────────────────────────────────────────────┘

toMonday

Rounds down a date or date with time to the nearest Monday. Returns the date.

Syntax

toMonday(value)

Arguments

Returned value

  • The date of the nearest Monday on or prior to the given date. Date.

Example

SELECT
    toMonday(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toMonday(toDate('2023-04-24')), /* already a Monday */

Result:

┌─toMonday(toDateTime('2023-04-21 10:20:30'))─┬─toMonday(toDate('2023-04-24'))─┐
│                                  2023-04-17 │                     2023-04-24 │
└─────────────────────────────────────────────┴────────────────────────────────┘

toStartOfWeek

Rounds a date or date with time down to the nearest Sunday or Monday. Returns the date. The mode argument works exactly like the mode argument in function toWeek(). If no mode is specified, it defaults to 0.

Syntax

toStartOfWeek(t[, mode[, timezone]])

Arguments

  • t - a Date, Date32, DateTime or DateTime64
  • mode - determines the first day of the week as described in the toWeek() function
  • timezone - Optional parameter, it behaves like any other conversion function

Returned value

  • The date of the nearest Sunday or Monday on or prior to the given date, depending on the mode. Date.

Example

SELECT
    toStartOfWeek(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toStartOfWeek(toDateTime('2023-04-21 10:20:30'), 1), /* a Friday */
    toStartOfWeek(toDate('2023-04-24')), /* a Monday */
    toStartOfWeek(toDate('2023-04-24'), 1) /* a Monday */
FORMAT Vertical

Result:

Row 1:
──────
toStartOfWeek(toDateTime('2023-04-21 10:20:30')):    2023-04-16
toStartOfWeek(toDateTime('2023-04-21 10:20:30'), 1): 2023-04-17
toStartOfWeek(toDate('2023-04-24')):                 2023-04-23
toStartOfWeek(toDate('2023-04-24'), 1):              2023-04-24

toLastDayOfWeek

Rounds a date or date with time up to the nearest Saturday or Sunday. Returns the date. The mode argument works exactly like the mode argument in function toWeek(). If no mode is specified, mode is assumed as 0.

Syntax

toLastDayOfWeek(t[, mode[, timezone]])

Arguments

  • t - a Date, Date32, DateTime or DateTime64
  • mode - determines the last day of the week as described in the toWeek function
  • timezone - Optional parameter, it behaves like any other conversion function

Returned value

  • The date of the nearest Sunday or Monday on or after the given date, depending on the mode. Date.

Example

SELECT
    toLastDayOfWeek(toDateTime('2023-04-21 10:20:30')), /* a Friday */
    toLastDayOfWeek(toDateTime('2023-04-21 10:20:30'), 1), /* a Friday */
    toLastDayOfWeek(toDate('2023-04-22')), /* a Saturday */
    toLastDayOfWeek(toDate('2023-04-22'), 1) /* a Saturday */
FORMAT Vertical

Result:

Row 1:
──────
toLastDayOfWeek(toDateTime('2023-04-21 10:20:30')):    2023-04-22
toLastDayOfWeek(toDateTime('2023-04-21 10:20:30'), 1): 2023-04-23
toLastDayOfWeek(toDate('2023-04-22')):                 2023-04-22
toLastDayOfWeek(toDate('2023-04-22'), 1):              2023-04-23

toStartOfDay

Rounds down a date with time to the start of the day.

Syntax

toStartOfDay(value)

Arguments

Returned value

  • The start of the day of the given date/time. DateTime.

Example

SELECT toStartOfDay(toDateTime('2023-04-21 10:20:30'))

Result:

┌─toStartOfDay(toDateTime('2023-04-21 10:20:30'))─┐
│                             2023-04-21 00:00:00 │
└─────────────────────────────────────────────────┘

toStartOfHour

Rounds down a date with time to the start of the hour.

Syntax

toStartOfHour(value)

Arguments

Returned value

  • The start of the hour of the given date/time. DateTime.

Example

SELECT
    toStartOfHour(toDateTime('2023-04-21 10:20:30')),
    toStartOfHour(toDateTime64('2023-04-21', 6))

Result:

┌─toStartOfHour(toDateTime('2023-04-21 10:20:30'))─┬─toStartOfHour(toDateTime64('2023-04-21', 6))─┐
│                              2023-04-21 10:00:00 │                          2023-04-21 00:00:00 │
└──────────────────────────────────────────────────┴──────────────────────────────────────────────┘

toStartOfMinute

Rounds down a date with time to the start of the minute.

Syntax

toStartOfMinute(value)

Arguments

Returned value

  • The start of the minute of the given date/time. DateTime.

Example

SELECT
    toStartOfMinute(toDateTime('2023-04-21 10:20:30')),
    toStartOfMinute(toDateTime64('2023-04-21 10:20:30.5300', 8))
FORMAT Vertical

Result:

Row 1:
──────
toStartOfMinute(toDateTime('2023-04-21 10:20:30')):           2023-04-21 10:20:00
toStartOfMinute(toDateTime64('2023-04-21 10:20:30.5300', 8)): 2023-04-21 10:20:00

toStartOfSecond

Truncates sub-seconds.

Syntax

toStartOfSecond(value, [timezone])

Arguments

  • value — Date and time. DateTime64.
  • timezoneTimezone for the returned value (optional). If not specified, the function uses the timezone of the value parameter. String.

Returned value

Examples

Query without timezone:

WITH toDateTime64('2020-01-01 10:20:30.999', 3) AS dt64
SELECT toStartOfSecond(dt64);

Result:

┌───toStartOfSecond(dt64)─┐
│ 2020-01-01 10:20:30.000 │
└─────────────────────────┘

Query with timezone:

WITH toDateTime64('2020-01-01 10:20:30.999', 3) AS dt64
SELECT toStartOfSecond(dt64, 'Asia/Istanbul');

Result:

┌─toStartOfSecond(dt64, 'Asia/Istanbul')─┐
│                2020-01-01 13:20:30.000 │
└────────────────────────────────────────┘

See also

  • Timezone server configuration parameter.

toStartOfMillisecond

Rounds down a date with time to the start of the milliseconds.

Syntax

toStartOfMillisecond(value, [timezone])

Arguments

  • value — Date and time. DateTime64.
  • timezoneTimezone for the returned value (optional). If not specified, the function uses the timezone of the value parameter. String.

Returned value

Examples

Query without timezone:

WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMillisecond(dt64);

Result:

┌────toStartOfMillisecond(dt64)─┐
│ 2020-01-01 10:20:30.999000000 │
└───────────────────────────────┘

Query with timezone:

┌─toStartOfMillisecond(dt64, 'Asia/Istanbul')─┐
│               2020-01-01 12:20:30.999000000 │
└─────────────────────────────────────────────┘

Result:

┌─toStartOfMillisecond(dt64, 'Asia/Istanbul')─┐
│                     2020-01-01 12:20:30.999 │
└─────────────────────────────────────────────┘

toStartOfMicrosecond

Rounds down a date with time to the start of the microseconds.

Syntax

toStartOfMicrosecond(value, [timezone])

Arguments

  • value — Date and time. DateTime64.
  • timezoneTimezone for the returned value (optional). If not specified, the function uses the timezone of the value parameter. String.

Returned value

Examples

Query without timezone:

WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMicrosecond(dt64);

Result:

┌────toStartOfMicrosecond(dt64)─┐
│ 2020-01-01 10:20:30.999999000 │
└───────────────────────────────┘

Query with timezone:

WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfMicrosecond(dt64, 'Asia/Istanbul');

Result:

┌─toStartOfMicrosecond(dt64, 'Asia/Istanbul')─┐
│               2020-01-01 12:20:30.999999000 │
└─────────────────────────────────────────────┘

See also

  • Timezone server configuration parameter.

toStartOfNanosecond

Rounds down a date with time to the start of the nanoseconds.

Syntax

toStartOfNanosecond(value, [timezone])

Arguments

  • value — Date and time. DateTime64.
  • timezoneTimezone for the returned value (optional). If not specified, the function uses the timezone of the value parameter. String.

Returned value

Examples

Query without timezone:

WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfNanosecond(dt64);

Result:

┌─────toStartOfNanosecond(dt64)─┐
│ 2020-01-01 10:20:30.999999999 │
└───────────────────────────────┘

Query with timezone:

WITH toDateTime64('2020-01-01 10:20:30.999999999', 9) AS dt64
SELECT toStartOfNanosecond(dt64, 'Asia/Istanbul');

Result:

┌─toStartOfNanosecond(dt64, 'Asia/Istanbul')─┐
│              2020-01-01 12:20:30.999999999 │
└────────────────────────────────────────────┘

See also

  • Timezone server configuration parameter.

toStartOfFiveMinutes

Rounds down a date with time to the start of the five-minute interval.

Syntax

toStartOfFiveMinutes(value)

Arguments

Returned value

  • The start of the five-minute interval of the given date/time. DateTime.

Example

SELECT
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfFiveMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical

Result:

Row 1:
──────
toStartOfFiveMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:15:00
toStartOfFiveMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:20:00
toStartOfFiveMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:20:00

toStartOfTenMinutes

Rounds down a date with time to the start of the ten-minute interval.

Syntax

toStartOfTenMinutes(value)

Arguments

Returned value

  • The start of the ten-minute interval of the given date/time. DateTime.

Example

SELECT
    toStartOfTenMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfTenMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfTenMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical

Result:

Row 1:
──────
toStartOfTenMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:10:00
toStartOfTenMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:20:00
toStartOfTenMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:20:00

toStartOfFifteenMinutes

Rounds down the date with time to the start of the fifteen-minute interval.

Syntax

toStartOfFifteenMinutes(value)

Arguments

Returned value

  • The start of the fifteen-minute interval of the given date/time. DateTime.

Example

SELECT
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:17:00')),
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:20:00')),
    toStartOfFifteenMinutes(toDateTime('2023-04-21 10:23:00'))
FORMAT Vertical

Result:

Row 1:
──────
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:17:00')): 2023-04-21 10:15:00
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:20:00')): 2023-04-21 10:15:00
toStartOfFifteenMinutes(toDateTime('2023-04-21 10:23:00')): 2023-04-21 10:15:00

toStartOfInterval

This function generalizes other toStartOf*() functions with toStartOfInterval(date_or_date_with_time, INTERVAL x unit [, time_zone]) syntax. For example, - toStartOfInterval(t, INTERVAL 1 YEAR) returns the same as toStartOfYear(t), - toStartOfInterval(t, INTERVAL 1 MONTH) returns the same as toStartOfMonth(t), - toStartOfInterval(t, INTERVAL 1 DAY) returns the same as toStartOfDay(t), - toStartOfInterval(t, INTERVAL 15 MINUTE) returns the same as toStartOfFifteenMinutes(t).

The calculation is performed relative to specific points in time:

Interval Start
YEAR year 0
QUARTER 1900 Q1
MONTH 1900 January
WEEK 1970, 1st week (01-05)
DAY 1970-01-01
HOUR (*)
MINUTE 1970-01-01 00:00:00
SECOND 1970-01-01 00:00:00
MILLISECOND 1970-01-01 00:00:00
MICROSECOND 1970-01-01 00:00:00
NANOSECOND 1970-01-01 00:00:00

(*) hour intervals are special: the calculation is always performed relative to 00:00:00 (midnight) of the current day. As a result, only hour values between 1 and 23 are useful.

If unit WEEK was specified, toStartOfInterval assumes that weeks start on Monday. Note that this behavior is different from that of function toStartOfWeek in which weeks start by default on Sunday.

See Also

toTime

Converts a date with time to a certain fixed date, while preserving the time.

toRelativeYearNum

Converts a date, or date with time, to the number of the year, starting from a certain fixed point in the past.

toRelativeQuarterNum

Converts a date, or date with time, to the number of the quarter, starting from a certain fixed point in the past.

toRelativeMonthNum

Converts a date, or date with time, to the number of the month, starting from a certain fixed point in the past.

toRelativeWeekNum

Converts a date, or date with time, to the number of the week, starting from a certain fixed point in the past.

toRelativeDayNum

Converts a date, or date with time, to the number of the day, starting from a certain fixed point in the past.

toRelativeHourNum

Converts a date, or date with time, to the number of the hour, starting from a certain fixed point in the past.

toRelativeMinuteNum

Converts a date, or date with time, to the number of the minute, starting from a certain fixed point in the past.

toRelativeSecondNum

Converts a date, or date with time, to the number of the second, starting from a certain fixed point in the past.

toISOYear

Converts a date, or date with time, to a UInt16 number containing the ISO Year number.

toISOWeek

Converts a date, or date with time, to a UInt8 number containing the ISO Week number.

toWeek

This function returns the week number for date or datetime. The two-argument form of toWeek() enables you to specify whether the week starts on Sunday or Monday and whether the return value should be in the range from 0 to 53 or from 1 to 53. If the mode argument is omitted, the default mode is 0.

toISOWeek() is a compatibility function that is equivalent to toWeek(date,3).

The following table describes how the mode argument works.

Mode First day of week Range Week 1 is the first week …
0 Sunday 0-53 with a Sunday in this year
1 Monday 0-53 with 4 or more days this year
2 Sunday 1-53 with a Sunday in this year
3 Monday 1-53 with 4 or more days this year
4 Sunday 0-53 with 4 or more days this year
5 Monday 0-53 with a Monday in this year
6 Sunday 1-53 with 4 or more days this year
7 Monday 1-53 with a Monday in this year
8 Sunday 1-53 contains January 1
9 Monday 1-53 contains January 1

For mode values with a meaning of “with 4 or more days this year,” weeks are numbered according to ISO 8601:1988:

  • If the week containing January 1 has 4 or more days in the new year, it is week 1.
  • Otherwise, it is the last week of the previous year, and the next week is week 1.

For mode values with a meaning of “contains January 1”, the week contains January 1 is week 1. It does not matter how many days in the new year the week contained, even if it contained only one day. I.e. if the last week of December contains January 1 of the next year, it will be week 1 of the next year.

Syntax

toWeek(t[, mode[, time_zone]])

Alias: WEEK

Arguments

  • t – Date or DateTime.
  • mode – Optional parameter, Range of values is [0,9], default is 0.
  • Timezone – Optional parameter, it behaves like any other conversion function.

The first argument can also be specified as String in a format supported by parseDateTime64BestEffort(). Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.

Example

SELECT toDate('2016-12-27') AS date, toWeek(date) AS week0, toWeek(date,1) AS week1, toWeek(date,9) AS week9;
┌───────date─┬─week0─┬─week1─┬─week9─┐
│ 2016-12-27 │    52 │    52 │     1 │
└────────────┴───────┴───────┴───────┘

toYearWeek

Returns year and week for a date. The year in the result may be different from the year in the date argument for the first and the last week of the year.

The mode argument works like the mode argument to toWeek(). For the single-argument syntax, a mode value of 0 is used.

toISOYear() is a compatibility function that is equivalent to intDiv(toYearWeek(date,3),100).

The week number returned by toYearWeek() can be different from what the toWeek() returns. toWeek() always returns week number in the context of the given year, and in case toWeek() returns 0, toYearWeek() returns the value corresponding to the last week of previous year. See prev_yearWeek in example below.


Syntax

toYearWeek(t[, mode[, timezone]])

Alias: YEARWEEK

The first argument can also be specified as String in a format supported by parseDateTime64BestEffort(). Support for string arguments exists only for reasons of compatibility with MySQL which is expected by certain 3rd party tools. As string argument support may in future be made dependent on new MySQL-compatibility settings and because string parsing is generally slow, it is recommended to not use it.

Example

SELECT toDate('2016-12-27') AS date, toYearWeek(date) AS yearWeek0, toYearWeek(date,1) AS yearWeek1, toYearWeek(date,9) AS yearWeek9, toYearWeek(toDate('2022-01-01')) AS prev_yearWeek;
┌───────date─┬─yearWeek0─┬─yearWeek1─┬─yearWeek9─┬─prev_yearWeek─┐
│ 2016-12-27 │    201652 │    201652 │    201701 │        202152 │
└────────────┴───────────┴───────────┴───────────┴───────────────┘

toDaysSinceYearZero

Returns for a given date, the number of days passed since 1 January 0000 in the proleptic Gregorian calendar defined by ISO 8601. The calculation is the same as in MySQL’s TO_DAYS() function.

Syntax

toDaysSinceYearZero(date[, time_zone])

Alias: TO_DAYS

Arguments

  • date — The date to calculate the number of days passed since year zero from. Date, Date32, DateTime or DateTime64.
  • time_zone — A String type const value or an expression represent the time zone. String types

Returned value

The number of days passed since date 0000-01-01. UInt32.

Example

SELECT toDaysSinceYearZero(toDate('2023-09-08'));

Result:

┌─toDaysSinceYearZero(toDate('2023-09-08')))─┐
│                                     713569 │
└────────────────────────────────────────────┘

See Also

fromDaysSinceYearZero

Returns for a given number of days passed since 1 January 0000 the corresponding date in the proleptic Gregorian calendar defined by ISO 8601. The calculation is the same as in MySQL’s FROM_DAYS() function.

The result is undefined if it cannot be represented within the bounds of the Date type.

Syntax

fromDaysSinceYearZero(days)

Alias: FROM_DAYS

Arguments

  • days — The number of days passed since year zero.

Returned value

The date corresponding to the number of days passed since year zero. Date.

Example

SELECT fromDaysSinceYearZero(739136), fromDaysSinceYearZero(toDaysSinceYearZero(toDate('2023-09-08')));

Result:

┌─fromDaysSinceYearZero(739136)─┬─fromDaysSinceYearZero(toDaysSinceYearZero(toDate('2023-09-08')))─┐
│                    2023-09-08 │                                                       2023-09-08 │
└───────────────────────────────┴──────────────────────────────────────────────────────────────────┘

See Also

fromDaysSinceYearZero32

Like fromDaysSinceYearZero but returns a Date32.

age

Returns the unit component of the difference between startdate and enddate. The difference is calculated using a precision of 1 nanosecond. E.g. the difference between 2021-12-29 and 2022-01-01 is 3 days for day unit, 0 months for month unit, 0 years for year unit.

For an alternative to age, see function date_diff.

Syntax

age('unit', startdate, enddate, [timezone])

Arguments

  • unit — The type of interval for result. String. Possible values:
    • nanosecond, nanoseconds, ns
    • microsecond, microseconds, us, u
    • millisecond, milliseconds, ms
    • second, seconds, ss, s
    • minute, minutes, mi, n
    • hour, hours, hh, h
    • day, days, dd, d
    • week, weeks, wk, ww
    • month, months, mm, m
    • quarter, quarters, qq, q
    • year, years, yyyy, yy
  • startdate — The first time value to subtract (the subtrahend). Date, Date32, DateTime or DateTime64.
  • enddate — The second time value to subtract from (the minuend). Date, Date32, DateTime or DateTime64.
  • timezoneTimezone name (optional). If specified, it is applied to both startdate and enddate. If not specified, timezones of startdate and enddate are used. If they are not the same, the result is unspecified. String.

Returned value

Difference between enddate and startdate expressed in unit. Int.

Example

SELECT age('hour', toDateTime('2018-01-01 22:30:00'), toDateTime('2018-01-02 23:00:00'));

Result:

┌─age('hour', toDateTime('2018-01-01 22:30:00'), toDateTime('2018-01-02 23:00:00'))─┐
│                                                                                24 │
└───────────────────────────────────────────────────────────────────────────────────┘
SELECT
    toDate('2022-01-01') AS e,
    toDate('2021-12-29') AS s,
    age('day', s, e) AS day_age,
    age('month', s, e) AS month__age,
    age('year', s, e) AS year_age;

Result:

┌──────────e─┬──────────s─┬─day_age─┬─month__age─┬─year_age─┐
│ 2022-01-01 │ 2021-12-29 │       3 │          0 │        0 │
└────────────┴────────────┴─────────┴────────────┴──────────┘

date_diff

Returns the count of the specified unit boundaries crossed between the startdate and the enddate. The difference is calculated using relative units, e.g. the difference between 2021-12-29 and 2022-01-01 is 3 days for unit day (see toRelativeDayNum), 1 month for unit month (see toRelativeMonthNum) and 1 year for unit year (see toRelativeYearNum).

If unit week was specified, date_diff assumes that weeks start on Monday. Note that this behavior is different from that of function toWeek() in which weeks start by default on Sunday.

For an alternative to date_diff, see function age.

Syntax

date_diff('unit', startdate, enddate, [timezone])

Aliases: dateDiff, DATE_DIFF, timestampDiff, timestamp_diff, TIMESTAMP_DIFF.

Arguments

  • unit — The type of interval for result. String. Possible values:
    • nanosecond, nanoseconds, ns
    • microsecond, microseconds, us, u
    • millisecond, milliseconds, ms
    • second, seconds, ss, s
    • minute, minutes, mi, n
    • hour, hours, hh, h
    • day, days, dd, d
    • week, weeks, wk, ww
    • month, months, mm, m
    • quarter, quarters, qq, q
    • year, years, yyyy, yy
  • startdate — The first time value to subtract (the subtrahend). Date, Date32, DateTime or DateTime64.
  • enddate — The second time value to subtract from (the minuend). Date, Date32, DateTime or DateTime64.
  • timezoneTimezone name (optional). If specified, it is applied to both startdate and enddate. If not specified, timezones of startdate and enddate are used. If they are not the same, the result is unspecified. String.

Returned value

Difference between enddate and startdate expressed in unit. Int.

Example

SELECT dateDiff('hour', toDateTime('2018-01-01 22:00:00'), toDateTime('2018-01-02 23:00:00'));

Result:

┌─dateDiff('hour', toDateTime('2018-01-01 22:00:00'), toDateTime('2018-01-02 23:00:00'))─┐
│                                                                                     25 │
└────────────────────────────────────────────────────────────────────────────────────────┘
SELECT
    toDate('2022-01-01') AS e,
    toDate('2021-12-29') AS s,
    dateDiff('day', s, e) AS day_diff,
    dateDiff('month', s, e) AS month__diff,
    dateDiff('year', s, e) AS year_diff;

Result:

┌──────────e─┬──────────s─┬─day_diff─┬─month__diff─┬─year_diff─┐
│ 2022-01-01 │ 2021-12-29 │        3 │           1 │         1 │
└────────────┴────────────┴──────────┴─────────────┴───────────┘

date_trunc

Truncates date and time data to the specified part of date.

Syntax

date_trunc(unit, value[, timezone])

Alias: dateTrunc.

Arguments

  • unit — The type of interval to truncate the result. String Literal. Possible values:

    • nanosecond - Compatible only with DateTime64
    • microsecond - Compatible only with DateTime64
    • milisecond - Compatible only with DateTime64
    • second
    • minute
    • hour
    • day
    • week
    • month
    • quarter
    • year

    unit argument is case-insensitive.

  • value — Date and time. DateTime or DateTime64.

  • timezoneTimezone name for the returned value (optional). If not specified, the function uses the timezone of the value parameter. String.

Returned value

  • Value, truncated to the specified part of date. DateTime.

Example

Query without timezone:

SELECT now(), date_trunc('hour', now());

Result:

┌───────────────now()─┬─date_trunc('hour', now())─┐
│ 2020-09-28 10:40:45 │       2020-09-28 10:00:00 │
└─────────────────────┴───────────────────────────┘

Query with the specified timezone:

SELECT now(), date_trunc('hour', now(), 'Asia/Istanbul');

Result:

┌───────────────now()─┬─date_trunc('hour', now(), 'Asia/Istanbul')─┐
│ 2020-09-28 10:46:26 │                        2020-09-28 13:00:00 │
└─────────────────────┴────────────────────────────────────────────┘

See Also

date_add

Adds the time interval or date interval to the provided date or date with time.

If the addition results in a value outside the bounds of the data type, the result is undefined.

Syntax

date_add(unit, value, date)

Alternative syntax:

date_add(date, INTERVAL value unit)

Aliases: dateAdd, DATE_ADD.

Arguments

  • unit — The type of interval to add. Note: This is not a String and must therefore not be quoted. Possible values:
    • second
    • minute
    • hour
    • day
    • week
    • month
    • quarter
    • year
  • value — Value of interval to add. Int.
  • date — The date or date with time to which value is added. Date, Date32, DateTime or DateTime64.

Returned value

Date or date with time obtained by adding value, expressed in unit, to date. Date, Date32, DateTime or DateTime64.

Example

SELECT date_add(YEAR, 3, toDate('2018-01-01'));

Result:

┌─plus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2021-01-01 │
└───────────────────────────────────────────────┘
SELECT date_add(toDate('2018-01-01'), INTERVAL 3 YEAR);

Result:

┌─plus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                    2021-01-01 │
└───────────────────────────────────────────────┘

See Also

date_sub

Subtracts the time interval or date interval from the provided date or date with time.

If the subtraction results in a value outside the bounds of the data type, the result is undefined.

Syntax

date_sub(unit, value, date)

Alternative syntax:

date_sub(date, INTERVAL value unit)

Aliases: dateSub, DATE_SUB.

Arguments

  • unit — The type of interval to subtract. Note: This is not a String and must therefore not be quoted.

    Possible values:

    • second
    • minute
    • hour
    • day
    • week
    • month
    • quarter
    • year
  • value — Value of interval to subtract. Int.

  • date — The date or date with time from which value is subtracted. Date, Date32, DateTime or DateTime64.

Returned value

Date or date with time obtained by subtracting value, expressed in unit, from date. Date, Date32, DateTime or DateTime64.

Example

SELECT date_sub(YEAR, 3, toDate('2018-01-01'));

Result:

┌─minus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                     2015-01-01 │
└────────────────────────────────────────────────┘
SELECT date_sub(toDate('2018-01-01'), INTERVAL 3 YEAR);

Result:

┌─minus(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                     2015-01-01 │
└────────────────────────────────────────────────┘

See Also

timestamp_add

Adds the specified time value with the provided date or date time value.

If the addition results in a value outside the bounds of the data type, the result is undefined.

Syntax

timestamp_add(date, INTERVAL value unit)

Aliases: timeStampAdd, TIMESTAMP_ADD.

Arguments

  • date — Date or date with time. Date, Date32, DateTime or DateTime64.
  • value — Value of interval to add. Int.
  • unit — The type of interval to add. String. Possible values:
    • second
    • minute
    • hour
    • day
    • week
    • month
    • quarter
    • year

Returned value

Date or date with time with the specified value expressed in unit added to date. Date, Date32, DateTime or DateTime64.

Example

select timestamp_add(toDate('2018-01-01'), INTERVAL 3 MONTH);

Result:

┌─plus(toDate('2018-01-01'), toIntervalMonth(3))─┐
│                                     2018-04-01 │
└────────────────────────────────────────────────┘

timestamp_sub

Subtracts the time interval from the provided date or date with time.

If the subtraction results in a value outside the bounds of the data type, the result is undefined.

Syntax

timestamp_sub(unit, value, date)

Aliases: timeStampSub, TIMESTAMP_SUB.

Arguments

  • unit — The type of interval to subtract. String. Possible values:
    • second
    • minute
    • hour
    • day
    • week
    • month
    • quarter
    • year
  • value — Value of interval to subtract. Int.
  • date — Date or date with time. Date, Date32, DateTime or DateTime64.

Returned value

Date or date with time obtained by subtracting value, expressed in unit, from date. Date, Date32, DateTime or DateTime64.

Example

select timestamp_sub(MONTH, 5, toDateTime('2018-12-18 01:02:03'));

Result:

┌─minus(toDateTime('2018-12-18 01:02:03'), toIntervalMonth(5))─┐
│                                          2018-07-18 01:02:03 │
└──────────────────────────────────────────────────────────────┘

addDate

Adds the time interval to the provided date, date with time or String-encoded date / date with time.

If the addition results in a value outside the bounds of the data type, the result is undefined.

Syntax

addDate(date, interval)

Arguments

Returned value

Date or date with time obtained by adding interval to date. Date, Date32, DateTime or DateTime64.

Example

SELECT addDate(toDate('2018-01-01'), INTERVAL 3 YEAR);

Result:

┌─addDate(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                       2021-01-01 │
└──────────────────────────────────────────────────┘

Alias: ADDDATE

See Also

subDate

Subtracts the time interval from the provided date, date with time or String-encoded date / date with time.

If the subtraction results in a value outside the bounds of the data type, the result is undefined.

Syntax

subDate(date, interval)

Arguments

Returned value

Date or date with time obtained by subtracting interval from date. Date, Date32, DateTime or DateTime64.

Example

SELECT subDate(toDate('2018-01-01'), INTERVAL 3 YEAR);

Result:

┌─subDate(toDate('2018-01-01'), toIntervalYear(3))─┐
│                                       2015-01-01 │
└──────────────────────────────────────────────────┘

Alias: SUBDATE

See Also

now

Returns the current date and time at the moment of query analysis. The function is a constant expression.

Alias: current_timestamp.

Syntax

now([timezone])

Arguments

Returned value

Example

Query without timezone:

SELECT now();

Result:

┌───────────────now()─┐
│ 2020-10-17 07:42:09 │
└─────────────────────┘

Query with the specified timezone:

SELECT now('Asia/Istanbul');

Result:

┌─now('Asia/Istanbul')─┐
│  2020-10-17 10:42:23 │
└──────────────────────┘

now64

Returns the current date and time with sub-second precision at the moment of query analysis. The function is a constant expression.

Syntax

now64([scale], [timezone])

Arguments

  • scale - Tick size (precision): 10-precision seconds. Valid range: [ 0 : 9 ]. Typically, are used - 3 (default) (milliseconds), 6 (microseconds), 9 (nanoseconds).
  • timezoneTimezone name for the returned value (optional). String.

Returned value

  • Current date and time with sub-second precision. DateTime64.

Example

SELECT now64(), now64(9, 'Asia/Istanbul');

Result:

┌─────────────────now64()─┬─────now64(9, 'Asia/Istanbul')─┐
│ 2022-08-21 19:34:26.196 │ 2022-08-21 22:34:26.196542766 │
└─────────────────────────┴───────────────────────────────┘

nowInBlock

Returns the current date and time at the moment of processing of each block of data. In contrast to the function now, it is not a constant expression, and the returned value will be different in different blocks for long-running queries.

It makes sense to use this function to generate the current time in long-running INSERT SELECT queries.

Syntax

nowInBlock([timezone])

Arguments

Returned value

  • Current date and time at the moment of processing of each block of data. DateTime.

Example

SELECT
    now(),
    nowInBlock(),
    sleep(1)
FROM numbers(3)
SETTINGS max_block_size = 1
FORMAT PrettyCompactMonoBlock

Result:

┌───────────────now()─┬────────nowInBlock()─┬─sleep(1)─┐
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:19 │        0 │
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:20 │        0 │
│ 2022-08-21 19:41:19 │ 2022-08-21 19:41:21 │        0 │
└─────────────────────┴─────────────────────┴──────────┘

today

Returns the current date at moment of query analysis. It is the same as ‘toDate(now())’ and has aliases: curdate, current_date.

Syntax

today()

Arguments

  • None

Returned value

Example

Query:

SELECT today() AS today, curdate() AS curdate, current_date() AS current_date FORMAT Pretty

Result:

Running the query above on the 3rd of March 2024 would have returned the following response:

┏━━━━━━━━━━━━┳━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃      today ┃    curdate ┃ current_date ┃
┡━━━━━━━━━━━━╇━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ 2024-03-03 │ 2024-03-03 │   2024-03-03 │
└────────────┴────────────┴──────────────┘

yesterday

Accepts zero arguments and returns yesterday’s date at one of the moments of query analysis. The same as ‘today() - 1’.

timeSlot

Rounds the time to the half hour.

toYYYYMM

Converts a date or date with time to a UInt32 number containing the year and month number (YYYY * 100 + MM). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.

This function is the opposite of function YYYYMMDDToDate().

Example

SELECT
    toYYYYMM(now(), 'US/Eastern')

Result:

┌─toYYYYMM(now(), 'US/Eastern')─┐
│                        202303 │
└───────────────────────────────┘

toYYYYMMDD

Converts a date or date with time to a UInt32 number containing the year and month number (YYYY * 10000 + MM * 100 + DD). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.

Example

SELECT toYYYYMMDD(now(), 'US/Eastern')

Result:

┌─toYYYYMMDD(now(), 'US/Eastern')─┐
│                        20230302 │
└─────────────────────────────────┘

toYYYYMMDDhhmmss

Converts a date or date with time to a UInt64 number containing the year and month number (YYYY * 10000000000 + MM * 100000000 + DD * 1000000 + hh * 10000 + mm * 100 + ss). Accepts a second optional timezone argument. If provided, the timezone must be a string constant.

Example

SELECT toYYYYMMDDhhmmss(now(), 'US/Eastern')

Result:

┌─toYYYYMMDDhhmmss(now(), 'US/Eastern')─┐
│                        20230302112209 │
└───────────────────────────────────────┘

YYYYMMDDToDate

Converts a number containing the year, month and day number to a Date.

This function is the opposite of function toYYYYMMDD().

The output is undefined if the input does not encode a valid Date value.

Syntax

YYYYMMDDToDate(yyyymmdd);

Arguments

Returned value

  • a date created from the arguments. Date.

Example

SELECT YYYYMMDDToDate(20230911);

Result:

┌─toYYYYMMDD(20230911)─┐
│           2023-09-11 │
└──────────────────────┘

YYYYMMDDToDate32

Like function YYYYMMDDToDate() but produces a Date32.

YYYYMMDDhhmmssToDateTime

Converts a number containing the year, month, day, hours, minute and second number to a DateTime.

The output is undefined if the input does not encode a valid DateTime value.

This function is the opposite of function toYYYYMMDDhhmmss().

Syntax

YYYYMMDDhhmmssToDateTime(yyyymmddhhmmss[, timezone]);

Arguments

  • yyyymmddhhmmss - A number representing the year, month and day. Integer, Float or Decimal.
  • timezone - Timezone for the returned value (optional).

Returned value

  • a date with time created from the arguments. DateTime.

Example

SELECT YYYYMMDDToDateTime(20230911131415);

Result:

┌──────YYYYMMDDhhmmssToDateTime(20230911131415)─┐
│                           2023-09-11 13:14:15 │
└───────────────────────────────────────────────┘

YYYYMMDDhhmmssToDateTime64

Like function YYYYMMDDhhmmssToDate() but produces a DateTime64.

Accepts an additional, optional precision parameter after the timezone parameter.

changeYear

Changes the year component of a date or date time.

Syntax

changeYear(date_or_datetime, value)

Arguments

Returned value

  • The same type as date_or_datetime.

Example

SELECT changeYear(toDate('1999-01-01'), 2000), changeYear(toDateTime64('1999-01-01 00:00:00.000', 3), 2000);

Result:

┌─changeYear(toDate('1999-01-01'), 2000)─┬─changeYear(toDateTime64('1999-01-01 00:00:00.000', 3), 2000)─┐
│                             2000-01-01 │                                      2000-01-01 00:00:00.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘

changeMonth

Changes the month component of a date or date time.

Syntax

changeMonth(date_or_datetime, value)

Arguments

Returned value

  • Returns a value of same type as date_or_datetime.

Example

SELECT changeMonth(toDate('1999-01-01'), 2), changeMonth(toDateTime64('1999-01-01 00:00:00.000', 3), 2);

Result:

┌─changeMonth(toDate('1999-01-01'), 2)─┬─changeMonth(toDateTime64('1999-01-01 00:00:00.000', 3), 2)─┐
│                           1999-02-01 │                                    1999-02-01 00:00:00.000 │
└──────────────────────────────────────┴────────────────────────────────────────────────────────────┘

changeDay

Changes the day component of a date or date time.

Syntax

changeDay(date_or_datetime, value)

Arguments

Returned value

  • Returns a value of same type as date_or_datetime.

Example

SELECT changeDay(toDate('1999-01-01'), 5), changeDay(toDateTime64('1999-01-01 00:00:00.000', 3), 5);

Result:

┌─changeDay(toDate('1999-01-01'), 5)─┬─changeDay(toDateTime64('1999-01-01 00:00:00.000', 3), 5)─┐
│                         1999-01-05 │                                  1999-01-05 00:00:00.000 │
└────────────────────────────────────┴──────────────────────────────────────────────────────────┘

changeHour

Changes the hour component of a date or date time.

Syntax

changeHour(date_or_datetime, value)

Arguments

Returned value

Example

SELECT changeHour(toDate('1999-01-01'), 14), changeHour(toDateTime64('1999-01-01 00:00:00.000', 3), 14);

Result:

┌─changeHour(toDate('1999-01-01'), 14)─┬─changeHour(toDateTime64('1999-01-01 00:00:00.000', 3), 14)─┐
│                  1999-01-01 14:00:00 │                                    1999-01-01 14:00:00.000 │
└──────────────────────────────────────┴────────────────────────────────────────────────────────────┘

changeMinute

Changes the minute component of a date or date time.

Syntax

changeMinute(date_or_datetime, value)

Arguments

Returned value

Example

    SELECT changeMinute(toDate('1999-01-01'), 15), changeMinute(toDateTime64('1999-01-01 00:00:00.000', 3), 15);

Result:

┌─changeMinute(toDate('1999-01-01'), 15)─┬─changeMinute(toDateTime64('1999-01-01 00:00:00.000', 3), 15)─┐
│                    1999-01-01 00:15:00 │                                      1999-01-01 00:15:00.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘

changeSecond

Changes the second component of a date or date time.

Syntax

changeSecond(date_or_datetime, value)

Arguments

Returned value

Example

SELECT changeSecond(toDate('1999-01-01'), 15), changeSecond(toDateTime64('1999-01-01 00:00:00.000', 3), 15);

Result:

┌─changeSecond(toDate('1999-01-01'), 15)─┬─changeSecond(toDateTime64('1999-01-01 00:00:00.000', 3), 15)─┐
│                    1999-01-01 00:00:15 │                                      1999-01-01 00:00:15.000 │
└────────────────────────────────────────┴──────────────────────────────────────────────────────────────┘

addYears

Adds a specified number of years to a date, a date with time or a string-encoded date / date with time.

Syntax

addYears(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addYears(date, 1) AS add_years_with_date,
    addYears(date_time, 1) AS add_years_with_date_time,
    addYears(date_time_string, 1) AS add_years_with_date_time_string
┌─add_years_with_date─┬─add_years_with_date_time─┬─add_years_with_date_time_string─┐
│          2025-01-01 │      2025-01-01 00:00:00 │         2025-01-01 00:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘

addQuarters

Adds a specified number of quarters to a date, a date with time or a string-encoded date / date with time.

Syntax

addQuarters(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addQuarters(date, 1) AS add_quarters_with_date,
    addQuarters(date_time, 1) AS add_quarters_with_date_time,
    addQuarters(date_time_string, 1) AS add_quarters_with_date_time_string
┌─add_quarters_with_date─┬─add_quarters_with_date_time─┬─add_quarters_with_date_time_string─┐
│             2024-04-01 │         2024-04-01 00:00:00 │            2024-04-01 00:00:00.000 │
└────────────────────────┴─────────────────────────────┴────────────────────────────────────┘

addMonths

Adds a specified number of months to a date, a date with time or a string-encoded date / date with time.

Syntax

addMonths(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMonths(date, 6) AS add_months_with_date,
    addMonths(date_time, 6) AS add_months_with_date_time,
    addMonths(date_time_string, 6) AS add_months_with_date_time_string
┌─add_months_with_date─┬─add_months_with_date_time─┬─add_months_with_date_time_string─┐
│           2024-07-01 │       2024-07-01 00:00:00 │          2024-07-01 00:00:00.000 │
└──────────────────────┴───────────────────────────┴──────────────────────────────────┘

addWeeks

Adds a specified number of weeks to a date, a date with time or a string-encoded date / date with time.

Syntax

addWeeks(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addWeeks(date, 5) AS add_weeks_with_date,
    addWeeks(date_time, 5) AS add_weeks_with_date_time,
    addWeeks(date_time_string, 5) AS add_weeks_with_date_time_string
┌─add_weeks_with_date─┬─add_weeks_with_date_time─┬─add_weeks_with_date_time_string─┐
│          2024-02-05 │      2024-02-05 00:00:00 │         2024-02-05 00:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘

addDays

Adds a specified number of days to a date, a date with time or a string-encoded date / date with time.

Syntax

addDays(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addDays(date, 5) AS add_days_with_date,
    addDays(date_time, 5) AS add_days_with_date_time,
    addDays(date_time_string, 5) AS add_days_with_date_time_string
┌─add_days_with_date─┬─add_days_with_date_time─┬─add_days_with_date_time_string─┐
│         2024-01-06 │     2024-01-06 00:00:00 │        2024-01-06 00:00:00.000 │
└────────────────────┴─────────────────────────┴────────────────────────────────┘

addHours

Adds a specified number of days to a date, a date with time or a string-encoded date / date with time.

Syntax

addHours(date, num)

Parameters

Returned value o - Returns date plus num hours. Date/Date32/DateTime/DateTime64.

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addHours(date, 12) AS add_hours_with_date,
    addHours(date_time, 12) AS add_hours_with_date_time,
    addHours(date_time_string, 12) AS add_hours_with_date_time_string
┌─add_hours_with_date─┬─add_hours_with_date_time─┬─add_hours_with_date_time_string─┐
│ 2024-01-01 12:00:00 │      2024-01-01 12:00:00 │         2024-01-01 12:00:00.000 │
└─────────────────────┴──────────────────────────┴─────────────────────────────────┘

addMinutes

Adds a specified number of minutes to a date, a date with time or a string-encoded date / date with time.

Syntax

addMinutes(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMinutes(date, 20) AS add_minutes_with_date,
    addMinutes(date_time, 20) AS add_minutes_with_date_time,
    addMinutes(date_time_string, 20) AS add_minutes_with_date_time_string
┌─add_minutes_with_date─┬─add_minutes_with_date_time─┬─add_minutes_with_date_time_string─┐
│   2024-01-01 00:20:00 │        2024-01-01 00:20:00 │           2024-01-01 00:20:00.000 │
└───────────────────────┴────────────────────────────┴───────────────────────────────────┘

addSeconds

Adds a specified number of seconds to a date, a date with time or a string-encoded date / date with time.

Syntax

addSeconds(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addSeconds(date, 30) AS add_seconds_with_date,
    addSeconds(date_time, 30) AS add_seconds_with_date_time,
    addSeconds(date_time_string, 30) AS add_seconds_with_date_time_string
┌─add_seconds_with_date─┬─add_seconds_with_date_time─┬─add_seconds_with_date_time_string─┐
│   2024-01-01 00:00:30 │        2024-01-01 00:00:30 │           2024-01-01 00:00:30.000 │
└───────────────────────┴────────────────────────────┴───────────────────────────────────┘

addMilliseconds

Adds a specified number of milliseconds to a date with time or a string-encoded date with time.

Syntax

addMilliseconds(date_time, num)

Parameters

Returned value

  • Returns date_time plus num milliseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMilliseconds(date_time, 1000) AS add_milliseconds_with_date_time,
    addMilliseconds(date_time_string, 1000) AS add_milliseconds_with_date_time_string
┌─add_milliseconds_with_date_time─┬─add_milliseconds_with_date_time_string─┐
│         2024-01-01 00:00:01.000 │                2024-01-01 00:00:01.000 │
└─────────────────────────────────┴────────────────────────────────────────┘

addMicroseconds

Adds a specified number of microseconds to a date with time or a string-encoded date with time.

Syntax

addMicroseconds(date_time, num)

Parameters

Returned value

  • Returns date_time plus num microseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addMicroseconds(date_time, 1000000) AS add_microseconds_with_date_time,
    addMicroseconds(date_time_string, 1000000) AS add_microseconds_with_date_time_string
┌─add_microseconds_with_date_time─┬─add_microseconds_with_date_time_string─┐
│      2024-01-01 00:00:01.000000 │             2024-01-01 00:00:01.000000 │
└─────────────────────────────────┴────────────────────────────────────────┘

addNanoseconds

Adds a specified number of microseconds to a date with time or a string-encoded date with time.

Syntax

addNanoseconds(date_time, num)

Parameters

Returned value

  • Returns date_time plus num nanoseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    addNanoseconds(date_time, 1000) AS add_nanoseconds_with_date_time,
    addNanoseconds(date_time_string, 1000) AS add_nanoseconds_with_date_time_string
┌─add_nanoseconds_with_date_time─┬─add_nanoseconds_with_date_time_string─┐
│  2024-01-01 00:00:00.000001000 │         2024-01-01 00:00:00.000001000 │
└────────────────────────────────┴───────────────────────────────────────┘

addInterval

Adds an interval to another interval or tuple of intervals.

Syntax

addInterval(interval_1, interval_2)

Parameters

Returned value

Intervals of the same type will be combined into a single interval. For instance if toIntervalDay(1) and toIntervalDay(2) are passed then the result will be (3) rather than (1,1).


Example

Query:

SELECT addInterval(INTERVAL 1 DAY, INTERVAL 1 MONTH);
SELECT addInterval((INTERVAL 1 DAY, INTERVAL 1 YEAR), INTERVAL 1 MONTH);
SELECT addInterval(INTERVAL 2 DAY, INTERVAL 1 DAY);

Result:

┌─addInterval(toIntervalDay(1), toIntervalMonth(1))─┐
│ (1,1)                                             │
└───────────────────────────────────────────────────┘
┌─addInterval((toIntervalDay(1), toIntervalYear(1)), toIntervalMonth(1))─┐
│ (1,1,1)                                                                │
└────────────────────────────────────────────────────────────────────────┘
┌─addInterval(toIntervalDay(2), toIntervalDay(1))─┐
│ (3)                                             │
└─────────────────────────────────────────────────┘

addTupleOfIntervals

Consecutively adds a tuple of intervals to a Date or a DateTime.

Syntax

addTupleOfIntervals(interval_1, interval_2)

Parameters

Returned value

Example

Query:

WITH toDate('2018-01-01') AS date 
SELECT addTupleOfIntervals(date, (INTERVAL 1 DAY, INTERVAL 1 MONTH, INTERVAL 1 YEAR))

Result:

┌─addTupleOfIntervals(date, (toIntervalDay(1), toIntervalMonth(1), toIntervalYear(1)))─┐
│                                                                           2019-02-02 │
└──────────────────────────────────────────────────────────────────────────────────────┘

subtractYears

Subtracts a specified number of years from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractYears(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractYears(date, 1) AS subtract_years_with_date,
    subtractYears(date_time, 1) AS subtract_years_with_date_time,
    subtractYears(date_time_string, 1) AS subtract_years_with_date_time_string
┌─subtract_years_with_date─┬─subtract_years_with_date_time─┬─subtract_years_with_date_time_string─┐
│               2023-01-01 │           2023-01-01 00:00:00 │              2023-01-01 00:00:00.000 │
└──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘

subtractQuarters

Subtracts a specified number of quarters from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractQuarters(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractQuarters(date, 1) AS subtract_quarters_with_date,
    subtractQuarters(date_time, 1) AS subtract_quarters_with_date_time,
    subtractQuarters(date_time_string, 1) AS subtract_quarters_with_date_time_string
┌─subtract_quarters_with_date─┬─subtract_quarters_with_date_time─┬─subtract_quarters_with_date_time_string─┐
│                  2023-10-01 │              2023-10-01 00:00:00 │                 2023-10-01 00:00:00.000 │
└─────────────────────────────┴──────────────────────────────────┴─────────────────────────────────────────┘

subtractMonths

Subtracts a specified number of months from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractMonths(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMonths(date, 1) AS subtract_months_with_date,
    subtractMonths(date_time, 1) AS subtract_months_with_date_time,
    subtractMonths(date_time_string, 1) AS subtract_months_with_date_time_string
┌─subtract_months_with_date─┬─subtract_months_with_date_time─┬─subtract_months_with_date_time_string─┐
│                2023-12-01 │            2023-12-01 00:00:00 │               2023-12-01 00:00:00.000 │
└───────────────────────────┴────────────────────────────────┴───────────────────────────────────────┘

subtractWeeks

Subtracts a specified number of weeks from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractWeeks(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractWeeks(date, 1) AS subtract_weeks_with_date,
    subtractWeeks(date_time, 1) AS subtract_weeks_with_date_time,
    subtractWeeks(date_time_string, 1) AS subtract_weeks_with_date_time_string
 ┌─subtract_weeks_with_date─┬─subtract_weeks_with_date_time─┬─subtract_weeks_with_date_time_string─┐
 │               2023-12-25 │           2023-12-25 00:00:00 │              2023-12-25 00:00:00.000 │
 └──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘

subtractDays

Subtracts a specified number of days from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractDays(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractDays(date, 31) AS subtract_days_with_date,
    subtractDays(date_time, 31) AS subtract_days_with_date_time,
    subtractDays(date_time_string, 31) AS subtract_days_with_date_time_string
┌─subtract_days_with_date─┬─subtract_days_with_date_time─┬─subtract_days_with_date_time_string─┐
│              2023-12-01 │          2023-12-01 00:00:00 │             2023-12-01 00:00:00.000 │
└─────────────────────────┴──────────────────────────────┴─────────────────────────────────────┘

subtractHours

Subtracts a specified number of hours from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractHours(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractHours(date, 12) AS subtract_hours_with_date,
    subtractHours(date_time, 12) AS subtract_hours_with_date_time,
    subtractHours(date_time_string, 12) AS subtract_hours_with_date_time_string
┌─subtract_hours_with_date─┬─subtract_hours_with_date_time─┬─subtract_hours_with_date_time_string─┐
│      2023-12-31 12:00:00 │           2023-12-31 12:00:00 │              2023-12-31 12:00:00.000 │
└──────────────────────────┴───────────────────────────────┴──────────────────────────────────────┘

subtractMinutes

Subtracts a specified number of minutes from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractMinutes(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMinutes(date, 30) AS subtract_minutes_with_date,
    subtractMinutes(date_time, 30) AS subtract_minutes_with_date_time,
    subtractMinutes(date_time_string, 30) AS subtract_minutes_with_date_time_string
┌─subtract_minutes_with_date─┬─subtract_minutes_with_date_time─┬─subtract_minutes_with_date_time_string─┐
│        2023-12-31 23:30:00 │             2023-12-31 23:30:00 │                2023-12-31 23:30:00.000 │
└────────────────────────────┴─────────────────────────────────┴────────────────────────────────────────┘

subtractSeconds

Subtracts a specified number of seconds from a date, a date with time or a string-encoded date / date with time.

Syntax

subtractSeconds(date, num)

Parameters

Returned value

Example

WITH
    toDate('2024-01-01') AS date,
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractSeconds(date, 60) AS subtract_seconds_with_date,
    subtractSeconds(date_time, 60) AS subtract_seconds_with_date_time,
    subtractSeconds(date_time_string, 60) AS subtract_seconds_with_date_time_string
┌─subtract_seconds_with_date─┬─subtract_seconds_with_date_time─┬─subtract_seconds_with_date_time_string─┐
│        2023-12-31 23:59:00 │             2023-12-31 23:59:00 │                2023-12-31 23:59:00.000 │
└────────────────────────────┴─────────────────────────────────┴────────────────────────────────────────┘

subtractMilliseconds

Subtracts a specified number of milliseconds from a date with time or a string-encoded date with time.

Syntax

subtractMilliseconds(date_time, num)

Parameters

Returned value

  • Returns date_time minus num milliseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMilliseconds(date_time, 1000) AS subtract_milliseconds_with_date_time,
    subtractMilliseconds(date_time_string, 1000) AS subtract_milliseconds_with_date_time_string
┌─subtract_milliseconds_with_date_time─┬─subtract_milliseconds_with_date_time_string─┐
│              2023-12-31 23:59:59.000 │                     2023-12-31 23:59:59.000 │
└──────────────────────────────────────┴─────────────────────────────────────────────┘

subtractMicroseconds

Subtracts a specified number of microseconds from a date with time or a string-encoded date with time.

Syntax

subtractMicroseconds(date_time, num)

Parameters

Returned value

  • Returns date_time minus num microseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractMicroseconds(date_time, 1000000) AS subtract_microseconds_with_date_time,
    subtractMicroseconds(date_time_string, 1000000) AS subtract_microseconds_with_date_time_string
┌─subtract_microseconds_with_date_time─┬─subtract_microseconds_with_date_time_string─┐
│           2023-12-31 23:59:59.000000 │                  2023-12-31 23:59:59.000000 │
└──────────────────────────────────────┴─────────────────────────────────────────────┘

subtractNanoseconds

Subtracts a specified number of nanoseconds from a date with time or a string-encoded date with time.

Syntax

subtractNanoseconds(date_time, num)

Parameters

Returned value

  • Returns date_time minus num nanoseconds. DateTime64.

Example

WITH
    toDateTime('2024-01-01 00:00:00') AS date_time,
    '2024-01-01 00:00:00' AS date_time_string
SELECT
    subtractNanoseconds(date_time, 1000) AS subtract_nanoseconds_with_date_time,
    subtractNanoseconds(date_time_string, 1000) AS subtract_nanoseconds_with_date_time_string
┌─subtract_nanoseconds_with_date_time─┬─subtract_nanoseconds_with_date_time_string─┐
│       2023-12-31 23:59:59.999999000 │              2023-12-31 23:59:59.999999000 │
└─────────────────────────────────────┴────────────────────────────────────────────┘

subtractInterval

Adds a negated interval to another interval or tuple of intervals.

Syntax

subtractInterval(interval_1, interval_2)

Parameters

Returned value

Intervals of the same type will be combined into a single interval. For instance if toIntervalDay(2) and toIntervalDay(1) are passed then the result will be (1) rather than (2,1)


Example

Query:

SELECT subtractInterval(INTERVAL 1 DAY, INTERVAL 1 MONTH);
SELECT subtractInterval((INTERVAL 1 DAY, INTERVAL 1 YEAR), INTERVAL 1 MONTH);
SELECT subtractInterval(INTERVAL 2 DAY, INTERVAL 1 DAY);

Result:

┌─subtractInterval(toIntervalDay(1), toIntervalMonth(1))─┐
│ (1,-1)                                                 │
└────────────────────────────────────────────────────────┘
┌─subtractInterval((toIntervalDay(1), toIntervalYear(1)), toIntervalMonth(1))─┐
│ (1,1,-1)                                                                    │
└─────────────────────────────────────────────────────────────────────────────┘
┌─subtractInterval(toIntervalDay(2), toIntervalDay(1))─┐
│ (1)                                                  │
└──────────────────────────────────────────────────────┘

subtractTupleOfIntervals

Consecutively subtracts a tuple of intervals from a Date or a DateTime.

Syntax

subtractTupleOfIntervals(interval_1, interval_2)

Parameters

Returned value

Example

Query:

WITH toDate('2018-01-01') AS date SELECT subtractTupleOfIntervals(date, (INTERVAL 1 DAY, INTERVAL 1 YEAR))

Result:

┌─subtractTupleOfIntervals(date, (toIntervalDay(1), toIntervalYear(1)))─┐
│                                                            2016-12-31 │
└───────────────────────────────────────────────────────────────────────┘

timeSlots(StartTime, Duration,[, Size])

For a time interval starting at ‘StartTime’ and continuing for ‘Duration’ seconds, it returns an array of moments in time, consisting of points from this interval rounded down to the ‘Size’ in seconds. ‘Size’ is an optional parameter set to 1800 (30 minutes) by default. This is necessary, for example, when searching for pageviews in the corresponding session. Accepts DateTime and DateTime64 as ’StartTime’ argument. For DateTime, ’Duration’ and ’Size’ arguments must be UInt32. For ’DateTime64’ they must be Decimal64. Returns an array of DateTime/DateTime64 (return type matches the type of ’StartTime’). For DateTime64, the return value’s scale can differ from the scale of ’StartTime’ — the highest scale among all given arguments is taken.

Example:

SELECT timeSlots(toDateTime('2012-01-01 12:20:00'), toUInt32(600));
SELECT timeSlots(toDateTime('1980-12-12 21:01:02', 'UTC'), toUInt32(600), 299);
SELECT timeSlots(toDateTime64('1980-12-12 21:01:02.1234', 4, 'UTC'), toDecimal64(600.1, 1), toDecimal64(299, 0));
┌─timeSlots(toDateTime('2012-01-01 12:20:00'), toUInt32(600))─┐
│ ['2012-01-01 12:00:00','2012-01-01 12:30:00']               │
└─────────────────────────────────────────────────────────────┘
┌─timeSlots(toDateTime('1980-12-12 21:01:02', 'UTC'), toUInt32(600), 299)─┐
│ ['1980-12-12 20:56:13','1980-12-12 21:01:12','1980-12-12 21:06:11']     │
└─────────────────────────────────────────────────────────────────────────┘
┌─timeSlots(toDateTime64('1980-12-12 21:01:02.1234', 4, 'UTC'), toDecimal64(600.1, 1), toDecimal64(299, 0))─┐
│ ['1980-12-12 20:56:13.0000','1980-12-12 21:01:12.0000','1980-12-12 21:06:11.0000']                        │
└───────────────────────────────────────────────────────────────────────────────────────────────────────────┘

formatDateTime

Formats a Time according to the given Format string. Format is a constant expression, so you cannot have multiple formats for a single result column.

formatDateTime uses MySQL datetime format style, refer to https://dev.mysql.com/doc/refman/8.0/en/date-and-time-functions.html#function_date-format.

The opposite operation of this function is parseDateTime.

Alias: DATE_FORMAT.

Syntax

formatDateTime(Time, Format[, Timezone])

Returned value(s)

Returns time and date values according to the determined format.

Replacement fields

Using replacement fields, you can define a pattern for the resulting string. “Example” column shows formatting result for 2018-01-02 22:33:44.

Placeholder Description Example
%a abbreviated weekday name (Mon-Sun) Mon
%b abbreviated month name (Jan-Dec) Jan
%c month as an integer number (01-12), see ‘Note 3’ below 01
%C year divided by 100 and truncated to integer (00-99) 20
%d day of the month, zero-padded (01-31) 02
%D Short MM/DD/YY date, equivalent to %m/%d/%y 01/02/18
%e day of the month, space-padded (1-31)   2
%f fractional second, see ‘Note 1’ below 1234560
%F short YYYY-MM-DD date, equivalent to %Y-%m-%d 2018-01-02
%g two-digit year format, aligned to ISO 8601, abbreviated from four-digit notation 18
%G four-digit year format for ISO week number, calculated from the week-based year defined by the ISO 8601 standard, normally useful only with %V 2018
%h hour in 12h format (01-12) 09
%H hour in 24h format (00-23) 22
%i minute (00-59) 33
%I hour in 12h format (01-12) 10
%j day of the year (001-366) 002
%k hour in 24h format (00-23), see ‘Note 3’ below 14
%l hour in 12h format (01-12), see ‘Note 3’ below 09
%m month as an integer number (01-12) 01
%M full month name (January-December), see ‘Note 2’ below January
%n new-line character (’’)
%p AM or PM designation PM
%Q Quarter (1-4) 1
%r 12-hour HH:MM AM/PM time, equivalent to %h:%i %p 10:30 PM
%R 24-hour HH:MM time, equivalent to %H:%i 22:33
%s second (00-59) 44
%S second (00-59) 44
%t horizontal-tab character (’)
%T ISO 8601 time format (HH:MM:SS), equivalent to %H:%i:%S 22:33:44
%u ISO 8601 weekday as number with Monday as 1 (1-7) 2
%V ISO 8601 week number (01-53) 01
%w weekday as a integer number with Sunday as 0 (0-6) 2
%W full weekday name (Monday-Sunday) Monday
%y Year, last two digits (00-99) 18
%Y Year 2018
%z Time offset from UTC as +HHMM or -HHMM -0500
%% a % sign %

Note 1: In ClickHouse versions earlier than v23.4, %f prints a single zero (0) if the formatted value is a Date, Date32 or DateTime (which have no fractional seconds) or a DateTime64 with a precision of 0. The previous behavior can be restored using setting formatdatetime_f_prints_single_zero = 1.

Note 2: In ClickHouse versions earlier than v23.4, %M prints the minute (00-59) instead of the full month name (January-December). The previous behavior can be restored using setting formatdatetime_parsedatetime_m_is_month_name = 0.

Note 3: In ClickHouse versions earlier than v23.11, function parseDateTime() required leading zeros for formatters %c (month) and %l/%k (hour), e.g. 07. In later versions, the leading zero may be omitted, e.g. 7. The previous behavior can be restored using setting parsedatetime_parse_without_leading_zeros = 0. Note that function formatDateTime() by default still prints leading zeros for %c and %l/%k to not break existing use cases. This behavior can be changed by setting formatdatetime_format_without_leading_zeros = 1.

Example

SELECT formatDateTime(toDate('2010-01-04'), '%g')

Result:

┌─formatDateTime(toDate('2010-01-04'), '%g')─┐
│ 10                                         │
└────────────────────────────────────────────┘
SELECT formatDateTime(toDateTime64('2010-01-04 12:34:56.123456', 7), '%f')

Result:

┌─formatDateTime(toDateTime64('2010-01-04 12:34:56.123456', 7), '%f')─┐
│ 1234560                                                             │
└─────────────────────────────────────────────────────────────────────┘

Additionally, the formatDateTime function can take a third String argument containing the name of the time zone. Example: Asia/Istanbul. In this case, the time is formatted according to the specified time zone.

Example

SELECT
    now() AS ts,
    time_zone,
    formatDateTime(ts, '%T', time_zone) AS str_tz_time
FROM system.time_zones
WHERE time_zone LIKE 'Europe%'
LIMIT 10

┌──────────────────ts─┬─time_zone─────────┬─str_tz_time─┐
│ 2023-09-08 19:13:40 │ Europe/Amsterdam  │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Andorra    │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Astrakhan  │ 23:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Athens     │ 22:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Belfast    │ 20:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Belgrade   │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Berlin     │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Bratislava │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Brussels   │ 21:13:40    │
│ 2023-09-08 19:13:40 │ Europe/Bucharest  │ 22:13:40    │
└─────────────────────┴───────────────────┴─────────────┘

See Also

formatDateTimeInJodaSyntax

Similar to formatDateTime, except that it formats datetime in Joda style instead of MySQL style. Refer to https://joda-time.sourceforge.net/apidocs/org/joda/time/format/DateTimeFormat.html.

The opposite operation of this function is parseDateTimeInJodaSyntax.

Replacement fields

Using replacement fields, you can define a pattern for the resulting string.

Placeholder Description Presentation Examples
G era text AD
C century of era (>=0) number 20
Y year of era (>=0) year 1996
x weekyear (not supported yet) year 1996
w week of weekyear (not supported yet) number 27
e day of week number 2
E day of week text Tuesday; Tue
y year year 1996
D day of year number 189
M month of year month July; Jul; 07
d day of month number 10
a halfday of day text PM
K hour of halfday (0~11) number 0
h clockhour of halfday (1~12) number 12
H hour of day (0~23) number 0
k clockhour of day (1~24) number 24
m minute of hour number 30
s second of minute number 55
S fraction of second (not supported yet) number 978
z time zone (short name not supported yet) text Pacific Standard Time; PST
Z time zone offset/id (not supported yet) zone -0800; -08:00; America/Los_Angeles
escape for text delimiter
’’ single quote literal

Example

SELECT formatDateTimeInJodaSyntax(toDateTime('2010-01-04 12:34:56'), 'yyyy-MM-dd HH:mm:ss')

Result:

┌─formatDateTimeInJodaSyntax(toDateTime('2010-01-04 12:34:56'), 'yyyy-MM-dd HH:mm:ss')─┐
│ 2010-01-04 12:34:56                                                                     │
└─────────────────────────────────────────────────────────────────────────────────────────┘

dateName

Returns specified part of date.

Syntax

dateName(date_part, date)

Arguments

  • date_part — Date part. Possible values: ‘year’, ‘quarter’, ‘month’, ‘week’, ‘dayofyear’, ‘day’, ‘weekday’, ‘hour’, ‘minute’, ‘second’. String.
  • date — Date. Date, Date32, DateTime or DateTime64.
  • timezone — Timezone. Optional. String.

Returned value

  • The specified part of date. String

Example

WITH toDateTime('2021-04-14 11:22:33') AS date_value
SELECT
    dateName('year', date_value),
    dateName('month', date_value),
    dateName('day', date_value);

Result:

┌─dateName('year', date_value)─┬─dateName('month', date_value)─┬─dateName('day', date_value)─┐
│ 2021                         │ April                         │ 14                          │
└──────────────────────────────┴───────────────────────────────┴─────────────────────────────┘

monthName

Returns name of the month.

Syntax

monthName(date)

Arguments

Returned value

Example

WITH toDateTime('2021-04-14 11:22:33') AS date_value
SELECT monthName(date_value);

Result:

┌─monthName(date_value)─┐
│ April                 │
└───────────────────────┘

fromUnixTimestamp

This function converts a Unix timestamp to a calendar date and a time of a day.

It can be called in two ways:

When given a single argument of type Integer, it returns a value of type DateTime, i.e. behaves like toDateTime.

Alias: FROM_UNIXTIME.

Example:

SELECT fromUnixTimestamp(423543535);

Result:

┌─fromUnixTimestamp(423543535)─┐
│          1983-06-04 10:58:55 │
└──────────────────────────────┘

When given two or three arguments where the first argument is a value of type Integer, Date, Date32, DateTime or DateTime64, the second argument is a constant format string and the third argument is an optional constant time zone string, the function returns a value of type String, i.e. it behaves like formatDateTime. In this case, MySQL’s datetime format style is used.

Example:

SELECT fromUnixTimestamp(1234334543, '%Y-%m-%d %R:%S') AS DateTime;

Result:

┌─DateTime────────────┐
│ 2009-02-11 14:42:23 │
└─────────────────────┘

See Also

fromUnixTimestampInJodaSyntax

Same as fromUnixTimestamp but when called in the second way (two or three arguments), the formatting is performed using Joda style instead of MySQL style.

Example:

SELECT fromUnixTimestampInJodaSyntax(1234334543, 'yyyy-MM-dd HH:mm:ss', 'UTC') AS DateTime;

Result:

┌─DateTime────────────┐
│ 2009-02-11 06:42:23 │
└─────────────────────┘

toModifiedJulianDay

Converts a Proleptic Gregorian calendar date in text form YYYY-MM-DD to a Modified Julian Day number in Int32. This function supports date from 0000-01-01 to 9999-12-31. It raises an exception if the argument cannot be parsed as a date, or the date is invalid.

Syntax

toModifiedJulianDay(date)

Arguments

Returned value

  • Modified Julian Day number. Int32.

Example

SELECT toModifiedJulianDay('2020-01-01');

Result:

┌─toModifiedJulianDay('2020-01-01')─┐
│                             58849 │
└───────────────────────────────────┘

toModifiedJulianDayOrNull

Similar to toModifiedJulianDay(), but instead of raising exceptions it returns NULL.

Syntax

toModifiedJulianDayOrNull(date)

Arguments

Returned value

Example

SELECT toModifiedJulianDayOrNull('2020-01-01');

Result:

┌─toModifiedJulianDayOrNull('2020-01-01')─┐
│                                   58849 │
└─────────────────────────────────────────┘

fromModifiedJulianDay

Converts a Modified Julian Day number to a Proleptic Gregorian calendar date in text form YYYY-MM-DD. This function supports day number from -678941 to 2973483 (which represent 0000-01-01 and 9999-12-31 respectively). It raises an exception if the day number is outside of the supported range.

Syntax

fromModifiedJulianDay(day)

Arguments

Returned value

Example

SELECT fromModifiedJulianDay(58849);

Result:

┌─fromModifiedJulianDay(58849)─┐
│ 2020-01-01                   │
└──────────────────────────────┘

fromModifiedJulianDayOrNull

Similar to fromModifiedJulianDayOrNull(), but instead of raising exceptions it returns NULL.

Syntax

fromModifiedJulianDayOrNull(day)

Arguments

Returned value

Example

SELECT fromModifiedJulianDayOrNull(58849);

Result:

┌─fromModifiedJulianDayOrNull(58849)─┐
│ 2020-01-01                         │
└────────────────────────────────────┘

toUTCTimestamp

Convert DateTime/DateTime64 type value from other time zone to UTC timezone timestamp

Syntax

toUTCTimestamp(time_val, time_zone)

Arguments

  • time_val — A DateTime/DateTime64 type const value or an expression . DateTime/DateTime64 types
  • time_zone — A String type const value or an expression represent the time zone. String types

Returned value

  • DateTime/DateTime64 in text form

Example

SELECT toUTCTimestamp(toDateTime('2023-03-16'), 'Asia/Shanghai');

Result:

┌─toUTCTimestamp(toDateTime('2023-03-16'),'Asia/Shanghai')┐
│                                     2023-03-15 16:00:00 │
└─────────────────────────────────────────────────────────┘

fromUTCTimestamp

Convert DateTime/DateTime64 type value from UTC timezone to other time zone timestamp

Syntax

fromUTCTimestamp(time_val, time_zone)

Arguments

  • time_val — A DateTime/DateTime64 type const value or an expression . DateTime/DateTime64 types
  • time_zone — A String type const value or an expression represent the time zone. String types

Returned value

  • DateTime/DateTime64 in text form

Example

SELECT fromUTCTimestamp(toDateTime64('2023-03-16 10:00:00', 3), 'Asia/Shanghai');

Result:

┌─fromUTCTimestamp(toDateTime64('2023-03-16 10:00:00',3),'Asia/Shanghai')─┐
│                                                 2023-03-16 18:00:00.000 │
└─────────────────────────────────────────────────────────────────────────┘

UTCTimestamp

Returns the current date and time at the moment of query analysis. The function is a constant expression.

This function gives the same result that now('UTC') would. It was added only for MySQL support and now is the preferred usage.


Syntax

UTCTimestamp()

Alias: UTC_timestamp.

Returned value

  • Returns the current date and time at the moment of query analysis. DateTime.

Example

Query:

SELECT UTCTimestamp();

Result:

┌──────UTCTimestamp()─┐
│ 2024-05-28 08:32:09 │
└─────────────────────┘

timeDiff

Returns the difference between two dates or dates with time values. The difference is calculated in units of seconds. It is same as dateDiff and was added only for MySQL support. dateDiff is preferred.

Syntax

timeDiff(first_datetime, second_datetime)
  • Arguments**

Returned value

The difference between two dates or dates with time values in seconds.

Example

Query:

timeDiff(toDateTime64('1927-01-01 00:00:00', 3), toDate32('1927-01-02'));

Result:

┌─timeDiff(toDateTime64('1927-01-01 00:00:00', 3), toDate32('1927-01-02'))─┐
│                                                                    86400 │
└──────────────────────────────────────────────────────────────────────────┘

Related content