Jump to content

[SOLVED] SQL - Dormant Accounts


Canman2005

Recommended Posts

Hi all

 

I am wondering if anyone can help.

 

Basically I have the following tables;

 

`users`

 

`orders`

 

the `users` table contains ID numbers

 

the `orders` table holds the following fields

 

`userid`

`orderdate`

 

The `userid` field relates to the ID numbers in the `users` table

 

The `orderdate` is simply a date stamp such as 2009-01-19 12:22:34

 

At the moment, if I do the following QUERY

 

SELECT * FROM `orders`

 

then I get the list of every order stored, which is fine.

 

What I want to do, is grab a list of `userid` numbers that have not had an entry in the `orders` table between two dats, so basically getting a list of all `userid` numbrs that have not placed an order between say 2008-10-23 and 2008-12-21, this would then give dormant accounts.

 

Can anyone help?

 

Thanks

 

Dave

Link to comment
Share on other sites

SELECT u.userid, u.name, COALESCE(o.orderdate,'Never')
FROM users u
LEFT JOIN orders o USING(userid)
WHERE o.orderdate 
NOT
BETWEEN '2008-10-23'
AND CURDATE()
OR o.orderdate IS NULL
GROUP BY userid

This will show users that have never ordered as well.  You can replace  CURDATE() with your upper (most recent date), but I put the current date because specifying a range less than today leaves room for them to order between then and the current date (making them active).

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.