select * from yahoo.finance.quotes where symbol in ("^IXIC") not work.
答案 0 :(得分:0)
您必须使用不同的表进行证券交易......
您可以使用以下两个选项之一,
select * from yahoo.finance.quoteslist where symbol= '^IXIC'
OR
select * from yahoo.finance.quoteslist where symbol in ('^GSPC','^IXIC')