我目前正在学习如何通过YQL查询数据,并想知道表格是否存在: yahoo.finance.quotes && yahoo.finance.historicaldata 现在有效。
事实上,在https://stackoverflow.com/questions/12417624/中提出了简单的查询:
IAppendable
返回:
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"
但是,我可以在 DATATABLES - >中看到这些表格。显示社区表
由于
答案 0 :(得分:12)
您需要做什么,导入社区表。你可以做这样的事情
env 'store://datatables.org/alltableswithkeys'; select * from yahoo.finance.quotes where symbol in ("YHOO","AAPL","GOOG","MSFT")
在yql console中,只有在您选中显示社区表
时才会显示这些表格希望它会有所帮助