Day / Temporal Layer

Extract day of month from date/datetime values, similar to datetime.day in Python or DAY() in SQL. Returns integers from 1 to 31, depending on the month.

Example extractions:

DateDayNote
2024-01-011Month start
2024-02-2929Leap year February
2024-04-303030-day month end
2024-12-313131-day month end

Common applications:

  • Monthly reporting
  • Billing cycles
  • Schedule planning
  • Payment processing
  • Event scheduling
Table
0
0
Table

Transforms

[, ...]

Select

column

Date/datetime column to extract day from. Valid days depend on month and year (for February in leap years). Returns the calendar day of month.

Name for the new column. If not provided, the system generates a unique name. If AsColumn matches an existing column, the existing column is replaced. The name should follow valid column naming conventions.