Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从雅虎 apl 获得纳斯达克、道琼斯、标准普尔 500 指数、日经 300 指数很热。
select * from yahoo.finance.quotes where symbol in ("^IXIC") not work.
您必须使用不同的表格进行证券交易所...
您可以使用以下 2 个选项中的任何一个,
select * from yahoo.finance.quoteslist where symbol= '^IXIC'
或者
select * from yahoo.finance.quoteslist where symbol in ('^GSPC','^IXIC')