The datetime data type

This article describes the datetime data type.

The datetime data type represents an instant in time, typically expressed as a date and time of day. Values range from 00:00:00 (midnight), January 1, 0001 Anno Domini (Common Era) through 11:59:59 P.M., December 31, 9999 A.D. (C.E.) in the Gregorian calendar.

Time values are measured in 100-nanosecond units called ticks, and a particular date is the number of ticks since 12:00 midnight, January 1, 0001 A.D. (C.E.) in the GregorianCalendar calendar (excluding ticks that would be added by leap seconds). For example, a ticks value of 31241376000000000 represents the date, Friday, January 01, 0100 12:00:00 midnight. This is sometimes called “a moment in linear time”.

datetime literals

To specify a datetime literal, use one of the following syntax options:

SyntaxDescriptionExample
datetime(year.month.day hour:minute:second.milliseconds)A date and time in UTC format.datetime(2015-12-31 23:59:59.9)
datetime(year.month.day)A date in UTC format.datetime(2015-12-31)
datetime()Returns the current time.
datetime(null)Represents the null value.

The now() and ago() special functions

Kusto provides two special functions, now() and ago(), to allow queries to reference the time at which the query starts execution.

Supported formats

There are several formats for datetime that are supported as datetime() literals and the todatetime() function.

ISO 8601

FormatExample
%Y-%m-%dT%H:%M:%s%z2014-05-25T08:20:03.123456Z
%Y-%m-%dT%H:%M:%s2014-05-25T08:20:03.123456
%Y-%m-%dT%H:%M2014-05-25T08:20
%Y-%m-%d %H:%M:%s%z2014-11-08 15:55:55.123456Z
%Y-%m-%d %H:%M:%s2014-11-08 15:55:55
%Y-%m-%d %H:%M2014-11-08 15:55
%Y-%m-%d2014-11-08

RFC 822

FormatExample
%w, %e %b %r %H:%M:%s %ZSat, 8 Nov 14 15:05:02 GMT
%w, %e %b %r %H:%M:%sSat, 8 Nov 14 15:05:02
%w, %e %b %r %H:%MSat, 8 Nov 14 15:05
%w, %e %b %r %H:%M %ZSat, 8 Nov 14 15:05 GMT
%e %b %r %H:%M:%s %Z8 Nov 14 15:05:02 GMT
%e %b %r %H:%M:%s8 Nov 14 15:05:02
%e %b %r %H:%M8 Nov 14 15:05
%e %b %r %H:%M %Z8 Nov 14 15:05 GMT

RFC 850

FormatExample
%w, %e-%b-%r %H:%M:%s %ZSaturday, 08-Nov-14 15:05:02 GMT
%w, %e-%b-%r %H:%M:%sSaturday, 08-Nov-14 15:05:02
%w, %e-%b-%r %H:%M %ZSaturday, 08-Nov-14 15:05 GMT
%w, %e-%b-%r %H:%MSaturday, 08-Nov-14 15:05
%e-%b-%r %H:%M:%s %Z08-Nov-14 15:05:02 GMT
%e-%b-%r %H:%M:%s08-Nov-14 15:05:02
%e-%b-%r %H:%M %Z08-Nov-14 15:05 GMT
%e-%b-%r %H:%M08-Nov-14 15:05

Sortable

FormatExample
%Y-%n-%e %H:%M:%s2014-11-08 15:05:25
%Y-%n-%e %H:%M:%s %Z2014-11-08 15:05:25 GMT
%Y-%n-%e %H:%M2014-11-08 15:05
%Y-%n-%e %H:%M %Z2014-11-08 15:05 GMT
%Y-%n-%eT%H:%M:%s2014-11-08T15:05:25
%Y-%n-%eT%H:%M:%s %Z2014-11-08T15:05:25 GMT
%Y-%n-%eT%H:%M2014-11-08T15:05
%Y-%n-%eT%H:%M %Z2014-11-08T15:05 GMT