SQL Server DATEFROMPARTS() Function
Example
Return a date from it's parts:
  SELECT DATEFROMPARTS(2018, 10, 31) AS DateFromParts;
Try it Yourself »
Definition and Usage
The DATEFROMPARTS() function returns a date from the specified parts (year, month, and day values).
Syntax
  DATEFROMPARTS(year, month, day)
Parameter Values
| Parameter | Description | 
|---|---|
| year | Required. Specifies a year (4 digits) | 
| month | Required. Specifies a month (from 1 to 12) | 
| day | Required. Specifies a day (from 1 to 31) | 
Technical Details
| Works in: | SQL Server (starting with 2012), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse | 
|---|
 
 
