context
stringlengths 11
9.12k
| question
stringlengths 0
1.06k
| SQL
stringlengths 2
4.44k
| source
stringclasses 28
values |
|---|---|---|---|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
The song "Once Upon a Dream" is associated with the movie directed by whom?
|
SELECT T2.director FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.song = 'Once Upon a Dream'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the voice actor for the villain of the movie "Alice in Wonderland"?
|
SELECT T1.`voice-actor` FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title WHERE T1.character LIKE '%' OR T2.villian OR '%' AND T2.movie_title = 'Alice in Wonderland'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Please list the release dates of all the movies in which Alan Tudyk is a voice actor.
|
SELECT T2.release_date FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title WHERE T1.`voice-actor` = 'Alan Tudyk'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among the movies in which Alan Tudyk is a voice actor, how many of them were released after 2012?
|
SELECT COUNT(T2.movie) FROM characters AS T1 INNER JOIN `voice-actors` AS T2 ON T1.movie_title = T2.movie WHERE T2.`voice-actor` = 'Alan Tudyk' AND SUBSTR(release_date, INSTR(release_date, '-') + 5) > 12
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among the movies directed by Wolfgang Reitherman, how many of them are Comedies?
|
SELECT COUNT(T3.name) FROM ( SELECT T2.name FROM `movies_total_gross` AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Wolfgang Reitherman' AND T1.genre = 'Comedy' GROUP BY T2.name ) T3
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among the movies directed by Wolfgang Reitherman, which one of them was the most popular?
|
SELECT T2.movie_title FROM director AS T1 INNER JOIN movies_total_gross AS T2 ON T1.name = T2.movie_title WHERE T1.director = 'Wolfgang Reitherman' ORDER BY T2.total_gross DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Please list the movies directed by Wolfgang Reitherman that can be watched by the general audience.
|
SELECT T1.movie_title FROM `movies_total_gross` AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.MPAA_rating = 'G' AND T2.director = 'Wolfgang Reitherman'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which character is the villain of the most popular movie?
|
SELECT T2.villian FROM `movies_total_gross` AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title ORDER BY T1.total_gross DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is the genre of the movie whose villain is Commander Rourke?
|
SELECT T2.genre FROM characters AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.movie_title WHERE T1.villian = 'Commander Rourke'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the villain of the movie "Beauty and the Beast"?
|
SELECT villian FROM characters WHERE movie_title = 'Beauty and the Beast'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which movie is the character Robin Hood in?
|
SELECT movie_title FROM characters WHERE hero = 'Robin Hood'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Give the name of the movie which the song "I Thought I Lost You" is associated with.
|
SELECT movie_title FROM characters WHERE song = 'I Thought I Lost You'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the voice actor of the character "Binkie Muddlefoot"?
|
SELECT `voice-actor` FROM `voice-actors` WHERE character = 'Binkie Muddlefoot'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the hero character of the movie whose total gross was $222,527,828?
|
SELECT T1.hero FROM characters AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.movie_title WHERE T2.total_gross = '$222,527,828'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which song is associated with the most popular Disney movie in 1970s?
|
SELECT T2.song FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE CAST(SUBSTR(T1.release_date, INSTR(T1.release_date, ', ') + 1) AS int) BETWEEN 1970 AND 1979 ORDER BY CAST(REPLACE(SUBSTR(T1.total_gross, 2), ',', '') AS float) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the hero character of the Disney movie directed by Will Finn?
|
SELECT T1.hero FROM characters AS T1 INNER JOIN director AS T2 ON T2.name = T1.movie_title WHERE T2.director = 'Will Finn'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the voice actor of the hero character from the movie The Little Mermaid?
|
SELECT T2.`voice-actor` FROM characters AS T1 INNER JOIN `voice-actors` AS T2 ON T2.movie = T1.movie_title WHERE T1.movie_title = 'The Little Mermaid' AND T2.character = T1.hero
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Give the name of the director of the movie in which Verna Felton was the voice actor for its character "Aunt Sarah".
|
SELECT T1.director FROM director AS T1 INNER JOIN `voice-actors` AS T2 ON T2.movie = T1.name WHERE T2.character = 'Aunt Sarah' AND T2.`voice-actor` = 'Verna Felton'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
For the movie in which Tress MacNeille was the voice actor for its character "Hyacinth Hippo", what was the release date of that movie?
|
SELECT T1.release_date FROM characters AS T1 INNER JOIN `voice-actors` AS T2 ON T2.movie = T1.movie_title WHERE T2.character = 'Hyacinth Hippo' AND T2.`voice-actor` = 'Tress MacNeille'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the director of the adventure movie which was released on 2007/3/30?
|
SELECT T1.director FROM director AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.name WHERE T2.genre = 'Adventure' AND T2.release_date = 'Mar 30, 2007'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Wolfgang Reitherman has directed several Disney movies, which one has the highest grossing after accounting for inflation?
|
SELECT T1.movie_title FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Wolfgang Reitherman' ORDER BY CAST(REPLACE(SUBSTR(inflation_adjusted_gross, 2), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the hero character of the adventure movie which was released on 2016/3/4?
|
SELECT T1.hero FROM characters AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.movie_title WHERE T2.genre = 'Adventure' AND T1.release_date = '4-Mar-16'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
The character Donald Duck has appeared in two Disney movies, which one has more grossing?
|
SELECT T1.movie_title FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE T2.hero = 'Donald Duck' ORDER BY CAST(REPLACE(SUBSTR(total_gross, 2), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many movies did Wolfgang Reitherman direct?
|
SELECT COUNT(name) FROM director WHERE director = 'Wolfgang Reitherman'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the most productive director?
|
SELECT director FROM director GROUP BY director ORDER BY COUNT(name) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many restricted horror movies were released between 1/1/1990 to 12/31/2015?
|
SELECT COUNT(movie_title) FROM movies_total_gross WHERE MPAA_rating = 'R' AND genre = 'Horror' AND CAST(SUBSTR(release_date, INSTR(release_date, ', ') + 1) AS int) BETWEEN 1990 AND 2015
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What are the names of the characters voiced by Frank Welker?
|
SELECT character FROM `voice-actors` WHERE 'voice-actor' = 'Frank Welker'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How much is the total gross of the movie with a song titled "Little Wonders"?
|
SELECT T1.total_gross FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T2.movie_title = T1.movie_title WHERE T2.song = 'Little Wonders'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is the Motion Picture Association of America rating for the movie featuring a villain named Turbo?
|
SELECT T1.MPAA_rating FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T2.movie_title = T1.movie_title WHERE T2.villian = 'Turbo'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many movies for mature audiences or parental guidance suggested did Bill Thompson work as a voice actor?
|
SELECT COUNT(T.movie) FROM ( SELECT T1.movie FROM `voice-actors` AS T1 INNER JOIN movies_total_gross AS T2 ON T1.movie = T2.movie_title WHERE MPAA_rating = 'PG' AND `voice-actor` = 'Bill Thompson' GROUP BY T1.movie ) AS T
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many of Gary Trousdale's movies are adventure movies?
|
SELECT COUNT(T.name) FROM ( SELECT T1.name FROM director AS T1 INNER JOIN movies_total_gross AS T2 ON T1.name = T2.movie_title WHERE T1.director = 'Gary Trousdale' AND T2.genre = 'Adventure' GROUP BY T1.name ) T
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which director did Bill Thompson work the most with?
|
SELECT director FROM director AS T1 INNER JOIN `voice-actors` AS T2 ON T1.name = T2.movie WHERE T2.`voice-actor` = 'Bill Thompson' GROUP BY director ORDER BY COUNT(director) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is the most popular movie directed by Ron Clements?
|
SELECT T2.name FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T2.name = T1.movie_title WHERE T2.director = 'Ron Clements' ORDER BY CAST(REPLACE(SUBSTR(total_gross, 2), ',', '') AS int) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List all the voice actors in the movie directed by Ben Sharpsteen which was released on February 9, 1940.
|
SELECT T2.`voice-actor` FROM director AS T1 INNER JOIN `voice-actors` AS T2 INNER JOIN movies_total_gross AS T3 ON T1.name = T2.movie AND T2.movie = T3.movie_title WHERE T1.director = 'Ben Sharpsteen' AND T3.release_date = 'Feb 9, 1940' AND T2.`voice-actor` != 'None' GROUP BY T2.`voice-actor`
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many PG adventure movies did Ron Clements direct?
|
SELECT COUNT(*) FROM director AS T1 INNER JOIN movies_total_gross AS T2 ON T1.name = T2.movie_title WHERE T1.director = 'Ron Clements' AND T2.MPAA_rating = 'PG' AND T2.genre = 'Adventure'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many horror movies are there?
|
SELECT COUNT(movie_title) FROM `movies_total_gross` WHERE genre = 'Horror'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the villain in the movie "The Great Mouse Detective"?
|
SELECT villian FROM characters WHERE movie_title = 'The Great Mouse Detective'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the voice actors from the movie "Meet the Robinsons".
|
SELECT 'voice-actor' FROM `voice-actors` WHERE movie = 'Meet the Robinsons'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which director has made the most movies?
|
SELECT director, COUNT(name) FROM director GROUP BY director ORDER BY COUNT(name) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
From 2000 to 2010, in which year did the studio entertainment segment make the most revenue?
|
SELECT `Year` FROM revenue WHERE `Year` BETWEEN 2000 AND 2010 ORDER BY `Studio Entertainment[NI 1]` DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List all the songs associated with drama movies.
|
SELECT song FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE T1.genre = 'Drama' GROUP BY song
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who are the voice actors for all the heroes?
|
SELECT T2.`voice-actor` FROM characters AS T1 INNER JOIN `voice-actors` AS T2 ON T2.character = T1.hero WHERE T2.movie = T1.movie_title
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide a list of directors from the 1990s.
|
SELECT T2.director FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name AND CAST(SUBSTR(release_date, INSTR(release_date, ', ') + 1) AS int) BETWEEN 1990 AND 2000 GROUP BY T2.director
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who voiced the villain in "The Rescuers"?
|
SELECT T1.`voice-actor` FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T2.movie_title = T1.movie WHERE T2.movie_title = 'The Rescuers' AND T1.character = T2.villian
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List all of Wolfgang Reitherman's movies and their voice actors.
|
SELECT T1.name, T2.`voice-actor` FROM director AS T1 INNER JOIN `voice-actors` AS T2 ON T1.name = T2.movie WHERE T1.director = 'Wolfgang Reitherman'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What are the characters in the PG movies?
|
SELECT DISTINCT T2.character FROM movies_total_gross AS T1 INNER JOIN `voice-actors` AS T2 ON T1.movie_title = T2.movie WHERE T1.MPAA_rating = 'PG'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is the highest grossing movie without a song?
|
SELECT T1.movie_title FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T2.movie_title = T1.movie_title WHERE T2.song IS NULL ORDER BY CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who directed the movie with the most voice actors?
|
SELECT T2.director, COUNT(DISTINCT T1.`voice-actor`) FROM `voice-actors` AS T1 INNER JOIN director AS T2 ON T1.movie = T2.name GROUP BY T2.director ORDER BY COUNT(DISTINCT T1.`voice-actor`) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who are the voice actors in the movie that came out on 11/24/2010?
|
SELECT T2.`voice-actor` FROM movies_total_gross AS T1 INNER JOIN `voice-actors` AS T2 ON T1.movie_title = T2.movie WHERE T1.release_date = 'Nov 24, 2010'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the directors of movies that feature a song.
|
SELECT T2.director FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.song IS NOT NULL GROUP BY T2.director
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What are the total grosses for the movies with Jim Cummings as the voice actor?
|
SELECT T2.movie_title FROM `voice-actors` AS T1 INNER JOIN movies_total_gross AS T2 ON T2.movie_title = T1.movie WHERE T1.`voice-actor` = 'Jim Cummings' ORDER BY CAST(REPLACE(trim(T2.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which of the movies directed by Ron Clements has the highest total gross?
|
SELECT T2.movie_title FROM director AS T1 INNER JOIN movies_total_gross AS T2 ON T1.name = T2.movie_title WHERE T1.director = 'Ron Clements' ORDER BY CAST(REPLACE(trim(T2.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is the average total gross for the movies featuring Sterling Holloway?
|
SELECT SUM(CAST(REPLACE(trim(T2.total_gross, '$'), ',', '') AS REAL)) / COUNT(T2.movie_title) FROM `voice-actors` AS T1 INNER JOIN movies_total_gross AS T2 ON T1.movie = T2.movie_title WHERE T1.`voice-actor` = 'Sterling Holloway'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What proportion of the total gross of all movies is from movies with songs?
|
SELECT CAST(COUNT(CASE WHEN T1.song IS NOT NULL THEN T2.movie_title ELSE NULL END) AS REAL) * 100 / COUNT(T2.movie_title) FROM characters AS T1 INNER JOIN movies_total_gross AS T2 ON T1.movie_title = T2.movie_title
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the movies and genres released in 2016.
|
SELECT movie_title, genre FROM movies_total_gross WHERE SUBSTR(release_date, LENGTH(release_date) - 3, LENGTH(release_date)) = '2016'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the villain in Little Mermaid?
|
SELECT villian FROM characters WHERE movie_title = 'Little Mermaid'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the movie titles directed by Jack Kinney.
|
SELECT name FROM director WHERE director = 'Jack Kinney'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the movie titles and the estimated inflation rate of the highest total grossed movie.
|
SELECT movie_title, CAST(REPLACE(trim(inflation_adjusted_gross, '$'), ',', '') AS REAL) / CAST(REPLACE(trim(total_gross, '$'), ',', '') AS REAL) FROM movies_total_gross ORDER BY CAST(REPLACE(trim(total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the PG-13 romantic comedy movie titles and their release dates.
|
SELECT movie_title, release_date FROM movies_total_gross WHERE MPAA_rating = 'PG-13' AND genre = 'Romantic Comedy'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the movie titles and character names by Bill Thompson.
|
SELECT movie, character FROM `voice-actors` WHERE 'voice-actor' = 'Bill Thompson'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the movie titles and associated songs directed by Ron Clements.
|
SELECT T1.movie_title, T1.song FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Ron Clements'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the titles, main characters, and associated songs of the movies directed by Wolfgang Reitherman in 1977.
|
SELECT T1.movie_title, T2.hero, T2.song FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title INNER JOIN director AS T3 ON T1.movie_title = T3.name WHERE T3.director = 'Wolfgang Reitherman' AND SUBSTR(T1.release_date, LENGTH(T1.release_date) - 3, LENGTH(T1.release_date)) = '1977'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which movies had the main character named Donald Duck and who directed them?
|
SELECT T1.movie_title, T2.director FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.hero = 'Donald Duck'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Describe the hero, director, and the release date of Mulan.
|
SELECT T1.hero, T2.director, T1.release_date FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.movie_title = 'Mulan'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the title, total gross, and MPAA rating of the movie which has a hero named Elsa.
|
SELECT T1.movie_title, T1.total_gross, T1.MPAA_rating FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title INNER JOIN director AS T3 ON T3.name = T1.movie_title WHERE T2.hero = 'Elsa'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the title, director, and release date of the movie voice-acted by Freddie Jones.
|
SELECT T1.movie, T3.director, T2.release_date FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title INNER JOIN director AS T3 ON T3.name = T2.movie_title WHERE T1.`voice-actor` = 'Freddie Jones'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among Frank Welker's voice-acted movies, list the movie titles and the total gross when the estimated inflation rate was less than 2.
|
SELECT T1.movie_title, T1.total_gross FROM movies_total_gross AS T1 INNER JOIN `voice-actors` AS T2 ON T1.movie_title = T2.movie WHERE T2.`voice-actor` = 'Frank Welker' AND CAST(REPLACE(trim(T1.inflation_adjusted_gross, '$'), ',', '') AS REAL) * 1.0 / CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) * 1.0 < 2
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who directed the most popular movie?
|
SELECT T2.director FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name ORDER BY CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Describe the voice actors and villains in Cinderella.
|
SELECT T1.`voice-actor`, T2.villian FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title WHERE T2.movie_title = 'Cinderella'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who is the voice actor of the hero in Lion King?
|
SELECT T1.`voice-actor` FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title WHERE T2.movie_title = 'Lion King' AND T1.character = 'Lion King'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the directors and MPAA ratings of the musical movies released in 1993.
|
SELECT T2.director, T1.MPAA_rating FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T1.genre = 'Musical' AND SUBSTR(T1.release_date, LENGTH(T1.release_date) - 3, LENGTH(T1.release_date)) = '1993'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among the movies released from 1991 to 2000, calculate the percentage of comedy movies. Provide any five movie titles and directors.
|
SELECT CAST(COUNT(CASE WHEN T1.genre = 'Comedy' THEN T1.movie_title ELSE NULL END) AS REAL) * 100 / COUNT(T1.movie_title), group_concat(T1.movie_title), group_concat(T2.director) FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE SUBSTR(T1.release_date, LENGTH(T1.release_date) - 3, LENGTH(T1.release_date)) BETWEEN '1991' AND '2000'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Among the movies released from 2001 to 2005, list down the titles and directors of the movies which had a total gross of more than 100% above the average.
|
SELECT T2.name, T2.director FROM movies_total_gross AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE SUBSTR(T1.release_date, LENGTH(T1.release_date) - 3, LENGTH(T1.release_date)) BETWEEN '2001' AND '2005' AND CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) / ( SELECT SUM(CAST(REPLACE(trim(T3.total_gross, '$'), ',', '') AS REAL)) / COUNT(T3.movie_title) AS avg_gross FROM movies_total_gross AS T3 INNER JOIN director AS T4 ON T3.movie_title = T4.name WHERE SUBSTR(T3.release_date, LENGTH(T3.release_date) - 3, LENGTH(T3.release_date)) BETWEEN '2001' AND '2005' ) - 1 > 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Name the voice actor of the character Calliope in the movie Hercules.
|
SELECT `voice-actor` FROM `voice-actors` WHERE movie = 'Hercules' AND character = 'Calliope'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many voice actors for the movie Aladdin?
|
SELECT COUNT('voice-actor') FROM `voice-actors` WHERE movie = 'Aladdin'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the movie titles with the voice actor Jeff Bennet
|
SELECT movie FROM `voice-actors` WHERE 'voice-actor' = 'Jeff Bennett'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the director's name of Wreck-It Ralph movie.
|
SELECT director FROM director WHERE name = 'Wreck-It Ralph'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What movies did director Jack Kinney direct?
|
SELECT name FROM director WHERE director = 'Jack Kinney'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many movies were released between 1937 and 1950?
|
SELECT COUNT(movie_title) FROM characters WHERE SUBSTR(release_date, LENGTH(release_date) - 1, LENGTH(release_date)) BETWEEN '37' AND '50'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the name of the song from the movie directed by Ben Sharpsteen.
|
SELECT T1.song FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Ben Sharpsteen'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Indicate the release date of the film The Lion King directed by Roger Allers.
|
SELECT T1.release_date FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Roger Allers' AND T1.movie_title = 'The Lion King'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Name the villain of the movie with Scott Weinger and Brad Kane as voice actors.
|
SELECT T1.villian FROM characters AS T1 INNER JOIN `voice-actors` AS T2 ON T1.movie_title = T2.movie WHERE T2.`voice-actor` = 'Scott Weinger Brad Kane'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which movies of director Wolfgang Reitherman do not have villain?
|
SELECT T1.movie_title FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Wolfgang Reitherman' AND T1.villian IS NULL
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the titles of movies directed by Jack Kinney that were released before 1947.
|
SELECT T1.movie_title FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name WHERE T2.director = 'Jack Kinney' AND SUBSTR(T1.release_date, LENGTH(T1.release_date) - 1, LENGTH(T1.release_date)) < '47'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List the names of the directors whose films grossed over $100 million.
|
SELECT DISTINCT T2.director FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name INNER JOIN movies_total_gross AS T3 ON T1.movie_title = T3.movie_title WHERE CAST(REPLACE(trim(T3.total_gross, '$'), ',', '') AS REAL) > 100000000
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which movie's song title has the highest total gross?
|
SELECT T2.song FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title ORDER BY CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which director had the most popular film from 1937 to 1990?
|
SELECT T2.director FROM characters AS T1 INNER JOIN director AS T2 ON T1.movie_title = T2.name INNER JOIN movies_total_gross AS T3 ON T3.movie_title = T1.movie_title WHERE SUBSTR(T3.release_date, LENGTH(T3.release_date) - 3, LENGTH(T3.release_date)) BETWEEN '1937' AND '1990' ORDER BY CAST(REPLACE(trim(T3.total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
List all the main characters of the movie that are comedy genre.
|
SELECT T2.hero FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE T1.genre = 'Comedy'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Provide the names of voice actors for the characters of films directed by Wolfgang Reitherman.
|
SELECT T2.hero, T1.`voice-actor` FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title INNER JOIN director AS T3 ON T3.name = T2.movie_title WHERE T3.director = 'Wolfgang Reitherman'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What genre of movie has Taran as the main character?
|
SELECT T1.genre FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE T2.hero = 'Taran'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
The main character Elsa is voiced by which actor and who is the director of the movie?
|
SELECT T1.`voice-actor`, T3.director FROM `voice-actors` AS T1 INNER JOIN characters AS T2 ON T1.movie = T2.movie_title INNER JOIN director AS T3 ON T2.movie_title = T3.name WHERE T2.hero = 'Elsa'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Calculate the percentage of directors whose films grossed over $100 million.
|
SELECT CAST(COUNT(DISTINCT CASE WHEN CAST(REPLACE(trim(T1.total_gross, '$'), ',', '') AS REAL) > 100000000 THEN T3.director ELSE NULL END) AS REAL) * 100 / COUNT(DISTINCT T3.director) FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title INNER JOIN director AS T3 ON T1.movie_title = T3.name
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Calculate the percentage of voice actors whose main character in the movie is in the Drama genre.
|
SELECT CAST(COUNT(CASE WHEN T1.genre = 'Drama' THEN T3.`voice-actor` ELSE NULL END) AS REAL) * 100 / COUNT(T3.`voice-actor`) FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title INNER JOIN `voice-actors` AS T3 ON T3.movie = T1.movie_title
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Name the first movie released by Disney.
|
SELECT movie_title FROM characters ORDER BY SUBSTR(release_date, LENGTH(release_date) - 1, LENGTH(release_date)) ASC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
How many movies were released by Disney between 2010 and 2016?
|
SELECT COUNT(movie_title) FROM characters WHERE SUBSTR(release_date, LENGTH(release_date) - 1, LENGTH(release_date)) BETWEEN '10' AND '16'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Who was the first ever Disney villain?
|
SELECT villian FROM characters ORDER BY SUBSTR(release_date, LENGTH(release_date) - 1, LENGTH(release_date)) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
What is Disney's highest grossing action movie?
|
SELECT movie_title FROM movies_total_gross WHERE genre = 'Action' ORDER BY CAST(REPLACE(trim(total_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Which actor voices Akela from The Jungle Book?
|
SELECT `voice-actor` FROM `voice-actors` WHERE character = 'Akela'
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Determine Disney's total box office gross between 2010 and 2016.
|
SELECT SUM(Total) FROM revenue WHERE `Year` BETWEEN 2010 AND 2016
|
bird
|
CREATE TABLE disney (movie_title text, release_date text, hero text, villian text, song text, name text, director text, movie_title text, release_date text, genre text, MPAA_rating text, total_gross text, inflation_adjusted_gross text, Year integer, Studio Entertainment[NI 1] real, Disney Consumer Products[NI 2] real, Disney Interactive[NI 3][Rev 1] integer, Walt Disney Parks and Resorts real, Disney Media Networks text, Total integer, character text, voice-actor text, movie text)
|
Name the main character of Disney's most popular adventure movie based on its inflation-adjusted gross.
|
SELECT T2.hero FROM movies_total_gross AS T1 INNER JOIN characters AS T2 ON T1.movie_title = T2.movie_title WHERE T1.genre = 'Adventure' ORDER BY CAST(REPLACE(trim(T1.inflation_adjusted_gross, '$'), ',', '') AS REAL) DESC LIMIT 1
|
bird
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.