0
我有點困惑SQLAlchemy以及如何查詢工作。比方說,我有一個表隊和另一個表遊戲。我設置了它,所以如果我做Team.games,它會調用團隊所玩的所有遊戲。爲什麼是這樣工作的:SQLAlchemy查詢 - Python
from table_definitions import Team, Games
blah blah
session.query(Team).first().games
和失敗:
teams_table = Table("teams", metadata, autoload=True)
session.query(teams_table).first().games
AttributeError: 'NamedTuple' object has no attribute 'Games'
?
而我的第二個問題是在第一個查詢中返回這個,<table_def.Game object at 0x1b98090>
—我怎樣才能讓這個Game對象成爲保存在每個條目中的所有數據的列表?