📄️ TODAYOFMONTHConverts a date or date with time to a UInt8 number containing the number of the day of the month (1-31).
📄️ toDayOfWeekConverts a date or date with time to a UInt8 number containing the number of the day of the week (Monday is 1, and Sunday is 7).
📄️ toDayOfYearConverts a date or date with time to a UInt16 number containing the number of the day of the year (1-366).
📄️ toHourConverts a date with time to a UInt8 number containing the number of the hour in 24-hour time (0-23).
📄️ toMinuteConverts a date with time to a UInt8 number containing the number of the minute of the hour (0-59).
📄️ toSecondConverts a date with time to a UInt8 number containing the number of the second in the minute (0-59).
📄️ toStartOfFifteenMinutesRounds down the date with time to the start of the fifteen-minute interval.
📄️ toYYYYMMConverts a date or date with time to a UInt32 number containing the year and month number.
📄️ toYYYYMMDDConverts a date or date with time to a UInt32 number containing the year and month number (YYYY * 10000 + MM * 100 + DD).
📄️ toYYYYMMDDhhmmssConverts a date or date with time to a UInt64 number containing the year and month number (YYYY * 10000000000 + MM * 100000000 + DD * 1000000 + hh * 10000 + mm * 100 + ss).