I have two data frames. Both are different shapes. First Dataframe:-
start_date end_date id
01 15/03/19 15:30 31/03/19 15:30 11
02 31/03/19 15:30 15/04/19 15:30 12
03 15/04/19 15:30 30/04/19 15:30 13
Second data frame:-
item_id purchase_at amount
0 100 15/03/19 15:33 149
1 200 8/04/19 15:47 4600
2 300 17/04/19 15:31 8200
3 400 20/04/19 16:00 350
I want the expected output:-
item_id purchase_at amount id
0 100 15/03/19 15:33 149 11
1 200 8/04/19 15:47 4600 12
2 300 17/04/19 15:31 8200 13
3 400 20/04/19 16:00 350 13
How to get it expected output?