question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
what category is for tom shankland, director?
CREATE TABLE table_name_56 (category VARCHAR, director_s_ VARCHAR)
{ "SQL_Query": "SELECT category FROM table_name_56 WHERE director_s_ = \"tom shankland\"" }
How many transfer fees did Afonso Alves have after 2008?
CREATE TABLE table_name_13 (transfer_fee___ VARCHAR, player VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT COUNT(transfer_fee___) AS €_million_ FROM table_name_13 WHERE player = \"afonso alves\" AND year > 2008" }
Where was the film about the garden of the finzi-continis made?
CREATE TABLE table_name_30 (country VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT country FROM table_name_30 WHERE film_title_used_in_nomination = \"the garden of the finzi-continis\"" }
Which film was translated from portuguese?
CREATE TABLE table_name_44 (original_name VARCHAR, language VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_name_44 WHERE language = \"portuguese\"" }
Which film originated in France?
CREATE TABLE table_name_27 (original_name VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_name_27 WHERE country = \"france\"" }
What is the real name of the movie about love?
CREATE TABLE table_name_26 (original_name VARCHAR, film_title_used_in_nomination VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_name_26 WHERE film_title_used_in_nomination = \"love\"" }
What is the real name of the movie directed by gert fredholm?
CREATE TABLE table_name_22 (original_name VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT original_name FROM table_name_22 WHERE director = \"gert fredholm\"" }
Which movie originated in Bulgaria?
CREATE TABLE table_name_9 (film_title_used_in_nomination VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT film_title_used_in_nomination FROM table_name_9 WHERE country = \"bulgaria\"" }
Who was the opponent at the game that had a loss of Stieb (5-7)?
CREATE TABLE table_name_64 (opponent VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_64 WHERE loss = \"stieb (5-7)\"" }
What was the loss of the game against the Angels with a 26-30 record?
CREATE TABLE table_name_9 (loss VARCHAR, opponent VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_9 WHERE opponent = \"angels\" AND record = \"26-30\"" }
What is the most points earlier than 1953 with a Ferrari 375/50 chassis?
CREATE TABLE table_name_22 (points INTEGER, year VARCHAR, chassis VARCHAR)
{ "SQL_Query": "SELECT MAX(points) FROM table_name_22 WHERE year < 1953 AND chassis = \"ferrari 375/50\"" }
What is the latest year with more than 0 points?
CREATE TABLE table_name_13 (year INTEGER, points INTEGER)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_13 WHERE points > 0" }
What year were there less than 1.5 points and an Entrant of escuderia bandeirantes, and a maserati straight-4 engine?
CREATE TABLE table_name_90 (year VARCHAR, engine VARCHAR, points VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_90 WHERE points < 1.5 AND entrant = \"escuderia bandeirantes\" AND engine = \"maserati straight-4\"" }
What is the number of points for the Entrant of escuderia bandeirantes earlier than 1952?
CREATE TABLE table_name_65 (points INTEGER, entrant VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_65 WHERE entrant = \"escuderia bandeirantes\" AND year < 1952" }
What was the double's performance data from the Canada Masters tournament in 2008?
CREATE TABLE table_name_5 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2008 FROM table_name_5 WHERE tournament = \"canada masters\"" }
What was the double's performance data from the Monte Carlo Masters tournament in 2007?
CREATE TABLE table_name_54 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2007 FROM table_name_54 WHERE tournament = \"monte carlo masters\"" }
What is the lowest 2004 population when there were 5158 households?
CREATE TABLE table_name_8 (population__2004_ INTEGER, households VARCHAR)
{ "SQL_Query": "SELECT MIN(population__2004_) FROM table_name_8 WHERE households = 5158" }
What is the number for the Moroccan population when the name is Sebt Saiss and the 2004 population is more than 11212?
CREATE TABLE table_name_30 (moroccan_population VARCHAR, name VARCHAR, population__2004_ VARCHAR)
{ "SQL_Query": "SELECT COUNT(moroccan_population) FROM table_name_30 WHERE name = \"sebt saiss\" AND population__2004_ > 11212" }
What is the largest foreign population when the 2004 population is 7641?
CREATE TABLE table_name_83 (foreign_population INTEGER, population__2004_ VARCHAR)
{ "SQL_Query": "SELECT MAX(foreign_population) FROM table_name_83 WHERE population__2004_ = 7641" }
What is the highest year that has no more than 0 points?
CREATE TABLE table_name_85 (year INTEGER, points INTEGER)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_85 WHERE points < 0" }
Which of the chassis had a total of 7 points?
CREATE TABLE table_name_60 (chassis VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_60 WHERE points = 7" }
What was the latest year that a Bardahl entrant had a Kurtis Kraft 500c chassis with no more than 0 points?
CREATE TABLE table_name_35 (year INTEGER, points VARCHAR, chassis VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT MAX(year) FROM table_name_35 WHERE chassis = \"kurtis kraft 500c\" AND entrant = \"bardahl\" AND points < 0" }
What was the average points for Hopkins before 1956?
CREATE TABLE table_name_75 (points INTEGER, entrant VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_75 WHERE entrant = \"hopkins\" AND year < 1956" }
What is the least amount of points the entrant Simoniz received before 1960?
CREATE TABLE table_name_19 (points INTEGER, year VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_19 WHERE year < 1960 AND entrant = \"simoniz\"" }
What was the original title of the film directed by Lene Grønlykke and Sven Grønlykke?
CREATE TABLE table_name_72 (original_title VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT original_title FROM table_name_72 WHERE director = \"lene grønlykke and sven grønlykke\"" }
What is the language of the film directed by Federico Fellini?
CREATE TABLE table_name_27 (language VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT language FROM table_name_27 WHERE director = \"federico fellini\"" }
What is the film title used in nomination for the film from South Korea?
CREATE TABLE table_name_26 (film_title_used_in_nomination VARCHAR, country VARCHAR)
{ "SQL_Query": "SELECT film_title_used_in_nomination FROM table_name_26 WHERE country = \"south korea\"" }
What was the film title used in nomination for the film directed by Gheorghe Vitanidis?
CREATE TABLE table_name_89 (film_title_used_in_nomination VARCHAR, director VARCHAR)
{ "SQL_Query": "SELECT film_title_used_in_nomination FROM table_name_89 WHERE director = \"gheorghe vitanidis\"" }
When did the film 'Monsters' come out?
CREATE TABLE table_name_96 (date VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_96 WHERE film = \"monsters\"" }
What movie won with a date of 12/11/03
CREATE TABLE table_name_78 (recipient VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT recipient FROM table_name_78 WHERE date = \"12/11/03\"" }
Who was the producer for the film 'Strange Little Girls'?
CREATE TABLE table_name_20 (producer_s_ VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT producer_s_ FROM table_name_20 WHERE film = \"strange little girls\"" }
Which writer worked for Intrepido LTD for a film on 17/03/04?
CREATE TABLE table_name_35 (writer_s_ VARCHAR, recipient VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT writer_s_ FROM table_name_35 WHERE recipient = \"intrepido ltd\" AND date = \"17/03/04\"" }
Which producer worked for Animus Films LTD?
CREATE TABLE table_name_42 (producer_s_ VARCHAR, recipient VARCHAR)
{ "SQL_Query": "SELECT producer_s_ FROM table_name_42 WHERE recipient = \"animus films ltd\"" }
How many people attended the game against the Mariners with a score of 9-6?
CREATE TABLE table_name_94 (attendance VARCHAR, opponent VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT COUNT(attendance) FROM table_name_94 WHERE opponent = \"mariners\" AND score = \"9-6\"" }
What is the loss for the record of 42-36?
CREATE TABLE table_name_82 (loss VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_82 WHERE record = \"42-36\"" }
What date was the score 5-2 with a loss of sele (3-2)?
CREATE TABLE table_name_17 (date VARCHAR, score VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_17 WHERE score = \"5-2\" AND loss = \"sele (3-2)\"" }
What is the loss when the record is 38-33?
CREATE TABLE table_name_67 (loss VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_67 WHERE record = \"38-33\"" }
What was the pick number of Conor Jackson?
CREATE TABLE table_name_72 (pick INTEGER, player VARCHAR)
{ "SQL_Query": "SELECT AVG(pick) FROM table_name_72 WHERE player = \"conor jackson\"" }
What school had the draft pick of 29?
CREATE TABLE table_name_36 (school VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT school FROM table_name_36 WHERE pick = 29" }
What school did Conor Jackson attend?
CREATE TABLE table_name_75 (school VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school FROM table_name_75 WHERE player = \"conor jackson\"" }
What is the value for 2007 when 2008 is Q1?
CREATE TABLE table_name_68 (Id VARCHAR)
{ "SQL_Query": "SELECT 2007 FROM table_name_68 WHERE 2008 = \"q1\"" }
What is the win-loss when 2008 has a value of Q1 at Australian Open?
CREATE TABLE table_name_65 (career_win_loss VARCHAR, tournament VARCHAR)
{ "SQL_Query": "SELECT career_win_loss FROM table_name_65 WHERE 2008 = \"q1\" AND tournament = \"australian open\"" }
What is the value in 2009 at the French Open?
CREATE TABLE table_name_86 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2009 FROM table_name_86 WHERE tournament = \"french open\"" }
What is the value in 2008 for the US Open?
CREATE TABLE table_name_31 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2008 FROM table_name_31 WHERE tournament = \"us open\"" }
What is the value in 2009 when 1R is in 2007?
CREATE TABLE table_name_19 (Id VARCHAR)
{ "SQL_Query": "SELECT 2009 FROM table_name_19 WHERE 2007 = \"1r\"" }
What is the record of the game on May 6?
CREATE TABLE table_name_4 (record VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_4 WHERE date = \"may 6\"" }
what is the tournament when in 2012 the performance was 2r?
CREATE TABLE table_name_38 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_38 WHERE 2012 = \"2r\"" }
what is the tournament with the performance in 2010 and 2011 is 1r?
CREATE TABLE table_name_12 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_12 WHERE 2010 = \"1r\" AND 2011 = \"1r\"" }
what is the 2012 performance when in 2011 is qf and 2010 is 3r?
CREATE TABLE table_name_28 (Id VARCHAR)
{ "SQL_Query": "SELECT 2012 FROM table_name_28 WHERE 2011 = \"qf\" AND 2010 = \"3r\"" }
what is the tournament when 2011 is qf and 2012 is sf?
CREATE TABLE table_name_42 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_42 WHERE 2011 = \"qf\" AND 2012 = \"sf\"" }
what is the tournament when the performance in 2012 is 3r and 2011 is qf?
CREATE TABLE table_name_77 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_77 WHERE 2012 = \"3r\" AND 2011 = \"qf\"" }
what is the 2011 performance for the US open?
CREATE TABLE table_name_2 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2011 FROM table_name_2 WHERE tournament = \"us open\"" }
What is the year when Spirit Tom's Racing had more than 3 points?
CREATE TABLE table_name_70 (year INTEGER, entrant VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT SUM(year) FROM table_name_70 WHERE entrant = \"spirit tom's racing\" AND points > 3" }
Name the average week for attendance of 75,111
CREATE TABLE table_name_17 (week INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT AVG(week) FROM table_name_17 WHERE attendance = 75 OFFSET 111" }
Name the sum of week with attendance of 62,233
CREATE TABLE table_name_49 (week INTEGER, attendance VARCHAR)
{ "SQL_Query": "SELECT SUM(week) FROM table_name_49 WHERE attendance = 62 OFFSET 233" }
Who had the smallest points in 3rd place but had a position greater than 8?
CREATE TABLE table_name_9 (points INTEGER, place VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_9 WHERE place = \"3rd\" AND position > 8" }
What was the place with 90 point total but a position less than 5?
CREATE TABLE table_name_12 (place VARCHAR, position VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT place FROM table_name_12 WHERE position < 5 AND points = 90" }
What's the name of the song by afro-dite that had a points total greater than 100?
CREATE TABLE table_name_31 (song VARCHAR, points VARCHAR, artist VARCHAR)
{ "SQL_Query": "SELECT song FROM table_name_31 WHERE points > 100 AND artist = \"afro-dite\"" }
how much money was requested on the show which aired on 4 september 2011?
CREATE TABLE table_name_87 (money_requested__ INTEGER, first_aired VARCHAR)
{ "SQL_Query": "SELECT SUM(money_requested__) AS £_ FROM table_name_87 WHERE first_aired = \"4 september 2011\"" }
what investing dragons aired on episode 10?
CREATE TABLE table_name_31 (investing_dragon_s_ VARCHAR, episode VARCHAR)
{ "SQL_Query": "SELECT investing_dragon_s_ FROM table_name_31 WHERE episode = \"episode 10\"" }
For the Entrant of Sasol Jordan, add up all the points with a Year larger than 1993.
CREATE TABLE table_name_53 (points INTEGER, year VARCHAR, entrant VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_53 WHERE year > 1993 AND entrant = \"sasol jordan\"" }
Give the most points that features jordan 194 in the Chassis column.
CREATE TABLE table_name_64 (points INTEGER, chassis VARCHAR)
{ "SQL_Query": "SELECT MAX(points) FROM table_name_64 WHERE chassis = \"jordan 194\"" }
What car was awarded sub 1 litre in 2000?
CREATE TABLE table_name_18 (category VARCHAR)
{ "SQL_Query": "SELECT 2000 FROM table_name_18 WHERE category = \"sub 1 litre\"" }
What car was awarded sub 1 litre in 2000 (won by toyota 1sz-fe 1.0l yaris in 1999)?
CREATE TABLE table_name_35 (category VARCHAR)
{ "SQL_Query": "SELECT 2000 FROM table_name_35 WHERE 1999 = \"toyota 1sz-fe 1.0l yaris\" AND category = \"sub 1 litre\"" }
Which car won the same award in 2001 that the toyota 1nz-fxe hybrid prius won in 1999?
CREATE TABLE table_name_76 (Id VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_76 WHERE 1999 = \"toyota 1nz-fxe hybrid prius\"" }
Which car won the same award in 2000 that the ferrari f133 5.5l v12 456 / 550 won in 2001?
CREATE TABLE table_name_13 (Id VARCHAR)
{ "SQL_Query": "SELECT 2000 FROM table_name_13 WHERE 2001 = \"ferrari f133 5.5l v12 456 / 550\"" }
Which car won the same award in 2001 that the bmw m67d39 3.9l v8 e38 740d won in 1999?
CREATE TABLE table_name_26 (Id VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_26 WHERE 1999 = \"bmw m67d39 3.9l v8 e38 740d\"" }
Which car won the 1.4litre to 1.8litre award in 2001?
CREATE TABLE table_name_17 (category VARCHAR)
{ "SQL_Query": "SELECT 2001 FROM table_name_17 WHERE category = \"1.4litre to 1.8litre\"" }
What is the surface of the mountain range that contains the Elk Garden Mountain?
CREATE TABLE table_name_38 (surface VARCHAR, mountain VARCHAR)
{ "SQL_Query": "SELECT surface FROM table_name_38 WHERE mountain = \"elk garden\"" }
What is the 2012 value at the Grand Slam Tournaments?
CREATE TABLE table_name_70 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2012 FROM table_name_70 WHERE tournament = \"grand slam tournaments\"" }
What is the tournament with A in 2011?
CREATE TABLE table_name_77 (tournament VARCHAR)
{ "SQL_Query": "SELECT tournament FROM table_name_77 WHERE 2011 = \"a\"" }
What is the 2010 value with A in 2009 and A in 2008 in the Australian Open?
CREATE TABLE table_name_43 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2010 FROM table_name_43 WHERE 2009 = \"a\" AND 2008 = \"a\" AND tournament = \"australian open\"" }
What is the 2012 value with A in 2010 at the Tournament of Wimbledon?
CREATE TABLE table_name_13 (tournament VARCHAR)
{ "SQL_Query": "SELECT 2012 FROM table_name_13 WHERE 2010 = \"a\" AND tournament = \"wimbledon\"" }
What is the 2009 value with q1 in 2010?
CREATE TABLE table_name_60 (Id VARCHAR)
{ "SQL_Query": "SELECT 2009 FROM table_name_60 WHERE 2010 = \"q1\"" }
What was the record of the game that went 0-7?
CREATE TABLE table_name_20 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_20 WHERE score = \"0-7\"" }
What day did the Diamondbacks go 2-7?
CREATE TABLE table_name_92 (date VARCHAR, opponent VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_92 WHERE opponent = \"diamondbacks\" AND score = \"2-7\"" }
What was the record of the game that went 3-5?
CREATE TABLE table_name_88 (record VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_88 WHERE score = \"3-5\"" }
Type of stratovolcano, and a Name of goat rocks, and a Elevation (m) larger than 2,494 has what highest elevation in feet?
CREATE TABLE table_name_40 (elevation__ft_ INTEGER, elevation__m_ VARCHAR, type VARCHAR, name VARCHAR)
{ "SQL_Query": "SELECT MAX(elevation__ft_) FROM table_name_40 WHERE type = \"stratovolcano\" AND name = \"goat rocks\" AND elevation__m_ > 2 OFFSET 494" }
What is the lowest points of British Racing after 1963?
CREATE TABLE table_name_90 (points INTEGER, year INTEGER)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_90 WHERE year > 1963" }
Which chassis was used when over 6 points were earned?
CREATE TABLE table_name_47 (chassis VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT chassis FROM table_name_47 WHERE points = 6" }
What is the average points of the drivers before 1964?
CREATE TABLE table_name_73 (points INTEGER, year INTEGER)
{ "SQL_Query": "SELECT AVG(points) FROM table_name_73 WHERE year < 1964" }
In what time period were 578 built?
CREATE TABLE table_name_93 (period VARCHAR, built VARCHAR)
{ "SQL_Query": "SELECT period FROM table_name_93 WHERE built = \"578\"" }
In what time period was the Cessna 208 built?
CREATE TABLE table_name_2 (period VARCHAR, model VARCHAR)
{ "SQL_Query": "SELECT period FROM table_name_2 WHERE model = \"cessna 208\"" }
In what time period were 354 built?
CREATE TABLE table_name_13 (period VARCHAR, built VARCHAR)
{ "SQL_Query": "SELECT period FROM table_name_13 WHERE built = \"354\"" }
How many silver metals are possessed by countries with 2 gold medals?
CREATE TABLE table_name_97 (silver VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT COUNT(silver) FROM table_name_97 WHERE gold = 2" }
What is the total sum of silver metals for all countries with more than 2 Bronze medals?
CREATE TABLE table_name_76 (silver INTEGER, total VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT SUM(silver) FROM table_name_76 WHERE total > 2 AND bronze > 2" }
What is the lowest number of bronze medals for a country with less than 1 gold and 0 silver?
CREATE TABLE table_name_70 (bronze INTEGER, gold VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT MIN(bronze) FROM table_name_70 WHERE gold = 1 AND silver < 0" }
What was the score of the game for April 16?
CREATE TABLE table_name_62 (loss VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT loss FROM table_name_62 WHERE date = \"april 16\"" }
What year was the No. 7 charts?
CREATE TABLE table_name_32 (year INTEGER, charts VARCHAR)
{ "SQL_Query": "SELECT AVG(year) FROM table_name_32 WHERE charts = \"no. 7\"" }
Name the date for game site of riverfront stadium
CREATE TABLE table_name_31 (date VARCHAR, game_site VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_31 WHERE game_site = \"riverfront stadium\"" }
Name the record with attendance of 73,996
CREATE TABLE table_name_67 (record VARCHAR, attendance VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_67 WHERE attendance = \"73,996\"" }
Name the game site with result of w 20-14
CREATE TABLE table_name_88 (game_site VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT game_site FROM table_name_88 WHERE result = \"w 20-14\"" }
Name the result with week of 16
CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_72 WHERE week = \"16\"" }
Name the record with result of w 13-11
CREATE TABLE table_name_51 (record VARCHAR, result VARCHAR)
{ "SQL_Query": "SELECT record FROM table_name_51 WHERE result = \"w 13-11\"" }
Name the result for opponent of chicago bears
CREATE TABLE table_name_14 (result VARCHAR, opponent VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_14 WHERE opponent = \"chicago bears\"" }
The length of 30 minutes aired on what date?
CREATE TABLE table_name_54 (airdate VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT airdate FROM table_name_54 WHERE length = \"30 minutes\"" }
When did the length of 60 minutes air?
CREATE TABLE table_name_46 (airdate VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT airdate FROM table_name_46 WHERE length = \"60 minutes\"" }
With a Division II of Portsmouth, what is the Division IV?
CREATE TABLE table_name_35 (division_iV VARCHAR, division_iII VARCHAR, portsmouth VARCHAR)
{ "SQL_Query": "SELECT division_iV FROM table_name_35 WHERE division_iII = portsmouth" }
What Division III has Bishop Brady in Division V and Hanover in Division IV?
CREATE TABLE table_name_97 (division_iII VARCHAR, division_v VARCHAR, division_iV VARCHAR, hanover VARCHAR)
{ "SQL_Query": "SELECT division_iII FROM table_name_97 WHERE division_v = \"bishop brady\" AND division_iV = hanover" }
What is the total sum of points of entrants with a reynard 92d chassis?
CREATE TABLE table_name_88 (points INTEGER, chassis VARCHAR)
{ "SQL_Query": "SELECT SUM(points) FROM table_name_88 WHERE chassis = \"reynard 92d\"" }