【发布时间】:2014-10-01 17:55:59
【问题描述】:
我正在使用 Yahoo 的 YQL 检索有关我的 Fantasy Football 联赛的数据。 YQL 与 SQL 非常相似。
Here 是 `
的输出select *
from fantasysports.leagues.standings
where league_key='331.l.777399'
如果我提供 team_id,我将如何过滤它以仅显示团队的“points_for”
我以为是
select *
from fantasysports.leagues.standings
where league_key='331.l.777399'
and standings.teams.team.%.team_id='2'
但这没有用。
【问题讨论】: