0

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'

但结果是空的。

4

1 回答 1

2

尝试以下查询:

select Symbol,Name,Volume,Ask from yahoo.finance.quotes where symbol = 'GOOG'

休息电话:http ://tinyurl.com/kmwn5ke

在此处编辑
YQL 中 SELECT 语法的 YQL 文档。

于 2013-08-21T18:41:46.547 回答