bugl
bugl
HomeLearnPatternsPathsSearchPremium
HomeLearnPatternsPaths

Loading lesson path

Learn/SQL/SQL References
SQL•SQL References

SQL Server DATEFROMPARTS() Function

Example

SELECT DATEFROMPARTS(2018, 10, 31) AS DateFromParts;

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

ParameterDescription
yearRequired. Specifies a year (4 digits)
monthRequired. Specifies a month (from 1 to 12)
dayRequired. Specifies a day (from 1 to 31)

Technical Details

Return type:date
Works in:SQL Server (starting with 2012), Azure SQL Database, Azure SQL Data Warehouse, Parallel Data Warehouse

Previous

SQL Server DATEDIFF() Function

Next

SQL Server DATENAME() Function