I have two tables. I want to delete unmatching rows. Compare with first column in Table1 and compare with first column in Table2.
Table1
111 aaa
222 bbb
333 ccc
Table2
333 xxx
444 zzz
111 vvv
result of Table2
333 xxx
111 vvv
I tried some thing here
Please help me these
Thank you.