문제

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...

You can use any of the 2 options below,

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

OR

select * from yahoo.finance.quoteslist where symbol in ('^GSPC','^IXIC') 
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top