SQL: DATEPART Function
The DATEPART function extracts the date part of a date, for example using the 'yyyy' expression allows you to extract the year from a given date. The query below queries all the employees who were hired in the year 1994 in the Northwind Employees table.
The query above returns the records of employees who were hired on October
SELECT FirstName + ' ' + LastName AS Employee, HireDate
FROM Employees
WHERE DATEPART(yyyy,HireDate) = 1994
SELECT FirstName + ' ' + LastName AS Employee, HireDate
FROM Employees
WHERE DATEPART(MM,HireDate) = 10
The query above returns the records of employees who were hired on October
Comments
Post a Comment