I have 2 tables in Mysql
Table 1 --
Id candidate_id resume
25 100 hjksdf.jpg
26 101 hdd.docx
29 102 hf.docx
30 103 hsdfh.docx
Table 2 --
resumes_sent_id client_id candidate_id date
1 43 100 2014-03-14 03
2 43 101 2014-03-15 03
I need to join these two tables where client_id
43 after joining I need only "unjoined" records. If I join I can get candidate_id
which values have unique 100,101.
But in my output I need those data records which have 102,103 it means except unique values of joining.
Based on t2
where client_id
is 43 there are two values 100 and 101 but I want to filter unmatched values like 102.