question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
What is the movie that Paul Schneider directed?
CREATE TABLE table_name_97 (title VARCHAR, director VARCHAR)
SELECT title FROM table_name_97 WHERE director = "paul schneider"
Show the most common location of performances.
CREATE TABLE performance (LOCATION VARCHAR)
SELECT LOCATION FROM performance GROUP BY LOCATION ORDER BY COUNT(*) DESC LIMIT 1
What was the date for the game in week 7?
CREATE TABLE table_name_14 (date VARCHAR, week VARCHAR)
SELECT date FROM table_name_14 WHERE week = 7
Who were the semifinalists in the tournament where Mats Wilander 7-6, 6-3 was declared the champion?
CREATE TABLE table_29295463_9 (semifinalists VARCHAR, champion VARCHAR)
SELECT semifinalists FROM table_29295463_9 WHERE champion = "Mats Wilander 7-6, 6-3"
Which Gold Coast has Auckland no, Adelaide yes, and Melbourne no?
CREATE TABLE table_name_24 (gold_coast VARCHAR, melbourne VARCHAR, auckland VARCHAR, adelaide VARCHAR)
SELECT gold_coast FROM table_name_24 WHERE auckland = "no" AND adelaide = "yes" AND melbourne = "no"
What is the earliest year that had a Lotus 49B chassis?
CREATE TABLE table_name_73 (year INTEGER, chassis VARCHAR)
SELECT MIN(year) FROM table_name_73 WHERE chassis = "lotus 49b"
Who had high rebounds on May 1?
CREATE TABLE table_name_15 (high_rebounds VARCHAR, date VARCHAR)
SELECT high_rebounds FROM table_name_15 WHERE date = "may 1"
Which English has Dutch of tong?
CREATE TABLE table_name_26 (english VARCHAR, dutch VARCHAR)
SELECT english FROM table_name_26 WHERE dutch = "tong"
What is the replication site when the species is enveloped and is of the bunyaviridae family?
CREATE TABLE table_name_58 (replication_site VARCHAR, envelopment VARCHAR, family VARCHAR)
SELECT replication_site FROM table_name_58 WHERE envelopment = "enveloped" AND family = "bunyaviridae"
What is the name where the license number is PL 22?
CREATE TABLE table_name_7 (name__year_commissioned_ VARCHAR, licence_number VARCHAR)
SELECT name__year_commissioned_ FROM table_name_7 WHERE licence_number = "pl 22"
Who are the Rowers with a Time of 5:56.38?
CREATE TABLE table_name_14 (rowers VARCHAR, time VARCHAR)
SELECT rowers FROM table_name_14 WHERE time = "5:56.38"
What is every value for average on previous season if the competition is league two?
CREATE TABLE table_2970978_1 (___ave_on_prev_season VARCHAR, competition VARCHAR)
SELECT ___ave_on_prev_season FROM table_2970978_1 WHERE competition = "League Two"
Which Programming has a Video of audio only?
CREATE TABLE table_name_62 (programming VARCHAR, video VARCHAR)
SELECT programming FROM table_name_62 WHERE video = "audio only"
What place had a score of 67-67=134?
CREATE TABLE table_name_72 (place VARCHAR, score VARCHAR)
SELECT place FROM table_name_72 WHERE score = 67 - 67 = 134
How many significant relationships list Will as a virtue?
CREATE TABLE table_1058787_1 (significant_relationship VARCHAR, virtues VARCHAR)
SELECT COUNT(significant_relationship) FROM table_1058787_1 WHERE virtues = "Will"
On the Date of 15 June 1992 what is the Score that is listed?
CREATE TABLE table_name_73 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_73 WHERE date = "15 june 1992"
What club is robert gallery a part of
CREATE TABLE table_name_51 (nfl_club VARCHAR, player VARCHAR)
SELECT nfl_club FROM table_name_51 WHERE player = "robert gallery"
What is the maximum number of top 10s when he finished in 63rd?
CREATE TABLE table_1637041_2 (top_10 INTEGER, position VARCHAR)
SELECT MAX(top_10) FROM table_1637041_2 WHERE position = "63rd"
What is the right ascension of Pegasus with a 7343 NGC?
CREATE TABLE table_name_57 (right_ascension___j2000__ VARCHAR, constellation VARCHAR, ngc_number VARCHAR)
SELECT right_ascension___j2000__ FROM table_name_57 WHERE constellation = "pegasus" AND ngc_number = "7343"
What is the average year with an average start smaller than 6.3 and fewer than 0 wins?
CREATE TABLE table_name_89 (year INTEGER, avg_start VARCHAR, wins VARCHAR)
SELECT AVG(year) FROM table_name_89 WHERE avg_start < 6.3 AND wins < 0
What chapter is located in Normal, Illinois?
CREATE TABLE table_name_65 (chapter VARCHAR, location VARCHAR)
SELECT chapter FROM table_name_65 WHERE location = "normal, illinois"
If artist 1 is Wolfgang Gartner, what is the release date?
CREATE TABLE table_23649244_2 (release_date VARCHAR, artist_1 VARCHAR)
SELECT release_date FROM table_23649244_2 WHERE artist_1 = "Wolfgang Gartner"
What engine is used by Colin Bennett Racing with an 811 chassis?
CREATE TABLE table_name_48 (engine VARCHAR, entrant VARCHAR, chassis VARCHAR)
SELECT engine FROM table_name_48 WHERE entrant = "colin bennett racing" AND chassis = "811"
What's the D 40 √ when D 43 √ is d 14?
CREATE TABLE table_name_23 (d_40_√ VARCHAR, d_43_√ VARCHAR)
SELECT d_40_√ FROM table_name_23 WHERE d_43_√ = "d 14"
What is the smallest Draws with a Result of runner-up, and Losses larger than 1?
CREATE TABLE table_name_60 (draws INTEGER, result VARCHAR, losses VARCHAR)
SELECT MIN(draws) FROM table_name_60 WHERE result = "runner-up" AND losses > 1
Tell me the score on april 27 with visitor of buffalo
CREATE TABLE table_name_8 (score VARCHAR, visitor VARCHAR, date VARCHAR)
SELECT score FROM table_name_8 WHERE visitor = "buffalo" AND date = "april 27"
Which deputy took office in 1976?
CREATE TABLE table_name_97 (name VARCHAR, took_office VARCHAR)
SELECT name FROM table_name_97 WHERE took_office = "1976"
Name the date for oregon jurisdiction
CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR)
SELECT date FROM table_name_92 WHERE jurisdiction = "oregon"
Who plays for the chicago bulls?
CREATE TABLE table_name_92 (player VARCHAR, team VARCHAR)
SELECT player FROM table_name_92 WHERE team = "chicago bulls"
What was the round 5 score if the team's total points where 212?
CREATE TABLE table_16815824_1 (round5 VARCHAR, total_points VARCHAR)
SELECT round5 FROM table_16815824_1 WHERE total_points = 212
What's the 2nd leg result in the round where team #1 is Iraklis?
CREATE TABLE table_19130829_4 (team__number1 VARCHAR)
SELECT 2 AS nd_leg FROM table_19130829_4 WHERE team__number1 = "Iraklis"
What is Venue, when Against is greater than 9, and when Date is "03/02/1996"?
CREATE TABLE table_name_58 (venue VARCHAR, against VARCHAR, date VARCHAR)
SELECT venue FROM table_name_58 WHERE against > 9 AND date = "03/02/1996"
When olympikus is the main sponsor who is the secondary sponsor?
CREATE TABLE table_187239_1 (secondary_sponsor VARCHAR, main_sponsor VARCHAR)
SELECT secondary_sponsor FROM table_187239_1 WHERE main_sponsor = "Olympikus"
What percentage of people were opposed to the candidate based on the Time Poll poll that showed 6% of people were unsure?
CREATE TABLE table_name_22 (oppose VARCHAR, poll_source VARCHAR, unsure VARCHAR)
SELECT oppose FROM table_name_22 WHERE poll_source = "time poll" AND unsure = "6%"
Sport of gaelic football and hurling is what league?
CREATE TABLE table_name_8 (league VARCHAR, sport VARCHAR)
SELECT league FROM table_name_8 WHERE sport = "gaelic football and hurling"
What was segment D when segment B was jeans?
CREATE TABLE table_15187735_1 (segment_d VARCHAR, segment_b VARCHAR)
SELECT segment_d FROM table_15187735_1 WHERE segment_b = "Jeans"
On what date was James P. Buchanan (d)'s successor seated?
CREATE TABLE table_2159547_3 (date_successor_seated VARCHAR, vacator VARCHAR)
SELECT date_successor_seated FROM table_2159547_3 WHERE vacator = "James P. Buchanan (D)"
What is the county for senator C. Anthony Muse?
CREATE TABLE table_11948857_1 (county_s__represented VARCHAR, member_senator VARCHAR)
SELECT county_s__represented FROM table_11948857_1 WHERE member_senator = "C. Anthony Muse"
What is the lost number when the team played 26 games and there were 83 points?
CREATE TABLE table_name_32 (lost VARCHAR, played VARCHAR, points VARCHAR)
SELECT lost FROM table_name_32 WHERE played = "26" AND points = "83"
Name the score for attendance of 13,617
CREATE TABLE table_name_63 (score VARCHAR, attendance VARCHAR)
SELECT score FROM table_name_63 WHERE attendance = "13,617"
How many episodes were originally aired Saturday, May 30, 2009?
CREATE TABLE table_17525955_2 (episode__number VARCHAR, us_air_date VARCHAR)
SELECT COUNT(episode__number) FROM table_17525955_2 WHERE us_air_date = "Saturday, May 30, 2009"
Name the loss on may 29
CREATE TABLE table_name_20 (loss VARCHAR, date VARCHAR)
SELECT loss FROM table_name_20 WHERE date = "may 29"
Which location has 103.534 million passengers in 2011-12?
CREATE TABLE table_18118221_1 (location VARCHAR, total_passengers__millions__2011_12 VARCHAR)
SELECT location FROM table_18118221_1 WHERE total_passengers__millions__2011_12 = "103.534"
What is the grid total for ralf schumacher racing over 53 laps?
CREATE TABLE table_name_31 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_31 WHERE driver = "ralf schumacher" AND laps > 53
Give the Finish for years after 2007.
CREATE TABLE table_name_42 (finish VARCHAR, year INTEGER)
SELECT finish FROM table_name_42 WHERE year > 2007
What is the title of the song with a track less than 8 released on 3/22/57?
CREATE TABLE table_name_53 (song_title VARCHAR, track VARCHAR, release_date VARCHAR)
SELECT song_title FROM table_name_53 WHERE track < 8 AND release_date = "3/22/57"
WHAT IS AVERAGE SCORE WITH T3 PLACE, FOR DOUG SANDERS?
CREATE TABLE table_name_75 (score INTEGER, place VARCHAR, player VARCHAR)
SELECT AVG(score) FROM table_name_75 WHERE place = "t3" AND player = "doug sanders"
Find the average height and weight for all males (sex is M).
CREATE TABLE people (height INTEGER, weight INTEGER, sex VARCHAR)
SELECT AVG(height), AVG(weight) FROM people WHERE sex = 'M'
Which sign has a fall of Venus?
CREATE TABLE table_name_5 (sign VARCHAR, fall VARCHAR)
SELECT sign FROM table_name_5 WHERE fall = "venus"
Name the score for september 11
CREATE TABLE table_name_48 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_48 WHERE date = "september 11"
What is the crowd size when Geelong is the away team?
CREATE TABLE table_name_57 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_57 WHERE away_team = "geelong"
What's the whole range of united states where road race is ottawa marathon
CREATE TABLE table_26166836_2 (country VARCHAR, road_race VARCHAR)
SELECT COUNT(country) FROM table_26166836_2 WHERE road_race = "Ottawa Marathon"
When 22 is the tries for what is the lost?
CREATE TABLE table_17941032_1 (lost VARCHAR, tries_for VARCHAR)
SELECT lost FROM table_17941032_1 WHERE tries_for = "22"
Where is the PPP 23164 million €?
CREATE TABLE table_2293510_1 (region___nuts_2006_ VARCHAR, ppp__million_€_ VARCHAR)
SELECT region___nuts_2006_ FROM table_2293510_1 WHERE ppp__million_€_ = 23164
What is the IHSAA class for Muncie Cowan?
CREATE TABLE table_name_27 (ihsaa_class VARCHAR, school VARCHAR)
SELECT ihsaa_class FROM table_name_27 WHERE school = "muncie cowan"
What Gold Coast has Auckland cancelled, and Adelaide yes?
CREATE TABLE table_name_58 (gold_coast VARCHAR, auckland VARCHAR, adelaide VARCHAR)
SELECT gold_coast FROM table_name_58 WHERE auckland = "cancelled" AND adelaide = "yes"
How much did the home team Geelong score?
CREATE TABLE table_name_50 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_50 WHERE home_team = "geelong"
What wheel arrangement was made in 1910?
CREATE TABLE table_name_1 (wheel_arrangement VARCHAR, year_made VARCHAR)
SELECT wheel_arrangement FROM table_name_1 WHERE year_made = "1910"
What is the local location that has senegal as the resident county, and a mission of mali?
CREATE TABLE table_name_47 (local_location VARCHAR, resident_country VARCHAR, mission VARCHAR)
SELECT local_location FROM table_name_47 WHERE resident_country = "senegal" AND mission = "mali"
On what date were the opponents the Bayhawks at a home game?
CREATE TABLE table_name_17 (date VARCHAR, home_away VARCHAR, opponent VARCHAR)
SELECT date FROM table_name_17 WHERE home_away = "home" AND opponent = "bayhawks"
What is the date of the poll with Goldberg at 26%?
CREATE TABLE table_name_12 (date VARCHAR, goldberg VARCHAR)
SELECT date FROM table_name_12 WHERE goldberg = "26%"
how many episodes in the series had as a production code 16016?
CREATE TABLE table_2791668_1 (no_in_series VARCHAR, production_code VARCHAR)
SELECT COUNT(no_in_series) FROM table_2791668_1 WHERE production_code = 16016
What is the sum of Swimsuit scores where the average score is 9.733 and the interview score is higher than 9.654?
CREATE TABLE table_name_79 (swimsuit INTEGER, average VARCHAR, interview VARCHAR)
SELECT SUM(swimsuit) FROM table_name_79 WHERE average = 9.733 AND interview > 9.654
What was the Attendance on 11/09/1946?
CREATE TABLE table_name_88 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_88 WHERE date = "11/09/1946"
What's the total diameter when longitude is 357.8e later than 1985?
CREATE TABLE table_name_60 (diameter__km_ VARCHAR, longitude VARCHAR, year_named VARCHAR)
SELECT COUNT(diameter__km_) FROM table_name_60 WHERE longitude = "357.8e" AND year_named > 1985
Is prothrombin time long when thromboplastin is prolonged?
CREATE TABLE table_1226250_1 (prothrombin_time VARCHAR, bleeding_time VARCHAR, partial_thromboplastin_time VARCHAR)
SELECT prothrombin_time FROM table_1226250_1 WHERE bleeding_time = "Prolonged" AND partial_thromboplastin_time = "Prolonged"
What city of license is associated with call sign w244bk?
CREATE TABLE table_name_44 (city_of_license VARCHAR, call_sign VARCHAR)
SELECT city_of_license FROM table_name_44 WHERE call_sign = "w244bk"
What is jamar martin's highest pick?
CREATE TABLE table_name_33 (pick INTEGER, player VARCHAR)
SELECT MAX(pick) FROM table_name_33 WHERE player = "jamar martin"
what is the last performance of leon varkas category:articles with hcards
CREATE TABLE table_19189856_1 (last_performance VARCHAR, performer VARCHAR)
SELECT last_performance FROM table_19189856_1 WHERE performer = "Leon Varkas category:Articles with hCards"
Which Result F-A has Opponents of rosenborg?
CREATE TABLE table_name_8 (result_f___a VARCHAR, opponents VARCHAR)
SELECT result_f___a FROM table_name_8 WHERE opponents = "rosenborg"
Who were the opponents in the final at Noida?
CREATE TABLE table_name_15 (opponents_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponents_in_the_final FROM table_name_15 WHERE tournament = "noida"
What is Winner, when Dates is Dec 11-14?
CREATE TABLE table_name_18 (winner VARCHAR, dates VARCHAR)
SELECT winner FROM table_name_18 WHERE dates = "dec 11-14"
What is the sum for the week with the date october 30, 1994?
CREATE TABLE table_name_55 (week INTEGER, date VARCHAR)
SELECT SUM(week) FROM table_name_55 WHERE date = "october 30, 1994"
What was the attendance for the game on August 16?
CREATE TABLE table_name_74 (attendance INTEGER, date VARCHAR)
SELECT SUM(attendance) FROM table_name_74 WHERE date = "august 16"
Name the kaz hayashi with block A of Shuji Kondo
CREATE TABLE table_name_47 (kaz_hayashi VARCHAR, block_a VARCHAR)
SELECT kaz_hayashi FROM table_name_47 WHERE block_a = "shuji kondo"
What is the average draws for a player larger than 16 with more than 1 tries and a win percentage smaller than 56.15%?
CREATE TABLE table_name_86 (drawn INTEGER, played VARCHAR, tries VARCHAR, _percentage_won VARCHAR)
SELECT AVG(drawn) FROM table_name_86 WHERE tries > 1 AND _percentage_won < 56.15 AND played > 16
How many releases did the DVD River Cottage forever have?
CREATE TABLE table_1180228_1 (released VARCHAR, dvd_name VARCHAR)
SELECT COUNT(released) FROM table_1180228_1 WHERE dvd_name = "River Cottage Forever"
How big was the crowd size, at the Junction Oval venue?
CREATE TABLE table_name_30 (crowd INTEGER, venue VARCHAR)
SELECT SUM(crowd) FROM table_name_30 WHERE venue = "junction oval"
What is the Set 3 when the Total was 62 - 75?
CREATE TABLE table_name_72 (set_3 VARCHAR, total VARCHAR)
SELECT set_3 FROM table_name_72 WHERE total = "62 - 75"
Name the period with matches of 0 0 of portugal
CREATE TABLE table_name_56 (period VARCHAR, matches VARCHAR, country VARCHAR)
SELECT period FROM table_name_56 WHERE matches = "0 0" AND country = "portugal"
Which is the highest Season with a Percentage of 67% and Alberto Ascari as a Driver?
CREATE TABLE table_name_7 (season INTEGER, percentage VARCHAR, driver VARCHAR)
SELECT MAX(season) FROM table_name_7 WHERE percentage = "67%" AND driver = "alberto ascari"
What is the record for Norway on 23 august 1981?
CREATE TABLE table_name_56 (record VARCHAR, nationality VARCHAR, date VARCHAR)
SELECT record FROM table_name_56 WHERE nationality = "norway" AND date = "23 august 1981"
What is the number of households in the county with median income of $65,240 and population greater than 744,344?
CREATE TABLE table_name_76 (number_of_households INTEGER, median_family_income VARCHAR, population VARCHAR)
SELECT SUM(number_of_households) FROM table_name_76 WHERE median_family_income = "$65,240" AND population > 744 OFFSET 344
What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?
CREATE TABLE table_name_33 (tournament VARCHAR, partner VARCHAR, opponent_in_the_final VARCHAR)
SELECT tournament FROM table_name_33 WHERE partner = "nicole thijssen" AND opponent_in_the_final = "nina bratchikova & frederica piedade"
What was team Toshiba's round 4 score?
CREATE TABLE table_16815824_1 (round4 INTEGER, team VARCHAR)
SELECT MIN(round4) FROM table_16815824_1 WHERE team = "team Toshiba"
What was the score on January 12?
CREATE TABLE table_name_27 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_27 WHERE date = "january 12"
Name the average points for dallara 3087 lola t88/50 and year before 1988
CREATE TABLE table_name_63 (points INTEGER, chassis VARCHAR, year VARCHAR)
SELECT AVG(points) FROM table_name_63 WHERE chassis = "dallara 3087 lola t88/50" AND year < 1988
For the year 1975, what is Propulsion, with a Number (quantity ordered) of 4756-4788 (33 buses)?
CREATE TABLE table_name_41 (fuel_propulsion VARCHAR, year VARCHAR, numbers__quantity_ordered_ VARCHAR)
SELECT fuel_propulsion FROM table_name_41 WHERE year = 1975 AND numbers__quantity_ordered_ = "4756-4788 (33 buses)"
What is the Time/Retired for laps higher than 52 on a grid larger than 21?
CREATE TABLE table_name_47 (time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_47 WHERE laps > 52 AND grid > 21
Team of honda 250cc, and a Time of 31’ 03.093 has what lowest rank?
CREATE TABLE table_name_74 (rank INTEGER, team VARCHAR, time VARCHAR)
SELECT MIN(rank) FROM table_name_74 WHERE team = "honda 250cc" AND time = "31’ 03.093"
What is the winner women and third is italy and runner-up is finland?
CREATE TABLE table_1216097_7 (winner VARCHAR, third VARCHAR, runner_up VARCHAR)
SELECT winner AS Women FROM table_1216097_7 WHERE third = "Italy" AND runner_up = "Finland"
Who was the writer for the episode originally airing on March 1, 2004?
CREATE TABLE table_23916272_6 (written_by VARCHAR, original_air_date VARCHAR)
SELECT written_by FROM table_23916272_6 WHERE original_air_date = "March 1, 2004"
What is the maximum 2010 value for China?
CREATE TABLE table_30133_3 (economy VARCHAR)
SELECT MAX(2010) FROM table_30133_3 WHERE economy = "China"
What was the first year Fabrice Soulier was a runner-up?
CREATE TABLE table_name_43 (year INTEGER, runner_up VARCHAR)
SELECT MIN(year) FROM table_name_43 WHERE runner_up = "fabrice soulier"
What sport was played on November 14, 2009?
CREATE TABLE table_name_27 (sport VARCHAR, date VARCHAR)
SELECT sport FROM table_name_27 WHERE date = "november 14, 2009"
What was the gdp of the country with a gdp per capita of $18048?
CREATE TABLE table_1307842_6 (gdp__billion_us$_ VARCHAR, gdp_per_capita__us$_ VARCHAR)
SELECT gdp__billion_us$_ FROM table_1307842_6 WHERE gdp_per_capita__us$_ = 18048
What's the result when there's more than 41 moves with an opening of c42 petrov's defence in 2007?
CREATE TABLE table_name_50 (result VARCHAR, opening VARCHAR, moves VARCHAR, year VARCHAR)
SELECT result FROM table_name_50 WHERE moves > 41 AND year = 2007 AND opening = "c42 petrov's defence"
What's the fed tax that has a total tax greater than 33.2, a minimum sales tax less than 41.01 and in Vancouver, BC?
CREATE TABLE table_name_85 (federal_excise_tax___cad INTEGER, minimum_tax_incl_sales_taxes__cad¢_l_ VARCHAR, total_excise_tax__cad¢_l_ VARCHAR, government VARCHAR)
SELECT AVG(federal_excise_tax___cad) AS ¢___l__ FROM table_name_85 WHERE total_excise_tax__cad¢_l_ > 33.2 AND government = "vancouver, bc" AND minimum_tax_incl_sales_taxes__cad¢_l_ < 41.01
Who were the high point scorers in game 7?
CREATE TABLE table_13464416_4 (high_points VARCHAR, game VARCHAR)
SELECT high_points FROM table_13464416_4 WHERE game = 7
Where was September 5?
CREATE TABLE table_name_25 (location VARCHAR, date VARCHAR)
SELECT location FROM table_name_25 WHERE date = "september 5"