Jump to content

Difficult query


duetltd

Recommended Posts

I need to create a list of customers that have not been called upon within a period of time.

 

Customers: CusID  Name etc.

Calls: CusID  Date Sales Rep etc.

 

Is this possible using sql or should I just write a program to do this?

 

Thank you for your help.

 

Don Lareau

 

Link to comment
Share on other sites

It's possible. Assuming the `Date` field is of a date type, you can use this example:

 

This selects all customers that have not received calls in the past 30+ days.

SELECT cu.Name, ca.CusID

FROM Customers cu

INNER JOIN Calls ca

    ON (cu.CusID = ca.CusID)

WHERE DATE_SUB(CURDATE(), INTERVAL 30 DAY) > ca.Date;

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.