我目前正在学习如何通过YQL查询数据,并且想知道表yahoo.finance.quotes && yahoo.finance.historicaldata现在是否可以正常工作。

实际上,在https://stackoverflow.com/questions/12417624/中引发了一些简单的查询:

select * from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT")

select * from yahoo.finance.historicaldata where symbol in ("YHOO","AAPL","GOOG","MSFT") and startDate = "2012-09-13" and endDate = "2012-09-13"

返回:
<description>No definition found for Table yahoo.finance.quotes</description>

但是,我可以在 DATATABLES->显示社区表中看到这些表。

谢谢

最佳答案

您需要执行的操作是导入社区表。你可以做这样的事情

env 'store://datatables.org/alltableswithkeys'; select * from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT")

yql console中,这些表仅在您选中时显示。显示社区表

希望对你有帮助

关于xml - YQL控制台-找不到表yahoo.finance.quotes的定义,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/31014168/

10-10 08:06