Answers for "how to date add in sql"

SQL
1

sql add days to date

//Returns Date time
//Takes where to add (as in year, month, day, etc) to
//Takes how much to add
//Takes a datetime in some different formats
DATEADD(day, 1, '2017/08/25')
Posted by: Guest on March-23-2021
7

insert date sql

INSERT INTO FOO (xpto) VALUES(TO_DATE('17/12/2015', 'DD/MM/YYYY'));
Posted by: Guest on June-29-2020

Code answers related to "SQL"

Browse Popular Code Answers by Language