📣
TiDB Cloud Premium is now in public preview. Unlimited growth, instant elasticity, advanced security for enterprise workloads. Try it out →

TO_MONTHS



Converts a specified number of months into an Interval type.

  • Accepts positive integers, zero, and negative integers as input.

Syntax

TO_MONTHS(<months>)

Return Type

Interval (represented in months).

Examples

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 │ └──────────────────────────────────────────────┘

Was this page helpful?