Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SQL query comparison between two tables

I have two tables in my database:

table_A:             table_B:                  

id    user           id    user               
1     Mike           1     Mike          
2     Dan            2     Dan           
3     Tom            3     Tom
4     Lina           4     Lina
                     5     Cynthia
                     6     Sam

My aim is to identify which users in Table_B do not exist in Table_A based on id. I'm new in SQL, and this is what i came up with:

SELECT id FROM Table_B
WHERE B.id NOT IN ( SELECT A.id from Table_A)

Most likely my logic is wrong, so i'd appreciate any guidance please.

like image 722
dan Avatar asked May 17 '26 16:05

dan


1 Answers

You can use sub-query in WHERE clause predicate NOT IN Then it will return the id present in table_B only

Sub-Query

This query return id from table_A

SELECT table_A.id FROM table_A

Then it will be passed to NOT IN clause which will return boolean true on every record set iteration if not matched. So id 5 and 6 only return in the main query.

Final Query

SELECT table_B.id, table_B.name FROM table_B WHERE table_B.id NOT IN (SELECT table_A.id FROM table_A);

OR

to select all column use symbol * instead of column lists

SELECT * FROM table_B WHERE table_B.id NOT IN (SELECT table_A.id FROM table_A);
like image 164
gvgvgvijayan Avatar answered May 19 '26 06:05

gvgvgvijayan



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!