Datetime Functions in Confluent Cloud for Apache Flink¶
Confluent Cloud for Apache Flink® provides these built-in functions for handling date and time logic in SQL queries:
Time interval and point unit specifiers¶
The following table lists specifiers for time interval and time point units.
Time interval unit | Time point unit |
---|---|
MILLENNIUM |
|
CENTURY |
|
DECADE |
|
YEAR |
YEAR |
YEAR TO MONTH |
|
QUARTER |
QUARTER |
MONTH |
MONTH |
WEEK |
WEEK |
DAY |
DAY |
DAY TO HOUR |
|
DAY TO MINUTE |
|
DAY TO SECOND |
|
HOUR |
HOUR |
HOUR TO MINUTE |
|
HOUR TO SECOND |
|
MINUTE |
MINUTE |
MINUTE TO SECOND |
|
SECOND |
SECOND |
MILLISECOND |
MILLISECOND |
MICROSECOND |
MICROSECOND |
NANOSECOND |
|
EPOCH |
|
DOY |
|
DOW |
|
EPOCH |
|
ISODOW |
|
ISOYEAR |
SQL_TSI_YEAR
SQL_TSI_QUARTER
SQL_TSI_MONTH
SQL_TSI_WEEK
SQL_TSI_DAY
SQL_TSI_HOUR
SQL_TSI_MINUTE
SQL_TSI_SECOND |
CEIL¶
Rounds a time point up.
- Syntax
CEIL(timepoint TO timeintervalunit)
- Description
- The
CEIL
function returns a value that roundstimepoint
up to the time unit specified bytimeintervalunit
. - Example
-- returns "12:45:00" SELECT CEIL(TIME '12:44:31' TO MINUTE);
- Related function
CONVERT_TZ¶
Converts a datetime from one time zone to another.
- Syntax
CONVERT_TZ(string1, string2, string3)
- Description
The
CONVERT_TZ
function converts a datetimestring1
that has the default ISO timestamp format, “yyyy-MM-dd hh:mm:ss”, from the time zone specified bystring2
to the time zone specified bystring3
.The format of the time zone arguments is either an abbreviation, like “PST”, a full name, like “America/Los_Angeles”, or a custom ID, like “GMT-08:00”.
- Example
-- returns "1969-12-31 16:00:00" SELECT CONVERT_TZ('1970-01-01 00:00:00', 'UTC', 'America/Los_Angeles');
CURRENT_DATE¶
Returns the current date.
- Syntax
CURRENT_DATE
- Description
The
CURRENT_DATE
function returns the current SQL date in the local time zone.- In streaming mode, the current date is evaluated for each record.
- In batch mode, the current date is evaluated once when the query starts,
and
CURRENT_DATE
returns the same result for every row.
- Example
-- returns the current date SELECT CURRENT_DATE;
CURRENT_ROW_TIMESTAMP¶
Returns the current timestamp for each row.
- Syntax
CURRENT_ROW_TIMESTAMP()
- Description
The
CURRENT_ROW_TIMESTAMP
function returns the current SQL timestamp in the local time zone. The return type isTIMESTAMP_LTZ(3)
.The timestamp is evaluated for each row, in both batch and streaming mode.
- Example
-- returns the timestamp of the current datetime SELECT CURRENT_ROW_TIMESTAMP();
CURRENT_TIME¶
- Syntax
CURRENT_TIME
- Description
The
CURRENT_TIME
function returns the current SQL time in the local time zone.The
CURRENT_TIME
function is equivalent to LOCALTIME.- Example
-- returns the current time, for example: -- 13:03:56 SELECT CURRENT_TIME;
CURRENT_TIMESTAMP¶
- Syntax
CURRENT_TIMESTAMP
- Description
The
CURRENT_TIMESTAMP
function returns the current SQL timestamp in the local time zone. The return type isTIMESTAMP_LTZ(3)
.- In streaming mode, the current timestamp is evaluated for each record.
- In batch mode, the current timestamp is evaluated once when the query starts,
and
CURRENT_TIMESTAMP
returns the same result for every row.
The
CURRENT_TIMESTAMP
function is equivalent to NOW.- Example
-- returns the current timestamp, for example: -- 2023-10-16 13:04:58.081 SELECT CURRENT_TIMESTAMP;
CURRENT_WATERMARK¶
Gets the current watermark for a rowtime
column.
- Syntax
CURRENT_WATERMARK(rowtime)
- Description
The
CURRENT_WATERMARK
function returns the current watermark for the givenrowtime
attribute, or NULL if no common watermark of all upstream operations is available at the current operation in the pipeline.The return type of the function is inferred to match that of the provided
rowtime
attribute, but with an adjusted precision of 3.For example, if the rowtime attribute is
TIMESTAMP_LTZ(9)
, the function returnsTIMESTAMP_LTZ(3)
.This function can return NULL, and it may be necessary to consider this case.
For more information, see watermarks.
- Example
The following example shows how to filter out late data by using the
CURRENT_WATERMARK
function with arowtime
column namedts
.WHERE CURRENT_WATERMARK(ts) IS NULL OR ts > CURRENT_WATERMARK(ts)
- Related function
DATE_FORMAT¶
Converts a timestamp to a formatted string.
- Syntax
DATE_FORMAT(timestamp, date_format)
- Description
The
DATE_FORMAT
function converts the specified timestamp to a string value in the format specified by thedate_format
string.The format string is compatible with the Java SimpleDateFormat. class.
- Example
-- returns "5:32 PM, UTC" SELECT DATE_FORMAT('2023-03-15 17:32:01.009', 'K:mm a, z');
DATE¶
Parses a DATE from a string.
- Syntax
DATE string
- Description
The
DATE
function returns a SQL date parsed from the specified string.The date format of the input string must be “yyyy-MM-dd”.
- Example
-- returns "2023-05-23" SELECT DATE '2023-05-23';
DAYOFMONTH¶
Gets the day of month from a DATE.
- Syntax
DAYOFMONTH(date)
- Description
The
DAYOFMONTH
function returns the day of a month from the specified SQL DATE as an integer between 1 and 31.The
DAYOFMONTH
function is equivalent toEXTRACT(DAY FROM date)
.- Example
-- returns 27 SELECT DAYOFMONTH(DATE '1994-09-27');
DAYOFWEEK¶
Gets the day of week from a DATE.
- Syntax
DAYOFWEEK(date)
- Description
The
DAYOFWEEK
function returns the day of a week from the specified SQL DATE as an integer between 1 and 7.The
DAYOFWEEK
function is equivalent toEXTRACT(DOW FROM date)
.- Example
-- returns 3 SELECT DAYOFWEEK(DATE '1994-09-27');
DAYOFYEAR¶
Gets the day of year from a DATE.
- Syntax
DAYOFYEAR(date)
- Description
The
DAYOFYEAR
function returns the day of a year from the specified SQL DATE as an integer between 1 and 366.The
DAYOFYEAR
function is equivalent toEXTRACT(DOY FROM date)
.- Example
-- returns 270 SELECT DAYOFYEAR(DATE '1994-09-27');
EXTRACT¶
Gets a time interval unit from a datetime.
- Syntax
EXTRACT(timeintervalunit FROM temporal)
- Description
- The
EXTRACT
function returns a LONG value extracted from the specifiedtimeintervalunit
part oftemporal
. - Example
-- returns 5 SELECT EXTRACT(DAY FROM DATE '2006-06-05');
- Related functions
FLOOR¶
Rounds a time point down.
- Syntax
FLOOR(timepoint TO timeintervalunit)
- Description
- The
FLOOR
function returns a value that roundstimepoint
down to the time unit specified bytimeintervalunit
. - Example
-- returns 12:44:00 SELECT FLOOR(TIME '12:44:31' TO MINUTE);
- Related function
FROM_UNIXTIME¶
Gets a Unix time as a formatted string.
- Syntax
FROM_UNIXTIME(numeric[, string])
- Description
The
FROM_UNIXTIME
function returns a representation of the NUMERIC argument as a value in string format. The default format is “yyyy-MM-dd hh:mm:ss”.The specified NUMERIC is an internal timestamp value representing seconds since “1970-01-01 00:00:00” UTC, such as produced by the UNIX_TIMESTAMP function.
The return value is expressed in the session time zone (specified in TableConfig).
- Example
-- Returns "1970-01-01 00:00:44" if in the UTC time zone, -- but returns "1970-01-01 09:00:44" if in the 'Asia/Tokyo' time zone. SELECT FROM_UNIXTIME(44);
HOUR¶
Gets the hour of day from a timestamp.
- Syntax
HOUR(timestamp)
- Description
The
HOUR
function returns the hour of a day from the specified SQL timestamp as an integer between 0 and 23.The
HOUR
function is equivalent toEXTRACT(HOUR FROM timestamp)
.- Example
-- returns 13 SELECT HOUR(TIMESTAMP '1994-09-27 13:14:15');
- Related functions
INTERVAL¶
Parses an interval string.
- Syntax
INTERVAL string range
- Description
The
INTERVAL
function parses an interval string in the form “dd hh:mm:ss.fff” for SQL intervals of milliseconds, or “yyyy-mm” for SQL intervals of months.For intervals of milliseconds, these interval ranges apply:
- DAY
- MINUTE
- DAY TO HOUR
- DAY TO SECOND
For intervals of months, these interval ranges apply:
- YEAR
- YEAR TO MONTH
- Examples
The following SELECT statements return the values indicated in the comment lines.
-- returns +10 00:00:00.004 SELECT INTERVAL '10 00:00:00.004' DAY TO SECOND; -- returns +10 00:00:00.000 SELECT INTERVAL '10' DAY; -- returns +2-10 SELECT INTERVAL '2-10' YEAR TO MONTH;
LOCALTIME¶
Gets the current local time.
- Syntax
LOCALTIME
- Description
The
LOCALTIME
function returns the current SQL time in the local time zone. The return type isTIME(0)
.- In streaming mode, the current local time is evaluated for each record.
- In batch mode, the current local time is evaluated once when the query starts,
and
LOCALTIME
returns the same result for every row.
- Example
-- returns the local machine time as "hh:mm:ss", for example: -- 13:16:03 SELECT LOCALTIME;
LOCALTIMESTAMP¶
Gets the current timestamp.
- Syntax
LOCALTIMESTAMP
- Description
The
LOCALTIMESTAMP
function returns the current SQL timestamp in local time zone. The return type isTIMESTAMP(3)
.- In streaming mode, the current timestamp is evaluated for each record.
- In batch mode, the current timestamp is evaluated once when the query starts,
and
LOCALTIMESTAMP
returns the same result for every row.
- Example
-- returns the local machine datetime as "yyyy-mm-dd hh:mm:ss.sss", for example: -- 2023-10-16 13:15:32.390 SELECT LOCALTIMESTAMP;
MINUTE¶
Gets the minute of hour from a timestamp.
- Syntax
MINUTE(timestamp)
- Description
The
MINUTE
function returns the minute of an hour from the specified SQL timestamp as an integer between 0 and 59.The
MINUTE
function is equivalent toEXTRACT(MINUTE FROM timestamp)
.- Example
- returns 14 SELECT MINUTE(TIMESTAMP '1994-09-27 13:14:15');
- Related functions
MONTH¶
Gets the month of year from a DATE.
- Syntax
MONTH(date)
- Description
The
MONTH
function returns the month of a year from the specified SQL date as an integer between 1 and 12.The
MONTH
function is equivalent toEXTRACT(MONTH FROM date)
.- Example
-- returns 9 SELECT MONTH(DATE '1994-09-27');
- Related functions
NOW¶
Gets the current timestamp.
- Syntax
NOW()
- Description
The
NOW
function returns the current SQL timestamp in the local time zone.The
NOW
function is equivalent to CURRENT_TIMESTAMP.- Example
-- returns the local machine datetime as "yyyy-mm-dd hh:mm:ss.sss", for example: -- 2023-10-16 13:17:54.382 SELECT NOW();
OVERLAPS¶
Checks whether two time intervals overlap.
- Syntax
(timepoint1, temporal1) OVERLAPS (timepoint2, temporal2)
- Description
The
OVERLAPS
function returns TRUE if two time intervals defined by(timepoint1, temporal1)
and(timepoint2, temporal2)
overlap.The temporal values can be either a time point or a time interval.
- Example
-- returns TRUE SELECT (TIME '2:55:00', INTERVAL '1' HOUR) OVERLAPS (TIME '3:30:00', INTERVAL '2' HOUR); -- returns FALSE SELECT (TIME '9:00:00', TIME '10:00:00') OVERLAPS (TIME '10:15:00', INTERVAL '3' HOUR);
QUARTER¶
Gets the quarter of year from a DATE.
- Syntax
QUARTER(date)
- Description
The
QUARTER
function returns the quarter of a year from the specified SQL DATE as an integer between 1 and 4.The
QUARTER
function is equivalent toEXTRACT(QUARTER FROM date)
.- Example
-- returns 3 SELECT QUARTER(DATE '1994-09-27');
- Related functions
SECOND¶
Gets the second of minute from a TIMESTAMP.
- Syntax
SECOND(timestamp)
- Description
The
SECOND
function returns the second of a minute from the specified SQL TIMESTAMP as an integer between 0 and 59.The
SECOND
function is equivalent toEXTRACT(SECOND FROM timestamp)
.- Example
-- returns 15 SELECT SECOND(TIMESTAMP '1994-09-27 13:14:15');
- Related functions
SOURCE_WATERMARK¶
Provides a default watermark strategy.
- Syntax
WATERMARK FOR column AS SOURCE_WATERMARK()
- Description
The
SOURCE_WATERMARK
function provides a default watermark strategy.Watermarks are calculated per Kafka partition. They are based on a moving histogram of observed delays from the maximum seen timestamp.
For efficiency, the histogram algorithm uses a fixed number of buckets with exponentially increasing intervals. A percentile parameter defines how many elements must be included when generating a watermark. The maximum number of elements in the histogram is capped. An exponentially decreasing safety margin is added until the histogram has been fully warmed up.
- The minimum interval is 50 seconds.
- The maximum interval is 7 days.
The algorithm needs ~250 elements per partition until it’s warmed up, and the safety margin is 0.
- Example
-- Create a table that has the default watermark strategy -- on the ts column. CREATE TABLE t2 ( i INT, ts TIMESTAMP_LTZ(3), WATERMARK FOR ts AS SOURCE_WATERMARK()); -- The queryable schema for the table has the default watermark -- strategy on the ts column. ( i INT, ts TIMESTAMP_LTZ(3), `$rowtime` TIMESTAMP_LTZ(3) NOT NULL METADATA VIRTUAL COMMENT 'SYSTEM', WATERMARK FOR ts AS SOURCE_WATERMARK() );
- Related functions
TIME¶
Parses a string to a TIME.
- Syntax
TIME string
- Description
The
TIME
function returns a SQL TIME parsed from the specified string.The time format of the input string must be “hh:mm:ss”.
- Example
-- returns 23:42:55 as a TIME SELECT TIME '23:42:55';
TIMESTAMP¶
- Syntax
TIMESTAMP string
- Description
The
TIMESTAMP
function returns a SQL TIMESTAMP parsed from the specified string.The timestamp format of the input string must be “yyyy-MM-dd hh:mm:ss[.SSS]”.
- Example
-- returns 2023-05-04 23:42:55 as a TIMESTAMP SELECT TIMESTAMP '2023-05-04 23:42:55';
TO_DATE¶
Converts a date string to a DATE.
- Syntax
TO_DATE(string1[, string2])
- Description
The
TO_DATE
function converts the date stringstring1
with formatstring2
to a DATE.The default format is ‘yyyy-mm-dd’.
- Example
-- returns 2023-05-04 as a DATE SELECT TO_DATE('2023-05-04');
TO_TIMESTAMP¶
Converts a date string to a TIMESTAMP.
- Syntax
TO_TIMESTAMP(string1[, string2])
- Description
The
TO_TIMESTAMP
function converts datetime stringstring1
with formatstring2
under the ‘UTC+0’ time zone to a TIMESTAMP.The default format is ‘yyyy-mm-dd hh:mm:ss’.
- Example
-- returns 2023-05-04 23:42:55.000 as a TIMESTAMP SELECT TO_TIMESTAMP('2023-05-04 23:42:55', 'yyyy-mm-dd hh:mm:ss');
TO_TIMESTAMP_LTZ¶
Converts a Unix time to a TIMESTAMP_LTZ
.
- Syntax
TO_TIMESTAMP_LTZ(numeric, precision)
- Description
The
TO_TIMESTAMP_LTZ
function converts Unix epoch seconds or epoch milliseconds to aTIMESTAMP_LTZ
.These are the valid precision values:
- 0, which represents
TO_TIMESTAMP_LTZ(epoch_seconds, 0)
- 3, which represents
TO_TIMESTAMP_LTZ(epoch_milliseconds, 3)
- 0, which represents
- Example
-- convert 1000 epoch seconds -- returns 1970-01-01 00:16:40.000 as a TIMESTAMP_LTZ SELECT TO_TIMESTAMP_LTZ(1000, 0); -- convert 1000 epoch milliseconds -- returns 1970-01-01 00:00:01.000 as a TIMESTAMP_LTZ SELECT TO_TIMESTAMP_LTZ(1000, 3);
TIMESTAMPADD¶
Adds a time interval to a datetime.
- Syntax
TIMESTAMPADD(timeintervalunit, interval, timepoint)
- Description
Returns the sum of
timepoint
and theinterval
number of time units specified bytimeintervalunit
.The unit for the interval is given by the first argument, which must be one of the following values:
- DAY
- HOUR
- MINUTE
- MONTH
- SECOND
- YEAR
- Example
-- returns 2000-01-01 SELECT TIMESTAMPADD(DAY, 1, DATE '1999-12-31'); -- returns 2000-01-01 01:00:00 SELECT TIMESTAMPADD(HOUR, 2, TIMESTAMP '1999-12-31 23:00:00');
TIMESTAMPDIFF¶
Computes the interval between two datetimes.
- Syntax
TIMESTAMPDIFF(timepointunit, timepoint1, timepoint2)
- Description
The
TIMESTAMPDIFF
function returns the (signed) number oftimepointunit
betweentimepoint1
andtimepoint2
.The unit for the interval is given by the first argument, which must be one of the following values:
- DAY
- HOUR
- MINUTE
- MONTH
- SECOND
- YEAR
- Example
-- returns -1 SELECT TIMESTAMPDIFF(DAY, DATE '2000-01-01', DATE '1999-12-31'); -- returns -2 SELECT TIMESTAMPDIFF(HOUR, TIMESTAMP '2000-01-01 01:00:00', TIMESTAMP '1999-12-31 23:00:00');
UNIX_TIMESTAMP¶
Gets the current Unix timestamp in seconds.
- Syntax
UNIX_TIMESTAMP()
- Description
- The
UNIX_TIMESTAMP
function is not deterministic, which means the value is recalculated for each row. - Example
-- returns Epoch seconds, for example: -- 1697487923 SELECT UNIX_TIMESTAMP();
UNIX_TIMESTAMP¶
Converts a datetime string to a Unix timestamp.
- Syntax
UNIX_TIMESTAMP(string1[, string2])
- Description
The
UNIX_TIMESTAMP(string)
function converts the specified datetime stringstring1
in formatstring2
to a Unix timestamp (in seconds), using the time zone specified in table config.The default format is “yyyy-mm-dd hh:mm:ss”.
- Example
-- returns 1683201600 SELECT UNIX_TIMESTAMP('2023-05-04 12:00:00');
WEEK¶
Gets the week of year from a DATE.
- Syntax
WEEK(date)
- Description
The
WEEK
function returns the week of a year from the specified SQL DATE as an integer between 1 and 53.The
WEEK
function is equivalent toEXTRACT(WEEK FROM date)
.- Example
-- returns 39 SELECT WEEK(DATE '1994-09-27');
- Related functions
YEAR¶
Gets the year from a DATE.
- Syntax
YEAR(date)
The
YEAR
function returns the year from the specified SQL DATE.The
YEAR
function is equivalent toEXTRACT(YEAR FROM date)
.- Example
-- returns 1994 SELECT YEAR(DATE '1994-09-27');
- Related functions