I have two tables, new (shared table) and old (regular in-memory table), each with less than 10,000 rows. Both tables contain columns “a“ and “b“, and values in the "a" columns are unique. I want to compare the two columns to find records that only exist in table new.
The only method I know is to append all records from the table new to the table old and then use isDuplicated
to remove duplicates. I'm wondering if there's a more efficient method.