I have two tables A1 and A2 that I would like to join on all columns (purpose is to have a function that can be used to track changes to the data). Is there a easy way to join on all columns without specifying them explicitly.
Something like A1[A2, on="ALL"]
If anyone needs some code example I can provide it, but the question is more generally about if I have missed something in the help section for data.table.
I'm looking for a data.table solution. If there is none I'll use dplyr's:
inner_join(A1, A2, by = NULL)