question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the position played for the player drafted in round 2?
columns: - name: position type: VARCHAR - name: round type: VARCHAR table: table_name_76
SELECT position FROM table_name_76 WHERE round = 2
Name the Box Score which has an Away team of new zealand breakers on 7 february?
columns: - name: Box type: VARCHAR - name: away_team type: VARCHAR - name: date type: VARCHAR table: table_name_68
SELECT Box AS score FROM table_name_68 WHERE away_team = "new zealand breakers" AND date = "7 february"
What is the measure where the yes% is 44.06%?
columns: - name: description type: VARCHAR - name: _percentage_yes type: VARCHAR table: table_256286_39
SELECT description FROM table_256286_39 WHERE _percentage_yes = "44.06%"
What is the nationality of school/club team of barton cc (ks)?
columns: - name: nationality type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_65
SELECT nationality FROM table_name_65 WHERE school_club_team = "barton cc (ks)"
What is the fineness of the 2008 chinese cuju sport Reverse?
columns: - name: fineness type: VARCHAR - name: year type: VARCHAR - name: reverse type: VARCHAR table: table_name_11
SELECT fineness FROM table_name_11 WHERE year = 2008 AND reverse = "chinese cuju sport"
What is the difference related to 2 losses and fewer than 10 points?
columns: - name: points_difference type: VARCHAR - name: lost type: VARCHAR - name: points type: VARCHAR table: table_name_51
SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10
What date did the episode, with John O'Connell as the coach, premier?
columns: - name: premier_date type: VARCHAR - name: coach type: VARCHAR table: table_2140071_5
SELECT premier_date FROM table_2140071_5 WHERE coach = "John O'Connell"
What is the first leg with an agg of 10-2?
columns: - name: agg type: VARCHAR table: table_name_31
SELECT 1 AS st_leg FROM table_name_31 WHERE agg = "10-2"
What date was the game when 45,943 attended?
columns: - name: date type: VARCHAR - name: attendance type: VARCHAR table: table_name_56
SELECT date FROM table_name_56 WHERE attendance = "45,943"
What is the opponent for the tournament of rio de janeiro?
columns: - name: opponent type: VARCHAR - name: tournament type: VARCHAR table: table_name_22
SELECT opponent FROM table_name_22 WHERE tournament = "rio de janeiro"
What is the Virtue of Temperance in Latin?
columns: - name: latin type: VARCHAR - name: virtue type: VARCHAR table: table_name_64
SELECT latin FROM table_name_64 WHERE virtue = "temperance"
What date had the patent number US plant patent 12098?
columns: - name: date type: VARCHAR - name: plant_patent_number type: VARCHAR table: table_name_97
SELECT date FROM table_name_97 WHERE plant_patent_number = "us plant patent 12098"
Which rider had more than 23 laps, a manufacturer of Aprilia, and a grid of 14
columns: - name: rider type: VARCHAR - name: grid type: VARCHAR - name: laps type: VARCHAR - name: manufacturer type: VARCHAR table: table_name_95
SELECT rider FROM table_name_95 WHERE laps > 23 AND manufacturer = "aprilia" AND grid = 14
What issue was the Spoofed Title of the crockford files in?
columns: - name: issue type: VARCHAR - name: spoofed_title type: VARCHAR table: table_name_50
SELECT issue FROM table_name_50 WHERE spoofed_title = "the crockford files"
What is the 1991 with a 2r 1996?
columns: - name: Id type: VARCHAR table: table_name_34
SELECT 1991 FROM table_name_34 WHERE 1996 = "2r"
What is the name of the baseball stadium for the school with the Murray Center basketball arena?
columns: - name: baseball_stadium type: VARCHAR - name: basketball_arena type: VARCHAR table: table_1974545_3
SELECT baseball_stadium FROM table_1974545_3 WHERE basketball_arena = "The Murray Center"
What is the overall pick average with the pick # lower than 15?
columns: - name: overall type: INTEGER - name: pick__number type: INTEGER table: table_name_26
SELECT AVG(overall) FROM table_name_26 WHERE pick__number < 15
What day did the team play in murcia with a score of 0-3 after 1992?
columns: - name: date type: VARCHAR - name: score type: VARCHAR - name: year type: VARCHAR - name: location type: VARCHAR table: table_name_15
SELECT date FROM table_name_15 WHERE year > 1992 AND location = "murcia" AND score = "0-3"
How many attended the game against the sharks with over 86 points?
columns: - name: attendance type: INTEGER - name: points type: VARCHAR - name: opponent type: VARCHAR table: table_name_99
SELECT AVG(attendance) FROM table_name_99 WHERE points > 86 AND opponent = "sharks"
Who was the opposing team in game 6?
columns: - name: team type: VARCHAR - name: game type: VARCHAR table: table_27713030_3
SELECT team FROM table_27713030_3 WHERE game = 6
What was the home team score at Glenferrie Oval?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_10
SELECT home_team AS score FROM table_name_10 WHERE venue = "glenferrie oval"
How many of the elected officials are on the Economic Matters committee?
columns: - name: first_elected type: VARCHAR - name: committee type: VARCHAR table: table_14009909_1
SELECT COUNT(first_elected) FROM table_14009909_1 WHERE committee = "Economic Matters"
What province has a v valparaíso region and an area of 927.2?
columns: - name: province type: VARCHAR - name: region type: VARCHAR - name: area type: VARCHAR table: table_name_31
SELECT province FROM table_name_31 WHERE region = "v valparaíso" AND area = 927.2
What type has rest day as a course and was on 21 may?
columns: - name: type type: VARCHAR - name: course type: VARCHAR - name: date type: VARCHAR table: table_name_83
SELECT type FROM table_name_83 WHERE course = "rest day" AND date = "21 may"
Which Republican has a District of 10?
columns: - name: republican type: VARCHAR - name: district type: VARCHAR table: table_name_26
SELECT republican FROM table_name_26 WHERE district = 10
When did Episode 29 (7) originally air?
columns: - name: original_airdate type: VARCHAR - name: episode__number type: VARCHAR table: table_name_65
SELECT original_airdate FROM table_name_65 WHERE episode__number = "29 (7)"
Name all the candidates listed in the race where the incumbent is Prince Hulon Preston, Jr.
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342013_10
SELECT candidates FROM table_1342013_10 WHERE incumbent = "Prince Hulon Preston, Jr."
What is the lowest score of the team with 19 points and less than 18 played?
columns: - name: scored type: INTEGER - name: points type: VARCHAR - name: played type: VARCHAR table: table_name_82
SELECT MIN(scored) FROM table_name_82 WHERE points = 19 AND played < 18
What was the signed year for the Chinese name 蘇永康 who separated in 1987?
columns: - name: year_signed type: VARCHAR - name: year_separated type: VARCHAR - name: chinese_name type: VARCHAR table: table_name_82
SELECT year_signed FROM table_name_82 WHERE year_separated = "1987" AND chinese_name = "蘇永康"
Which competition was on August 11, 1996?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_42
SELECT competition FROM table_name_42 WHERE date = "august 11, 1996"
What is the competition on 15 August 2008?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_27
SELECT competition FROM table_name_27 WHERE date = "15 august 2008"
What was the home team that played Collingwood?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_73
SELECT home_team FROM table_name_73 WHERE away_team = "collingwood"
What is the seed for lyon (32) was DNQ?
columns: - name: seed type: INTEGER - name: lyon__32_ type: VARCHAR table: table_20711545_1
SELECT MAX(seed) FROM table_20711545_1 WHERE lyon__32_ = "DNQ"
What day did Alex Best exit?
columns: - name: exited type: VARCHAR - name: celebrity type: VARCHAR table: table_name_26
SELECT exited FROM table_name_26 WHERE celebrity = "alex best"
What was the title for the game with an attendance of n/a with the runner-up being Waseda, and a season of 1995-6 details?
columns: - name: title type: VARCHAR - name: season type: VARCHAR - name: attendance type: VARCHAR - name: runner_up type: VARCHAR table: table_name_91
SELECT title FROM table_name_91 WHERE attendance = "n/a" AND runner_up = "waseda" AND season = "1995-6 details"
What is the highest number of ends lost?
columns: - name: Ends type: INTEGER table: table_17012578_37
SELECT MAX(Ends) AS lost FROM table_17012578_37
What is the record on June 13?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_57
SELECT record FROM table_name_57 WHERE date = "june 13"
What was the venue when the score was 24–28?
columns: - name: venue type: VARCHAR - name: score type: VARCHAR table: table_name_43
SELECT venue FROM table_name_43 WHERE score = "24–28"
What is the wager on August 23, 1992 where vampiro was the winner?
columns: - name: wager type: VARCHAR - name: winner type: VARCHAR - name: date type: VARCHAR table: table_name_94
SELECT wager FROM table_name_94 WHERE winner = "vampiro" AND date = "august 23, 1992"
When 155 is the jersey what is the highest amount of different holders?
columns: - name: different_holders type: INTEGER - name: jerseys type: VARCHAR table: table_18676973_3
SELECT MAX(different_holders) FROM table_18676973_3 WHERE jerseys = 155
What's the most league cup apps for Jimmy Lawson having 0 league cup goals?
columns: - name: league_cup_apps type: INTEGER - name: league_cup_goals type: VARCHAR - name: name type: VARCHAR table: table_name_74
SELECT MAX(league_cup_apps) FROM table_name_74 WHERE league_cup_goals = 0 AND name = "jimmy lawson"
Who won in 1991?
columns: - name: player type: VARCHAR - name: year_s__won type: VARCHAR table: table_name_89
SELECT player FROM table_name_89 WHERE year_s__won = "1991"
What is Semifinalists, when Tournament is Rome
columns: - name: semifinalists type: VARCHAR - name: tournament type: VARCHAR table: table_name_93
SELECT semifinalists FROM table_name_93 WHERE tournament = "rome"
What is Date Sent, when Signal Power ( kW ) is less than 126, when Arrival Date is "January 2059", and when HD Designation is "HD193664"?
columns: - name: date_sent type: VARCHAR - name: hd_designation type: VARCHAR - name: signal_power___kw__ type: VARCHAR - name: arrival_date type: VARCHAR table: table_name_75
SELECT date_sent FROM table_name_75 WHERE signal_power___kw__ < 126 AND arrival_date = "january 2059" AND hd_designation = "hd193664"
What's the type for the brand herceptin with an approval date of before 2006?
columns: - name: type type: VARCHAR - name: approval_date type: VARCHAR - name: brand_name type: VARCHAR table: table_name_5
SELECT type FROM table_name_5 WHERE approval_date < 2006 AND brand_name = "herceptin"
What type of settlement is Jazak?
columns: - name: type type: VARCHAR - name: settlement type: VARCHAR table: table_2562572_50
SELECT type FROM table_2562572_50 WHERE settlement = "Jazak"
What is the Venue of the Friendly Competition with a Score of 1–4?
columns: - name: venue type: VARCHAR - name: competition type: VARCHAR - name: score type: VARCHAR table: table_name_58
SELECT venue FROM table_name_58 WHERE competition = "friendly" AND score = "1–4"
What is the Total Orphans number when the number of Total Orphans (AIDS Related) is < 100, and the Maternal (Total) is smaller than 31,000?
columns: - name: total_orphans__total_ type: INTEGER - name: total_orphans__aids_related_ type: VARCHAR - name: maternal__total_ type: VARCHAR table: table_name_66
SELECT MIN(total_orphans__total_) FROM table_name_66 WHERE total_orphans__aids_related_ = "< 100" AND maternal__total_ < 31 OFFSET 000
When is the winner panathinaikos, the runner-up olympiacos and the venue nikos goumas stadium?
columns: - name: year type: VARCHAR - name: venue type: VARCHAR - name: winner type: VARCHAR - name: runner_up type: VARCHAR table: table_name_65
SELECT year FROM table_name_65 WHERE winner = "panathinaikos" AND runner_up = "olympiacos" AND venue = "nikos goumas stadium"
For the United Kingdom, what's the date?
columns: - name: date type: VARCHAR - name: country type: VARCHAR table: table_name_88
SELECT date FROM table_name_88 WHERE country = "united kingdom"
What is the 2008 of the 2r 2011 and A 2010?
columns: - name: Id type: VARCHAR table: table_name_38
SELECT 2008 FROM table_name_38 WHERE 2011 = "2r" AND 2010 = "a"
When 1.12 is the production code what is the original title?
columns: - name: original_title type: VARCHAR - name: prod_code type: VARCHAR table: table_20124413_1
SELECT original_title FROM table_20124413_1 WHERE prod_code = "1.12"
Who were the candidates when Henry Garland Dupré was incumbent?
columns: - name: candidates type: VARCHAR - name: incumbent type: VARCHAR table: table_1342451_16
SELECT candidates FROM table_1342451_16 WHERE incumbent = "Henry Garland Dupré"
What is the lowest draw number for the song ranked 6th with more than 43 points?
columns: - name: draw type: INTEGER - name: points type: VARCHAR - name: rank type: VARCHAR table: table_name_22
SELECT MIN(draw) FROM table_name_22 WHERE points > 43 AND rank = "6th"
What's the average goal ratio with Goals larger than 1, Games larger than 161, and a Debut in Europe smaller than 1985?
columns: - name: goal_ratio type: INTEGER - name: debut_in_europe type: VARCHAR - name: goals type: VARCHAR - name: games type: VARCHAR table: table_name_71
SELECT AVG(goal_ratio) FROM table_name_71 WHERE goals > 1 AND games > 161 AND debut_in_europe < 1985
What was the average week of a game with a result of l 10-7 attended by 37,500?
columns: - name: week type: INTEGER - name: result type: VARCHAR - name: attendance type: VARCHAR table: table_name_4
SELECT AVG(week) FROM table_name_4 WHERE result = "l 10-7" AND attendance < 37 OFFSET 500
what is the to par for retief goosen?
columns: - name: to_par type: VARCHAR - name: player type: VARCHAR table: table_name_93
SELECT to_par FROM table_name_93 WHERE player = "retief goosen"
What was the position in 1999?
columns: - name: position type: VARCHAR - name: years type: VARCHAR table: table_name_58
SELECT position FROM table_name_58 WHERE years = "1999"
Name the least games played for 6 points
columns: - name: games_played type: INTEGER - name: total_points type: VARCHAR table: table_27816332_2
SELECT MIN(games_played) FROM table_27816332_2 WHERE total_points = 6
How many poles had a moto2 class?
columns: - name: pole type: VARCHAR - name: class type: VARCHAR table: table_name_75
SELECT pole FROM table_name_75 WHERE class = "moto2"
What were the points in the 1958-59 season?
columns: - name: points type: VARCHAR - name: season type: VARCHAR table: table_2110959_1
SELECT points FROM table_2110959_1 WHERE season = "1958-59"
Name the least RD number that has PI GP more than 0 and pick # more than 51
columns: - name: rd__number type: INTEGER - name: pl_gp type: VARCHAR - name: pick__number type: VARCHAR table: table_name_13
SELECT MIN(rd__number) FROM table_name_13 WHERE pl_gp > 0 AND pick__number > 51
What was the away team's score of at the game of telstra stadium?
columns: - name: away_team type: VARCHAR - name: ground type: VARCHAR table: table_16388545_1
SELECT away_team AS score FROM table_16388545_1 WHERE ground = "Telstra Stadium"
What is the type when Rangers are the moving from?
columns: - name: type type: VARCHAR - name: moving_from type: VARCHAR table: table_name_40
SELECT type FROM table_name_40 WHERE moving_from = "rangers"
Which Free polite has a Genitive 3 of *n(i)-ami?
columns: - name: free type: VARCHAR - name: genitive_3 type: VARCHAR table: table_name_40
SELECT free AS polite FROM table_name_40 WHERE genitive_3 = "*n(i)-ami"
that was held in 1964?
columns: - name: event type: VARCHAR - name: year type: VARCHAR table: table_name_39
SELECT event FROM table_name_39 WHERE year = 1964
Name the 2011 with 2002 of 1r and 2009 of a
columns: - name: Id type: VARCHAR table: table_name_9
SELECT 2011 FROM table_name_9 WHERE 2002 = "1r" AND 2009 = "a"
Which manufacturer has 23 laps and a time of +45.195?
columns: - name: manufacturer type: VARCHAR - name: laps type: VARCHAR - name: time_retired type: VARCHAR table: table_name_52
SELECT manufacturer FROM table_name_52 WHERE laps = 23 AND time_retired = "+45.195"
Who was the opponent in a week less than 8 on October 9, 1960?
columns: - name: opponent type: VARCHAR - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_24
SELECT opponent FROM table_name_24 WHERE week < 8 AND date = "october 9, 1960"
What year was the year of the pig theme?
columns: - name: year type: VARCHAR - name: theme type: VARCHAR table: table_name_43
SELECT year FROM table_name_43 WHERE theme = "year of the pig"
Name the player for seattle
columns: - name: player type: VARCHAR - name: school_club_team type: VARCHAR table: table_15621965_14
SELECT player FROM table_15621965_14 WHERE school_club_team = "Seattle"
What's the lowest rank of the United States with a time less than 24.63?
columns: - name: rank type: INTEGER - name: nationality type: VARCHAR - name: time type: VARCHAR table: table_name_74
SELECT MIN(rank) FROM table_name_74 WHERE nationality = "united states" AND time < 24.63
What was segment A when segment B was snowboards?
columns: - name: segment_a type: VARCHAR - name: segment_b type: VARCHAR table: table_15187735_1
SELECT segment_a FROM table_15187735_1 WHERE segment_b = "Snowboards"
What is the result for the event that lasted 2:20?
columns: - name: res type: VARCHAR - name: time type: VARCHAR table: table_name_7
SELECT res FROM table_name_7 WHERE time = "2:20"
What is High Rebounds, when Game is greater than 33, and when Score is "W 132-101"?
columns: - name: high_rebounds type: VARCHAR - name: game type: VARCHAR - name: score type: VARCHAR table: table_name_44
SELECT high_rebounds FROM table_name_44 WHERE game > 33 AND score = "w 132-101"
What date was the release when the format was lp?
columns: - name: date type: VARCHAR - name: format type: VARCHAR table: table_name_21
SELECT date FROM table_name_21 WHERE format = "lp"
How many race 1's have 5 as the race 3, with points less than 59?
columns: - name: race_1 type: INTEGER - name: race_3 type: VARCHAR - name: points type: VARCHAR table: table_name_45
SELECT SUM(race_1) FROM table_name_45 WHERE race_3 = "5" AND points < 59
What was the Margin of Victory of winning score 68-67-69-65=269?
columns: - name: margin_of_victory type: VARCHAR - name: winning_score type: VARCHAR table: table_name_65
SELECT margin_of_victory FROM table_name_65 WHERE winning_score = 68 - 67 - 69 - 65 = 269
When was the circuit Donington Park?
columns: - name: date type: VARCHAR - name: circuit type: VARCHAR table: table_22334183_3
SELECT date FROM table_22334183_3 WHERE circuit = "Donington Park"
What is the average Attendance at Venue A on 16 October 2004?
columns: - name: attendance type: INTEGER - name: venue type: VARCHAR - name: date type: VARCHAR table: table_name_57
SELECT AVG(attendance) FROM table_name_57 WHERE venue = "a" AND date = "16 october 2004"
How many goals Olimpia recorded for 32 matches?
columns: - name: goals_olimpia type: VARCHAR - name: matches type: VARCHAR table: table_13688489_1
SELECT COUNT(goals_olimpia) FROM table_13688489_1 WHERE matches = 32
What is the elevation for number 39?
columns: - name: elevation__m_ type: INTEGER - name: 'no' type: VARCHAR table: table_2731431_1
SELECT MAX(elevation__m_) FROM table_2731431_1 WHERE no = 39
Can you tell me the Score that has the High assists of rafer alston (8)?
columns: - name: score type: VARCHAR - name: high_assists type: VARCHAR table: table_name_41
SELECT score FROM table_name_41 WHERE high_assists = "rafer alston (8)"
How many laps does grid 4 have?
columns: - name: laps type: VARCHAR - name: grid type: VARCHAR table: table_name_74
SELECT laps FROM table_name_74 WHERE grid = "4"
What was the undecided with Roy Barnes at 47%?
columns: - name: undecided type: VARCHAR - name: roy_barnes type: VARCHAR table: table_name_22
SELECT undecided FROM table_name_22 WHERE roy_barnes = "47%"
What is the vote percentage for the couple gary and maria?
columns: - name: vote_percentage type: VARCHAR - name: couple type: VARCHAR table: table_26375386_20
SELECT vote_percentage FROM table_26375386_20 WHERE couple = "Gary and Maria"
What is the location and attendance of game 1?
columns: - name: location_attendance type: VARCHAR - name: game type: VARCHAR table: table_name_95
SELECT location_attendance FROM table_name_95 WHERE game = 1
What is the result/score for the match report recap on week 14?
columns: - name: result_score type: VARCHAR - name: match_report type: VARCHAR - name: week type: VARCHAR table: table_name_25
SELECT result_score FROM table_name_25 WHERE match_report = "recap" AND week = 14
What is every entry for Saturday August 27 when the entry for Thursday August 25 is 23' 56.90 94.528mph?
columns: - name: sat_27_aug type: VARCHAR - name: thurs_25_aug type: VARCHAR table: table_30058355_7
SELECT sat_27_aug FROM table_30058355_7 WHERE thurs_25_aug = "23' 56.90 94.528mph"
When the Score was 4-10, what was the Attendance?
columns: - name: attendance type: VARCHAR - name: score type: VARCHAR table: table_name_13
SELECT attendance FROM table_name_13 WHERE score = "4-10"
What are the years won with a total of 282?
columns: - name: year_s__won type: VARCHAR - name: total type: VARCHAR table: table_name_37
SELECT year_s__won FROM table_name_37 WHERE total = 282
Which season had 34 losses?
columns: - name: season type: VARCHAR - name: losses type: VARCHAR table: table_name_35
SELECT season FROM table_name_35 WHERE losses = "34"
What date is the release when the label was Parlophone and the catalog was 582 2912?
columns: - name: date type: VARCHAR - name: label type: VARCHAR - name: catalog type: VARCHAR table: table_name_35
SELECT date FROM table_name_35 WHERE label = "parlophone" AND catalog = "582 2912"
What is the highest goal difference of the club with more than 34 played?
columns: - name: goal_difference type: INTEGER - name: played type: INTEGER table: table_name_54
SELECT MAX(goal_difference) FROM table_name_54 WHERE played > 34
Who had the opponent of Lenka Cenková kateřina šišková in the final?
columns: - name: partner type: VARCHAR - name: opponents_in_the_final type: VARCHAR table: table_name_72
SELECT partner FROM table_name_72 WHERE opponents_in_the_final = "lenka cenková kateřina šišková"
What is the highest round of Ed Smith, who had a pick higher than 261 and played halfback?
columns: - name: round type: INTEGER - name: player type: VARCHAR - name: pick type: VARCHAR - name: position type: VARCHAR table: table_name_78
SELECT MAX(round) FROM table_name_78 WHERE pick < 261 AND position = "halfback" AND player = "ed smith"
Name the average with tally of 0-29 and total more than 29
columns: - name: average type: INTEGER - name: tally type: VARCHAR - name: total type: VARCHAR table: table_name_40
SELECT AVG(average) FROM table_name_40 WHERE tally = "0-29" AND total > 29
Who was president Year of 2002-2003, second semester?
columns: - name: president type: VARCHAR - name: year type: VARCHAR table: table_name_89
SELECT president FROM table_name_89 WHERE year = "2002-2003, second semester"
How many people per km2 are there in the municipality whose mayor is Boy Quiat?
columns: - name: "pop_density__per_km\xB2_" type: VARCHAR - name: municipal_mayor type: VARCHAR table: table_216776_2
SELECT pop_density__per_km²_ FROM table_216776_2 WHERE municipal_mayor = "Boy Quiat"
Which Score has Points smaller than 67, and a Home of calgary flames?
columns: - name: score type: VARCHAR - name: points type: VARCHAR - name: home type: VARCHAR table: table_name_45
SELECT score FROM table_name_45 WHERE points < 67 AND home = "calgary flames"