to_j_local_date

to_j_local_date converts a date-time value into a Java LocalDate, which is a date without a time or time zone.

Important

In query strings, users should choose the built-in function toLocalDate instead of to_j_local_date. For more information, see:

Syntax

Parameters

ParameterTypeDescription
dtUnion[None, LocalDate, str, datetime.date, datetime.time, datetime.datetime, numpy.datetime64, pandas.Timestamp]

The date-time value to convert to a Java LocalDate.

A string in the form of [-]PTnHnMnS, with n being numeric values; e.g., PT1H for one hour, PT1M for one minute, or -PT1M5.5S for negative one minute and 5.5 seconds.

Returns

Returns a LocalDate.

Examples