Looking for help with YQL movie showtimes

淺唱寂寞╮ 提交于 2019-12-08 03:47:16

问题


I had been using the undocumented Yahoo movies API until it was pulled a few days ago, so I'm looking for another way to retrieve local movie showtimes (ideally by theater). I found this thread about YQL datatables on SO, and the last post looked really promising. I just can't seem to figure out how to query the data to return local movies and showtimes. I've been trying variations on "SELECT * from movies.showtimes where location='myzip'" with no success. Any ideas?


回答1:


select * from movies.showtimes

To get a list of all movies. Then:

select * from movies.showtimes with location='myzip' and name='one of the movies'

You could also do

select * from movies.showtimes with location='myzip' and name in whatever

There's no list by location, unfortunately



来源:https://stackoverflow.com/questions/1681153/looking-for-help-with-yql-movie-showtimes

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!