雅虎财务api YQL查询非常适合获取股票数据,但它返回了很多东西,其中大部分都是我不感兴趣的。
基本查询,例如
select * from yahoo.finance.quotes where symbol = 'GOOG'
返回每个可用参数,其中一些参数为空。
我想要的只是'符号','名字','音量'和'问'。 那么如何将结果限制为这些数据?
我试过了:
select * from yahoo.finance.quotes where symbol = 'GOOG' and columns = 'Symbol,Name,Volume,Ask'
但结果为空。
答案 0 :(得分:2)
尝试以下查询:
select Symbol,Name,Volume,Ask from yahoo.finance.quotes where symbol = 'GOOG'
休息电话:http://tinyurl.com/kmwn5ke
修改强>
YQL here中SELECT语法的YQL文档。