Final answer:
The SQL query to select the name of the movies in which Marlon Brando has acted.
Step-by-step explanation:
To select the name of the movies in which Marlon Brando has acted, you would use an SQL query with two tables: a table for movies and a table for actors.
Assuming the actor's name is stored in the 'name' column of the actors table and the movies are stored in the 'movie_name' column of the movies table, the query would be:
SELECT movie_name FROM movies JOIN actors ON movies.actor_id = actors.id WHERE actors.name = 'Marlon Brando';
This query joins the movies table with the actors table on the actor_id column and then filters the result to only include movies where the actor's name is 'Marlon Brando'.
The SQL query to select the name of the movies in which Marlon Brando has acted.