Answers for "sql server add time to date"

SQL
0

sql server add time to date

DECLARE @date DATETIME
SET @date='2010-10-01'
SET @date=@date+'15:00:00'
SELECT @date AS DATETIME
Posted by: Guest on May-18-2021

Code answers related to "SQL"

Browse Popular Code Answers by Language