SMALLDATETIMEFROMPARTS (Transact-SQL)

**APPLIES TO:** ![yes](media/yes.png)SQL Server (starting with 2012) ![yes](media/yes.png)Azure SQL Database ![yes](media/yes.png)Azure SQL Data Warehouse ![yes](media/yes.png)Parallel Data Warehouse

Returns a smalldatetime value for the specified date and time.

Topic link icon Transact-SQL Syntax Conventions

Syntax

SMALLDATETIMEFROMPARTS ( year, month, day, hour, minute )  

Arguments

year
Integer expression specifying a year.

month
Integer expression specifying a month.

day
Integer expression specifying a day.

hour
Integer expression specifying hours.

minute
Integer expression specifying minutes.

Return Types

smalldatetime

Remarks

This function acts like a constructor for a fully initialized smalldatetime value. If the arguments are not valid, then an error is thrown. If required arguments are null, then null is returned.

This function is capable of being remoted to SQL Server 2017 servers and above. It is not remoted to servers that have a version below SQL Server 2017 SQL Server 2017

Examples

SELECT SMALLDATETIMEFROMPARTS ( 2010, 12, 31, 23, 59 ) AS Result  

Here is the result set.

Result  
---------------------------  
2011-01-01 00:00:00  
  
(1 row(s) affected)