Skip to content

Converts a specified number of months into an Interval type.

  • Accepts positive integers, zero, and negative integers as input.
func.to_months(<months>)
func.to_months(2)
┌──────────────────────────────────────────────────────┐
│ func.to_months(2) │
├──────────────────────────────────────────────────────┤
2 months │
└──────────────────────────────────────────────────────┘
TO_MONTHS(<months>)

Interval (represented in months).

SELECT TO_MONTHS(2), TO_MONTHS(0), TO_MONTHS((- 2));
┌──────────────────────────────────────────────┐
│ to_months(2) │ to_months(0) │ to_months(- 2) │
├──────────────┼──────────────┼────────────────┤
2 months │ 00:00:00-2 months │
└──────────────────────────────────────────────┘