寻求有关 YQL 电影放映时间的帮助

发布于 2024-08-10 08:05:29 字数 334 浏览 5 评论 0原文

我一直在使用未记录的雅虎电影 API,直到几天前它被撤下,所以我正在寻找另一种方法来检索本地电影放映时间(最好是剧院)。我在 SO 上找到了关于 YQL 数据表的 此帖子 ,最后一篇文章看起来确实很有希望。我似乎不知道如何查询数据以返回本地电影和放映时间。我一直在尝试“SELECT * from movie.showtimes where location='myzip'”的变体,但没有成功。有什么想法吗?

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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

征棹 2024-08-17 08:05:29

select * from movie.showtimes

获取所有电影的列表。然后:

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

您也可以这样做

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

,不幸的是,没有按位置列出的列表

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文