Instruction
Using DATEADD() function can be used to subtract dates. Just enter the negative number to be added to your date.
It takes about 60 days to build a Boeing 777-800. To display the date when production of PerfectAir's Boeings started, you can use this query:
SELECT DATEADD(day, -60, ProducedDate) AS ProductionStarted FROM Aircraft WHERE Model = N'Boeing 777-800'
Exercise
Before the official launch, every plane has a 14-day test period. For the plane with ID of 4, show the Id, the original launch date, and the timestamp of when its test period began (name the column Tested).



