I'm looking for a way to select the rows from Dataframe 1 where the values of column 'A' and 'B' appear the same as in Dataframe 'a' and 'b'. The corresponding column names are different, so 'A' is not the same as 'a'.
Example:
Dataframe 1:
A B C
0 10 20 30
1 40 50 60
2 70 80 90
Dataframe 2:
a b
0 10 20
1 40 0
2 70 80
The selected rows would be:
A B C
0 10 20 30
2 70 80 90