My database has a table in which it has two date columns (Start Date
and End Date
)
How can I list all the dates where the difference of Start Date
and End Date
is no more than 15 days?
This is what i tried so far:
SELECT homeworkID, subject, startdate, dateadd(day,15,startdate) as enddate
FROM homework;
Just add the filter predicate as per your rule/logic :