Curriculum
Course: SQL
Login

Curriculum

SQL

SQL References

0/80

MySQL Functions

0/139

SQL Server Functions

0/84

SQL Quick Ref

0/1
Text lesson

Year

Example

Retrieve the year component from a specified date.

SELECT Year(#05/17/2017#);

Definition and Usage

The Year() function retrieves the year component from a given date, returning an integer between 100 and 9999.

Syntax

Year(date)

Parameter Values

Parameter

Description

date

Required. A numeric or string expression representing a valid date.

Technical Details

WORKS IN

From Access 2000

More Examples

Example

Retrieve the year component of today’s date.

SELECT Year(Date());

Example

Retrieve the year component from the “BirthDate” column in the “Employees” table.

SELECT Year(BirthDate) FROM Employees;