Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

DRAFT--do not review

You can use the date and time functions to perform various operations on dates and times in the Wrangler. Functions that specify dates, times, or timestamps in the arguments use strings with specific formats:

  • For a date, the format is %yyyy-%mm-%dd and is of java type LocalDate.

  • For a time, the format is %hh:%nn:%ss. If extended to include microseconds, the format is %hh:%nn:%ss.x where x gives the number of decimal places seconds is given to. time is of type LocalTime.

  • For a timestamp, the format is the date format followed by the time format. timestamp Timestamp is of type LocalDateTime.

...