rickjamesb
MIS
Hello,
I just started sql programming. I have a customers table and an orders table. Basically I want the user to input a date, and from this date i want to list all the customers that have not ordered within the past 2 months of that date.
Im unfamiliar with the "NOT IN" subquery, does this layout look okay?
SELECT *
FROM Customers
WHERE CustomerID NOT IN
(SELECT CustomerID
FROM Orders
WHERE (04/01/1996 - OrderDate) month(6)
< interval '2' month)
I'm getting errors near the end of the code. I'm not sure what to do with the last 2 lines of code.
Instead of using the date 04/01/1996, how could i let the user input a date - can i replace that date with a parameter name @UserInputDate?
The code above, once fixed, will only show all the customer details from the customer table. How could i also display the last OrderDate from the Orders table?
Thanks,
Rick
I just started sql programming. I have a customers table and an orders table. Basically I want the user to input a date, and from this date i want to list all the customers that have not ordered within the past 2 months of that date.
Im unfamiliar with the "NOT IN" subquery, does this layout look okay?
SELECT *
FROM Customers
WHERE CustomerID NOT IN
(SELECT CustomerID
FROM Orders
WHERE (04/01/1996 - OrderDate) month(6)
< interval '2' month)
I'm getting errors near the end of the code. I'm not sure what to do with the last 2 lines of code.
Instead of using the date 04/01/1996, how could i let the user input a date - can i replace that date with a parameter name @UserInputDate?
The code above, once fixed, will only show all the customer details from the customer table. How could i also display the last OrderDate from the Orders table?
Thanks,
Rick