CS50_Labs/Lab7/movies/8.sql

3 lines
133 B
MySQL
Raw Normal View History

2024-08-09 17:43:54 +00:00
select name from people
join stars on people.id = stars.person_id
where movie_id = (select id from movies where title = "Toy Story");