TO_MONTH

Convert a date or date with time (timestamp/datetime) to a UInt8 number containing the month number (1-12).

Analyze Syntax

func.to_month(<expr>)

Analyze Examples

func.now(), func.to_month(func.now()), func.month(func.now())

┌─────────────────────────────────────────────────────────────────────────────────┐
       func.now()            func.to_month(func.now())  func.month(func.now()) 
├────────────────────────────┼───────────────────────────┼────────────────────────┤
 2024-03-14 23:34:02.161291                          3                       3 
└─────────────────────────────────────────────────────────────────────────────────┘

SQL Syntax

TO_MONTH(<expr>)

Arguments

ArgumentsDescription
<expr>date/timestamp

Aliases

Return Type

TINYINT

SQL Examples

SELECT NOW(), TO_MONTH(NOW()), MONTH(NOW());

┌─────────────────────────────────────────────────────────────┐
            now()            to_month(now())  month(now()) 
├────────────────────────────┼─────────────────┼──────────────┤
 2024-03-14 23:34:02.161291                3             3 
└─────────────────────────────────────────────────────────────┘
Last modified June 12, 2024 at 9:53 PM EST: updating datetime functions (f087f54)