Answers for "how to add a date and time in sql"

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
0

how to add amount between date in sql

mysql> select sum(Value) from DemoTable1444 where PurchaseDate between '2019-10-02' and '2019-12-31';
Posted by: Guest on April-04-2021

Code answers related to "how to add a date and time in sql"

Code answers related to "SQL"

Browse Popular Code Answers by Language