Jump to content

Join Query solution for multiple table check.


rajeshkr

Recommended Posts

hi,

I have six tables each having a column field (order_no), now i want to match that something like this.

 

1- select order_no from table 1 where order_no != with order_no present in all other six tables.

 

Can any one suggest which join query or which query i should use to achieve this?

thanks

Link to comment
Share on other sites

Use LEFT JOINS. Where there is no match you get null values

 

EG

 


SELECT
  table1.order_no as t1
, table2.order_no as t2
, table3.order_no as t3
FROM table1
    LEFT JOIN table2 ON table1.order_no = table2.order_no
    LEFT JOIN table3 ON table1.order_no = table3.order_no

+----+------+------+
| t1 | t2   | t3   |
+----+------+------+
|  1 |    1 |    1 |
|  2 | NULL |    2 |
|  3 |    3 | NULL |
+----+------+------+
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.