显示城镇、村庄..YQL的一个城市(公社)



我想展示城镇、村庄。。。由WOEID和YQL创建的一个城市。但我不能展示结果!我尝试过:

select * from geo.places where parent_woeid="12680570"
select * from geo.places where admin3.woeid="12680570"
select * from geo.places in (select * from geo.places where woeid="12680570")
select * from geo.places where woeid in (select * from geo.places where woeid="12680570")
select name, placeTypeName, admin3 from geo.places where content="Montichiari"

但我没有解决方案!

你有解决方案吗?

您的YQL查询是错误的。YQL查询应为:
select * from geo.places where woeid="12680570"

在这里试试。链接到YQL控制台在这里

最新更新