SQL:根据条件过滤

时间:2014-10-01 17:55:59

标签: sql yql

我正在使用雅虎的YQL来检索有关我的梦幻足球联赛的数据。 YQL与SQL非常相似。

Here是`

的输出
select * 
from fantasysports.leagues.standings 
where league_key='331.l.777399'

我如何过滤这个以显示" points_for"对于团队,如果我提供team_id

我以为会是

select * 
from fantasysports.leagues.standings 
where league_key='331.l.777399' 
and standings.teams.team.%.team_id='2'

但这没效果。

1 个答案:

答案 0 :(得分:1)

你可以试试这样的事情

select points_for
from fantasysports.leagues.standings
where league_key='331.l.777399'
and standings.teams.team.%.team_id='2'