本文介绍了Yahoo YQL 使用不同证券交易所的 sql 查询获取数据的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

从雅虎 apl 获取纳斯达克、道琼斯、标准普尔 500、日经 300 指数的热门指数.

hot to get nasdaq, Dow Jones,S&P 500, Nikkei 300 from yahoo apl.

select * from yahoo.finance.quotes where symbol in ("^IXIC") not work.

推荐答案

你必须使用不同的表格进行股票交易...

You have to use different tables for stock exchange...

您可以使用以下 2 个选项中的任何一个,

You can use any of the 2 options below,

select * from yahoo.finance.quoteslist where symbol= '^IXIC'

select * from yahoo.finance.quoteslist where symbol in ('^GSPC','^IXIC')

这篇关于Yahoo YQL 使用不同证券交易所的 sql 查询获取数据的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 23:57