SurrealDB has native support for datetimes with nanosecond precision. SurrealDB automatically parses and understands datetimes which are written as strings in the SurrealQL language. Times must also be formatted in an ISO-8601 format.
NoteAs of
v2.0.0, SurrealDB no longer eagerly converts a string into a datetime. An implicitdprefix or cast using<datetime>is required instead.
CREATE event SET time = d"2023-07-03T07:18:52Z";
SurrealDB handles all datetimes with nanosecond precision.
CREATE event SET time = d"2023-07-03T07:18:52.841147Z";
SurrealDB handles all timezones, and automatically converts and stores datetimes as a UTC date.
CREATE event SET time = d"2023-07-03T07:18:52.841147+02:00";
A datetime can also be created by using <datetime> to cast from a string.
With correct input:
CREATE event SET time = <datetime>"2023-07-03T07:18:52.841147Z";
Response[{ id: event:jwm8ncmfi30nrxdf24ws, time: d'2023-07-03T07:18:52.841147Z' }]
With incorrect input (missing final Z):
CREATE event SET time = <datetime>"2023-07-03T07:18:52.841147";
Response"Expected a datetime but cannot convert '2023-07-03T07:18:52.841147' into a datetime"
As a convenience, a date containing a year, month and day but no time will also parse correctly as a datetime.
CREATE event SET time = <datetime>"2024-04-03";
Response[{ id: event:4t50wjjlne9v8km2qcwq, time: d'2024-04-03T00:00:00Z' }]
DEFINE FIELD statementsDefining a field with a set datetime type will ensure that datetimes are properly formatted and not passed on as simple strings.
DEFINE FIELD time ON event TYPE datetime;CREATE event SET time = "2023-07-03T07:18:52.841147";
Response"Couldn't coerce value for field `time` of `event:qv8qcjf0w9oowekl36w6`: Expected `datetime` but found `'2023-07-03T07:18:52.841147'`"
The above query will fail because the datetime is not cast as a datetime type. The correct query is:
DEFINE FIELD time ON event TYPE datetime;CREATE event SET time = d"2023-07-03T07:18:52.84114Z";
Response[ { id: event:w2lhv58f7c9z7xo4nqkq, time: d'2023-07-03T07:18:52.841140Z' } ]
A datetime can be compared with another using the advanced SurrealDB operators.
SELECT * FROM d"2023-07-03T07:18:52Z" < d"2023-07-03T07:18:52.84114Z";
Response[[true]]
A duration can be used to alter a datetime.
CREATE event SET time = d"2023-07-03T07:18:52Z" + 2w;
Response[[{ id: event:`9ey7v8r0fd46xblf9dsf`, time: d'2023-07-17T07:18:52Z' }]]
Multi-part durations can also be used to modify datetimes.
CREATE event SET time = d"2023-07-03T07:18:52.841147Z" + 1h30m20s1350ms;
Response[[{ id: event:`9ey7v8r0fd46xblf9dsf`, time: d'2023-07-03T08:49:14.191147Z' }]]
Durations can be specified in any of the following units:
| Unit | Description |
|---|---|
| ns | Nanoseconds |
| us | Microseconds, alternative: µs |
| ms | Milliseconds |
| s | Seconds |
| m | Minutes |
| h | Hours |
| d | Days |
| w | Weeks |
| y | Years |
You’ve now seen how to store, modify, and handle dates and times in SurrealDB. For more advanced functionality, take a look at the time functions, which enable extracting, altering, rounding, and grouping datetimes into specific time intervals.