I need to get left join results from two tables table1
and table2
.
My SQL query gives me the desired result.
select *
from table1 left join table2
on table1.name=table2.name where table2.name is null;
How do I turn this into a Flask SQLAlchemy query?