Answers for "how to compare two tables in sql to find unmatched records"

SQL
0

compare two tables to find unmatched records

select * 
from table1
where table1.slip_no NOT IN (select id from table2)
Posted by: Guest on September-01-2021

Code answers related to "how to compare two tables in sql to find unmatched records"

Code answers related to "SQL"

Browse Popular Code Answers by Language