sqlzoo List the film title and the leading actor for all of the films 'Julie Andrews' played in.
时间: 2024-09-10 17:10:31 浏览: 100
An Open Source Implementation of the Actor Model in C++.zip
SQLZoo 是一个在线学习 SQL 的平台,你可以通过编写 SQL 查询来获取电影标题(film_title)和她(Julie Andrews)作为主角的电影的男主角名字(leading_actor)。这个问题假设数据库中有足够的信息存储了演员、电影以及他们各自的角色。
查询示例(假设有一个名为 `movies` 的表,其中包含 `title`, `lead_actor` 和 `actor_name` 列):
```sql
SELECT movies.title AS film_title, movies.lead_actor AS leading_actor
FROM movies
JOIN roles ON movies.id = roles.movie_id
WHERE roles.actor_name = 'Julie Andrews';
```
这条查询将 `movies` 表与 `roles` 表关联起来,查找 `actor_name` 为 'Julie Andrews' 的记录,并返回对应的电影标题和男主角(通常电影中主角的演员会出现在 lead_actor 列)。
阅读全文