Year() Function in MS Access Last Updated : 11 Sep, 2020 Summarize Comments Improve Suggest changes Share Like Article Like Report Year() : Function in Microsoft Access is used to return the year part of a given date. Syntax : Year (date) Parameter : This method accepts one parameter as mentioned above and described below : date : It is any variant, numeric expression, string expression, or any combination of these that can represent a date. Returns : It Returns the year part of a specified date . If date contains Null, Null is returned. Example-1 : Find Year from a specified Date : SELECT Year(#05/17/2017#); Output : 2017 Example-2 : Find Year part of Today : SELECT Year(Date()); Output : 2020 Example-3 : Find Year of Joining of the Employee : SELECT Year(JoiningDate) FROM Employees; Output : 1990 2004 1992 Note : There Should be JoiningDate column in Employees Database.Here, the Employees Database contains only 3 records. Comment More infoAdvertise with us Next Article Year() Function in MS Access J jana_sayantan Follow Improve Article Tags : SQL DBMS-SQL Similar Reads VarType Function in MS Access In this article, we are going to cover VarType function in MS Access and will cover variable type of VarType function and also we will cover the return type of each VarType function. Let's discuss one by one. VarType : It is the function in Microsoft Access is used to return an Integer indicating th 2 min read IRR() Function in MS Access IRR() Function in MS Access is used to return a Double value specifying the internal rate of return for a series of periodic cash flows, for example, payments and receipts. Syntax : IRR( values () [, guess ] ) Parameter : IRR() Function accepts six parameters as mentioned above and described below. 2 min read IPmt() Function in MS Access IPmt() Function in MS Access is used to return a double specifying the interest payment for a given period of an annuity based on periodic, fixed payments and a fixed interest rate. Syntax : IPmt (rate, per, nper, pv [, fv ] [, type ]) Parameter : This method accepts six parameters in the syntax, as 2 min read Var() and VarP() Function in MS Access 1. Var() Function : Var() Function in MS Access is used to estimate the variance for a population sample. Syntax : Var(expr) Parameter : This method accept one parameter as mentioned above and described below : expr : It represents a string expression identifying the field that contains the numeric 2 min read YEAR() Function in MySQL YEAR() function in MySQL is used to find year from the given date. If the date is NULL, the YEAR() function will return NULL. Otherwise, it returns value range from 1000 to 9999. Syntax : YEAR(date) Parameter : This method accepts one parameter as mentioned above and described below : date : The dat 3 min read Like