DATEFROMPARTS

Description

This function returns a date value that maps to the specified year, month, and day values.(DATEFROMPARTS in Transact-SQL).

Sample Source Pattern

Syntax

DATEFROMPARTS ( year, month, day )  

Examples

Code:

SELECT DATEFROMPARTS ( 2010, 12, 31 ) AS RESULT;  

Result:

    RESULT|
----------+
2022-12-12|

Last updated