In my current python script i have 2 dataframes. I want to link those 2 dataframes based on multiple values, one of them is a between dates part. The between part is really important. I want to achieve the same as in the query below:
Select *
from x
Join y on x.customerid = y.customerid and x.date between y.date and dateadd(minutes, 15, y.date)
Can anyone please help me out? I have searched for a few hours now on 'Python join/merge between dates', but i haven't found any information.