Final answer:
The SQL query to select the names of movies that won the 'BEST-PICTURE' Oscar depends on your database schema but typically looks like: SELECT movie_name FROM Oscars WHERE category = 'BEST-PICTURE';. Replace 'Oscars' and 'movie_name' with your actual table and column names.
Step-by-step explanation:
The SQL query to select the name of the movies that won the 'BEST-PICTURE' Oscar depends on the structure of the database. However, assuming you have a table named Oscars that includes columns for the movie name (movie_name) and the award category (category), the query could be similar to the following:SELECT movie_name FROM Oscars WHERE category = 'BEST-PICTURE';
This query selects the movie names from the table where the category is equal to 'BEST-PICTURE'. It's important to note that the exact field names and table name shoExplanation:select the name of the movies that won the 'BEST-PICTURE' Oscar, we need to use the SQL SELECT statement. Assuming the movie names are stored in a column called 'name' and the table name is 'movies', the query would be: name FROM movies WHERE category = 'BEST-PICTURE';This query will retrieve the names of all the movies that won the 'BEST-PICTURE' Oscar.uld be replaced with the actual ones used in your specific database schema.