yahoo Finance api YQL 查询非常适合获取股票数据,但它返回的东西太多了,其中大部分我都不感兴趣。
一个基本的查询,例如,
select * from yahoo.finance.quotes where symbol = 'GOOG'
返回每个可用的参数,其中一些是空的。
我想要的只是“符号”、“名称”、“音量”和“询问”。那么如何将结果限制在这些数据中呢?
我试过了:
select * from yahoo.finance.quotes where symbol = 'GOOG' and columns = 'Symbol,Name,Volume,Ask'
但结果是空的。