I'm trying to do a full outer join in pandas with one of the conditions being a date match. The SQL code would be like the following:
SELECT *
    FROM applications apps
    FULL OUTER JOIN order_data orders on apps.account = orders.account_order
                                    and  orders.[Order date] <=   apps.time_stamp;
How could I achieve this considering apps and order_data are two pandas dataframes?
I tried using pysql but full outer joins are not supported.
Thank you
 
    