This is additional question to my previous one here - How to access column values in SQLAlchemy result list after a join a query.
I have this join query.
result = db.query(Order, Item).join(Item, Item.order_id == Order.internal_id, isouter=True).filter(Item.order_id == order_id).all()
How do I get all the column names of the result?