I have two data frames with four and two columns. For example:
   A  B  C   D
0  4  2 320 700
1  5  7 400 800
2  2  6 300 550
3  4  6 100 300
4  5  2 250 360
and
   A  B  
0  2  4 
1  5  7
2  2  5 
I need to compare the first data frame with the second data frame and if column A and column B in the second data frame was in column A and column B in the first data frame. (order doesn't matter. it means in the first data frame in the first row A is 4, B is 2 and in the second data frame is A is 2 and B is 4 and it's not important but both numbers should be in the columns) keep the whole row in the first data frame; otherwise remove the row. so the output will be :
   A  B  C   D
0  4  2 320 700
1  5  7 400 800
2  5  2 250 360
How can I get this output (my actual data frames are so huge and can't iterate through them so need a fast efficient way)?
 
     
     
     
    