SequelChik
Programmer
Hi, can anyone help me, my boss has asked me to archive all products that have not been ordered for the past 6 months.
I'm new to this but I know it is a Make-Table query, so I tried;
Select ProductID, OrderDate
From Product, Order (Inner Join,etc.......)
WHERE (((Order.OrderDate)<Date()-180));
but i think that this will show only products that have been ordered before 6 months and not include the ones that have never been ordered.
Can anyone help me please?
Thanx
SequelChik
I'm new to this but I know it is a Make-Table query, so I tried;
Select ProductID, OrderDate
From Product, Order (Inner Join,etc.......)
WHERE (((Order.OrderDate)<Date()-180));
but i think that this will show only products that have been ordered before 6 months and not include the ones that have never been ordered.
Can anyone help me please?
Thanx
SequelChik