Jump to content

[SOLVED] comparing two tables but with two stipulations


c_shelswell

Recommended Posts

Hi i'm trying to compare two tables in mysql i'm just looking for "users who are not in table1 but are in table2 and the date range from table1 that should be searched is from 2007-01-04 to 2007-05-01"

 

here's the actual sql

 

$q = " select reg_users.email from reg_users inner join purchases on reg_users.username=purchases.username where purchases.username is null and purchases.date between '$sDateOne' and '$eDateOne'";

 

If i don't add the date bit my query works fine, sending back everyone who has not purchased it's just when i try to search in the date range it starts to return 0 rows.

 

Any idea how i might fix this??

 

Thanks Very much

Link to comment
Share on other sites

You can always just use a nested select statement:

SELECT email 
FROM reg_users
WHERE username NOT IN (
  SELECT username 
  FROM purchases
  WHERE date BETWEEN '$stDate' AND '$edDate'
);

 

Hope this helps.

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.