我是 YQL 的新手。也许这是非常微不足道的,但我无法弄清楚这一点。例如,我知道如何使用 YQL 控制台从 Yahoo/YQL 查询当前股票数据:
http://developer.yahoo.com/yql/console/
使用查询字符串:
select * from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT")
但是,如果我想要昨天或一周前的相同数据怎么办?我尝试了诸如
select * from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT") and date=20120913
但它似乎不起作用。
任何建议表示赞赏!