Jump to content

Compare Mysql Table And Display Which Not Exist


shahzad429

Recommended Posts

I'd do it like this

 

SELECT p.TableID, p.ProductName
FROM product AS p
LEFT JOIN agencytoproduct AS a ON p.TableID = a.productID
AND a.AgencyID='$object[TableID]'
WHERE a.productID IS NULL
ORDER BY p.ProductName

 

a.productId isn't null - it doesn't exist - which is why this method doesn't work.

Link to comment
Share on other sites

a.productId isn't null - it doesn't exist - which is why this method doesn't work.

 

SofWare, don't knock it till you've tried it

 

mysql> SELECT * FROM product;
+------------+-------------+
| product_id | productName |
+------------+-------------+
|		  1 | Lawnmower   |
|		  2 | Greenhouse  |
|		  3 | Paving slab |
|		  4 | BBQ		 |
|		  5 | Chainsaw    |
+------------+-------------+


mysql> SELECT * FROM agencytoproduct;
+----+----------+-----------+
| id | agencyID | productID |
+----+----------+-----------+
|  1 |	    1 |		 1 |
|  2 |	    1 |		 2 |
|  3 |	    1 |		 5 |
|  4 |	    2 |		 1 |
|  5 |	    2 |		 3 |
|  6 |	    2 |		 4 |
+----+----------+-----------+

 

Note that for agency 1 there are no products 3 and 4.

 

Running my query:

 

mysql> SELECT p.product_id, p.ProductName
   -> FROM product AS p
   -> LEFT JOIN agencytoproduct AS a ON p.product_ID = a.productID
   -> AND a.AgencyID = '1'
   -> WHERE a.productID IS NULL
   -> ORDER BY p.ProductName;
+------------+-------------+
| product_id | ProductName |
+------------+-------------+
|		  4 | BBQ		 |
|		  3 | Paving slab |
+------------+-------------+

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.