Last updated 1 year ago
This function returns a date value that maps to the specified year, month, and day values.().
Code:
Result:
DATEFROMPARTS ( year, month, day )
DATE_FROM_PARTS( <year>, <month>, <day> )
SELECT DATEFROMPARTS ( 2010, 12, 31 ) AS RESULT;
RESULT| ----------+ 2022-12-12|
SELECT DATE_FROM_PARTS ( 2010, 12, 31 ) AS RESULT;