The problem I have involves looking for records within 2 tables.
Table1, (the source), contains 100 records. Table2, (the sink), contains 1000 records.
So to check if each record in Table1 is contained in Table2, looping would involve 100x1000=100,000 times (if I'm not mistaken).
If instead I...