Jump to content

MYSQL Left Join single row not found in a


Halisco
Go to solution Solved by NigelRel3,

Recommended Posts

I have two seperate tables containing an customer_id that match when a customer purchases a particular type of fruit.  I have a multi
 
 
 

table 1 "customers":

 

customer_id          email                              phone

1                           email1@email.com        555-111-1111

2                           email2@email.com        555-222-2222

3                           email3@email.com        555-333-3333

 

 

 


customer_id      type

1                        macintosh

1                        galla

2                        galla

2                        jonagold

3                        jonagold



 

 

 

Here is a shorter version of my item list i use for selecting the type of fruit i want to search for.
 
<select name=fruit_type[] multiple>
  <option value="macintosh">macintosh</option>
  <option value="gala">a</option>
  <option value="jonagold">jonagold</option>
</select>
 
I then take that list and join it
 
$search_fruit = filter_var_array($_POST['fruit_type'], FILTER_SANITIZE_SPECIAL_CHARS);
$fruit_types = join("','", $search_fruit );
Here is my SQL query 
 
$search_criteria = ""
                . "SELECT c.*  "
                . "FROM customers AS c LEFT JOIN  type AS p ON c.customer_id= p.customer_id"
                . "WHERE type NOT IN ('$fruit_types ') "
                . "GROUP BY c.customer_id, p.customer_id"
                . "ORDER BY customer_id Asc";

This works if I Just use IN for the customers i want to find that have purchased a particular type of apple but i am trying to search for customers that have never purchased a particular apple or multiple apples from my list.  For example if i select just macintosh from the list customer 1 still show up as not purchasing that apple type because they have purchased an apple that is not a macintosh.  Can anyone help me figure out how i accomplish this task?

Edited by Halisco
Link to comment
Share on other sites

  • Solution

You could use something like 

select c.* from customers c where not exists (select 1 from type t where c.customer_id = t.customer_id and t.type in ('macintosh'))

All this does is find the people where a record isn't found for a set of types.

Link to comment
Share on other sites

You could use something like 

select c.* from customers c where not exists (select 1 from type t where c.customer_id = t.customer_id and t.type in ('macintosh'))

All this does is find the people where a record isn't found for a set of types.

Isn't that what he asked for? 

 

This works if I Just use IN for the customers i want to find that have purchased a particular type of apple but i am trying to search for customers that have never purchased a particular apple or multiple apples from my list.  For example if i select just macintosh from the list customer 1 still show up as not purchasing that apple type because they have purchased an apple that is not a macintosh.  Can anyone help me figure out how i accomplish this task?

Edited by taquitosensei
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.