Skip to content

YEAR ^v2.6.131

Returns the year component of a given date value.

js
YEAR(date_value)
YEAR(date_value)

Parameters

  • date_value - The date value from which to extract the year component.

Examples

js
YEAR("2023-04-17")
YEAR("2023-04-17")

Result: 2023

Note: Returns the year component (2023) of the given date value (2023-04-17).

js
YEAR(45033)
YEAR(45033)

Result: 2023

Note: Returns the year component (2023) of the given date value (45033), which represents 2023-04-17.