I need to find the equivalent of this query in sqlalchemy.
SELECT u.user_id, u.user_name, c.country FROM
table_user u , table_country c WHERE u.user_email = 'abc@def.com'
i tried this below code:
session.query(User).join(Country.country).filter(User.user_email == 'abc@def.com').first()
and this gave me below error :
AttributeError: 'ColumnProperty' object has no attribute 'mapper'
can anyone give an example of join query with tables mapped to new class objects ?