Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
58,600
<question>: What was the high amount of assists before game 60? <context>: CREATE TABLE table_name_1 (high_assists VARCHAR, game INTEGER) <answer>: SELECT high_assists FROM table_name_1 WHERE game < 60
58,601
<question>: What date was match 5? <context>: CREATE TABLE table_name_29 (date VARCHAR, match VARCHAR) <answer>: SELECT date FROM table_name_29 WHERE match = 5
58,602
<question>: What was the game score on april 2, 2008? <context>: CREATE TABLE table_name_2 (score VARCHAR, date VARCHAR) <answer>: SELECT score FROM table_name_2 WHERE date = "april 2, 2008"
58,603
<question>: What is the average match when the singapore armed forces played away against perak fa (malaysia)? <context>: CREATE TABLE table_name_65 (match INTEGER, home_away VARCHAR, opponent_team VARCHAR) <answer>: SELECT AVG(match) FROM table_name_65 WHERE home_away = "away" AND opponent_team = "perak fa (malaysia)"
58,604
<question>: What is the ICAO for Seewoosagur Ramgoolam airport? <context>: CREATE TABLE table_name_72 (icao VARCHAR, airport VARCHAR) <answer>: SELECT icao FROM table_name_72 WHERE airport = "seewoosagur ramgoolam airport"
58,605
<question>: What is the IATA for San Francisco airport? <context>: CREATE TABLE table_name_88 (iata VARCHAR, airport VARCHAR) <answer>: SELECT iata FROM table_name_88 WHERE airport = "san francisco airport"
58,606
<question>: Which city has an ICAO of Oejn? <context>: CREATE TABLE table_name_61 (city VARCHAR, icao VARCHAR) <answer>: SELECT city FROM table_name_61 WHERE icao = "oejn"
58,607
<question>: What is the IATA for Gatwick airport? <context>: CREATE TABLE table_name_79 (iata VARCHAR, airport VARCHAR) <answer>: SELECT iata FROM table_name_79 WHERE airport = "gatwick airport"
58,608
<question>: What is the ICAO in France with an IATA of Ory? <context>: CREATE TABLE table_name_79 (icao VARCHAR, country VARCHAR, iata VARCHAR) <answer>: SELECT icao FROM table_name_79 WHERE country = "france" AND iata = "ory"
58,609
<question>: Which Location Attendance has a Game larger than 67, and a Team of @ charlotte? <context>: CREATE TABLE table_name_92 (location_attendance VARCHAR, game VARCHAR, team VARCHAR) <answer>: SELECT location_attendance FROM table_name_92 WHERE game > 67 AND team = "@ charlotte"
58,610
<question>: Which High rebounds have High points of chris bosh (18)? <context>: CREATE TABLE table_name_50 (high_rebounds VARCHAR, high_points VARCHAR) <answer>: SELECT high_rebounds FROM table_name_50 WHERE high_points = "chris bosh (18)"
58,611
<question>: Which High rebounds have High points of chris bosh (34)? <context>: CREATE TABLE table_name_29 (high_rebounds VARCHAR, high_points VARCHAR) <answer>: SELECT high_rebounds FROM table_name_29 WHERE high_points = "chris bosh (34)"
58,612
<question>: What are Utah's high points? <context>: CREATE TABLE table_name_49 (high_points VARCHAR, team VARCHAR) <answer>: SELECT high_points FROM table_name_49 WHERE team = "utah"
58,613
<question>: What is Rinnal's title? <context>: CREATE TABLE table_name_82 (title VARCHAR, name VARCHAR) <answer>: SELECT title FROM table_name_82 WHERE name = "rinnal"
58,614
<question>: Which player from United States is in place of t6? <context>: CREATE TABLE table_name_51 (player VARCHAR, country VARCHAR, place VARCHAR) <answer>: SELECT player FROM table_name_51 WHERE country = "united states" AND place = "t6"
58,615
<question>: Phil Mickelson has what To par? <context>: CREATE TABLE table_name_47 (to_par VARCHAR, player VARCHAR) <answer>: SELECT to_par FROM table_name_47 WHERE player = "phil mickelson"
58,616
<question>: What high assists have a game greater than 46? <context>: CREATE TABLE table_name_61 (high_assists VARCHAR, game INTEGER) <answer>: SELECT high_assists FROM table_name_61 WHERE game > 46
58,617
<question>: What are the high points that have 42 as the game? <context>: CREATE TABLE table_name_65 (high_points VARCHAR, game VARCHAR) <answer>: SELECT high_points FROM table_name_65 WHERE game = 42
58,618
<question>: What record has 46 as the game? <context>: CREATE TABLE table_name_74 (record VARCHAR, game VARCHAR) <answer>: SELECT record FROM table_name_74 WHERE game = 46
58,619
<question>: WHAT IS THE PLACE WITH A SCORE OF 67-70=137? <context>: CREATE TABLE table_name_61 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_61 WHERE score = 67 - 70 = 137
58,620
<question>: WHAT PLAYER HAS A SCORE OF 66-73=139? <context>: CREATE TABLE table_name_79 (player VARCHAR, score VARCHAR) <answer>: SELECT player FROM table_name_79 WHERE score = 66 - 73 = 139
58,621
<question>: WHAT PLACE WAS A SCORE 67-70=137? <context>: CREATE TABLE table_name_48 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_48 WHERE score = 67 - 70 = 137
58,622
<question>: WHAT COUNTRY HAS A T7 PLACE, WITH IAN WOOSNAM? <context>: CREATE TABLE table_name_13 (country VARCHAR, place VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_13 WHERE place = "t7" AND player = "ian woosnam"
58,623
<question>: WHAT COUNTRY HAS A SCORE OF 68-70=138? <context>: CREATE TABLE table_name_58 (country VARCHAR, score VARCHAR) <answer>: SELECT country FROM table_name_58 WHERE score = 68 - 70 = 138
58,624
<question>: What was the earliest week when the New Orleans Saints were the opponents? <context>: CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR) <answer>: SELECT MIN(week) FROM table_name_31 WHERE opponent = "new orleans saints"
58,625
<question>: What was the name of the opponent that having a TV time of Bye? <context>: CREATE TABLE table_name_19 (opponent VARCHAR, tv_time VARCHAR) <answer>: SELECT opponent FROM table_name_19 WHERE tv_time = "bye"
58,626
<question>: What year did the Grizzlies play for the UNLV team? <context>: CREATE TABLE table_name_81 (years_for_grizzlies VARCHAR, school_club_team VARCHAR) <answer>: SELECT years_for_grizzlies FROM table_name_81 WHERE school_club_team = "unlv"
58,627
<question>: What nationality is the forward/center position? <context>: CREATE TABLE table_name_37 (nationality VARCHAR, position VARCHAR) <answer>: SELECT nationality FROM table_name_37 WHERE position = "forward/center"
58,628
<question>: What team is from the United States and plays a guard position for the Grizzlies in 2012? <context>: CREATE TABLE table_name_70 (school_club_team VARCHAR, years_for_grizzlies VARCHAR, nationality VARCHAR, position VARCHAR) <answer>: SELECT school_club_team FROM table_name_70 WHERE nationality = "united states" AND position = "guard" AND years_for_grizzlies = "2012"
58,629
<question>: What position is the player from the United States play for the Grizzlies from 2000-2001? <context>: CREATE TABLE table_name_90 (position VARCHAR, nationality VARCHAR, years_for_grizzlies VARCHAR) <answer>: SELECT position FROM table_name_90 WHERE nationality = "united states" AND years_for_grizzlies = "2000-2001"
58,630
<question>: What is the total number of Bronze, when Gold is greater than 0, when Rank is 4, and when Total is greater than 4? <context>: CREATE TABLE table_name_59 (bronze VARCHAR, total VARCHAR, gold VARCHAR, rank VARCHAR) <answer>: SELECT COUNT(bronze) FROM table_name_59 WHERE gold > 0 AND rank = "4" AND total > 4
58,631
<question>: What is the total number of Total, when Gold is less than 1, when Silver is greater than 0, when Rank is 14, and when Nation is Afghanistan? <context>: CREATE TABLE table_name_68 (total VARCHAR, nation VARCHAR, rank VARCHAR, gold VARCHAR, silver VARCHAR) <answer>: SELECT COUNT(total) FROM table_name_68 WHERE gold < 1 AND silver > 0 AND rank = "14" AND nation = "afghanistan"
58,632
<question>: What is the lowest Gold, when Silver is 0, and when Bronze is 2? <context>: CREATE TABLE table_name_52 (gold INTEGER, silver VARCHAR, bronze VARCHAR) <answer>: SELECT MIN(gold) FROM table_name_52 WHERE silver = 0 AND bronze = 2
58,633
<question>: What is the average Bronze, when Silver is 0, when Rank is 19, and when Total is greater than 2? <context>: CREATE TABLE table_name_29 (bronze INTEGER, total VARCHAR, silver VARCHAR, rank VARCHAR) <answer>: SELECT AVG(bronze) FROM table_name_29 WHERE silver = 0 AND rank = "19" AND total > 2
58,634
<question>: What was the lowest number of pieces for a board released in 1984? <context>: CREATE TABLE table_name_15 (pieces INTEGER, release VARCHAR) <answer>: SELECT MIN(pieces) FROM table_name_15 WHERE release = 1984
58,635
<question>: What is the dimensions in centimeters of a theater board who started in 1940, who was released after 2010? <context>: CREATE TABLE table_name_14 (board__cm_ VARCHAR, release VARCHAR, start VARCHAR, type VARCHAR) <answer>: SELECT board__cm_ FROM table_name_14 WHERE start = "1940" AND type = "theater" AND release > 2010
58,636
<question>: What is the average number of pieces for boards that started in 1941 and were released after 2001? <context>: CREATE TABLE table_name_14 (pieces INTEGER, start VARCHAR, release VARCHAR) <answer>: SELECT AVG(pieces) FROM table_name_14 WHERE start = "1941" AND release > 2001
58,637
<question>: What are the dimensions in inches of the board released before 2004, that started in 1941? <context>: CREATE TABLE table_name_76 (board__inches_ VARCHAR, release VARCHAR, start VARCHAR) <answer>: SELECT board__inches_ FROM table_name_76 WHERE release < 2004 AND start = "1941"
58,638
<question>: What is Venue, when Against is less than 30, and when Opposing Team is New South Wales? <context>: CREATE TABLE table_name_14 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR) <answer>: SELECT venue FROM table_name_14 WHERE against < 30 AND opposing_team = "new south wales"
58,639
<question>: What is Status, when Date is 10/05/1975? <context>: CREATE TABLE table_name_33 (status VARCHAR, date VARCHAR) <answer>: SELECT status FROM table_name_33 WHERE date = "10/05/1975"
58,640
<question>: What is the lowest Against, when Opposing Team is Queensland? <context>: CREATE TABLE table_name_92 (against INTEGER, opposing_team VARCHAR) <answer>: SELECT MIN(against) FROM table_name_92 WHERE opposing_team = "queensland"
58,641
<question>: What is Date, when Status is Second Test? <context>: CREATE TABLE table_name_34 (date VARCHAR, status VARCHAR) <answer>: SELECT date FROM table_name_34 WHERE status = "second test"
58,642
<question>: Who was born in Porsgrunn? <context>: CREATE TABLE table_name_27 (name VARCHAR, place_of_birth VARCHAR) <answer>: SELECT name FROM table_name_27 WHERE place_of_birth = "porsgrunn"
58,643
<question>: Which Studio has a Rank smaller than 3, and a Director of adrian lyne? <context>: CREATE TABLE table_name_71 (studio VARCHAR, rank VARCHAR, director VARCHAR) <answer>: SELECT studio FROM table_name_71 WHERE rank < 3 AND director = "adrian lyne"
58,644
<question>: Which Rank is the lowest one that has a Gross of $54,215,416? <context>: CREATE TABLE table_name_24 (rank INTEGER, gross VARCHAR) <answer>: SELECT MIN(rank) FROM table_name_24 WHERE gross = "$54,215,416"
58,645
<question>: What is the date of the match against John McEnroe with a Score of 3–6, 6–3, 2–6? <context>: CREATE TABLE table_name_73 (date VARCHAR, opponent VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_73 WHERE opponent = "john mcenroe" AND score = "3–6, 6–3, 2–6"
58,646
<question>: What is the Opponent of the game in 1989? <context>: CREATE TABLE table_name_76 (opponent VARCHAR, date VARCHAR) <answer>: SELECT opponent FROM table_name_76 WHERE date = 1989
58,647
<question>: What is the highest pick of ron whaley? <context>: CREATE TABLE table_name_58 (pick INTEGER, name VARCHAR) <answer>: SELECT MAX(pick) FROM table_name_58 WHERE name = "ron whaley"
58,648
<question>: What is the overall sum of the game with a pick less than 8 from the college of western michigan? <context>: CREATE TABLE table_name_23 (overall INTEGER, pick VARCHAR, college VARCHAR) <answer>: SELECT SUM(overall) FROM table_name_23 WHERE pick < 8 AND college = "western michigan"
58,649
<question>: What is the position of the player from the college of western michigan? <context>: CREATE TABLE table_name_92 (position VARCHAR, college VARCHAR) <answer>: SELECT position FROM table_name_92 WHERE college = "western michigan"
58,650
<question>: What is the lowest round of bob caldwell, who has a pick greater than 7 and an overall larger than 162? <context>: CREATE TABLE table_name_9 (round INTEGER, overall VARCHAR, pick VARCHAR, name VARCHAR) <answer>: SELECT MIN(round) FROM table_name_9 WHERE pick > 7 AND name = "bob caldwell" AND overall > 162
58,651
<question>: What is the college of dave adams, who has a pick greater than 7? <context>: CREATE TABLE table_name_63 (college VARCHAR, pick VARCHAR, name VARCHAR) <answer>: SELECT college FROM table_name_63 WHERE pick > 7 AND name = "dave adams"
58,652
<question>: What game took place on April 28? <context>: CREATE TABLE table_name_33 (game VARCHAR, date VARCHAR) <answer>: SELECT game FROM table_name_33 WHERE date = "april 28"
58,653
<question>: What is the east with ev landsberg as the west? <context>: CREATE TABLE table_name_83 (east VARCHAR, west VARCHAR) <answer>: SELECT east FROM table_name_83 WHERE west = "ev landsberg"
58,654
<question>: What is the north with sb rosenheim as the south? <context>: CREATE TABLE table_name_45 (north VARCHAR, south VARCHAR) <answer>: SELECT north FROM table_name_45 WHERE south = "sb rosenheim"
58,655
<question>: What is the south with ev lindau as the west and svg burgkirchen as the east? <context>: CREATE TABLE table_name_24 (south VARCHAR, west VARCHAR, east VARCHAR) <answer>: SELECT south FROM table_name_24 WHERE west = "ev lindau" AND east = "svg burgkirchen"
58,656
<question>: What season has esc holzkirchen south, esv buchloe west, and ehc bayreuth north? <context>: CREATE TABLE table_name_68 (season VARCHAR, north VARCHAR, south VARCHAR, west VARCHAR) <answer>: SELECT season FROM table_name_68 WHERE south = "esc holzkirchen" AND west = "esv buchloe" AND north = "ehc bayreuth"
58,657
<question>: What is south in the 2001-02 season, which had germering wanderers east? <context>: CREATE TABLE table_name_92 (south VARCHAR, east VARCHAR, season VARCHAR) <answer>: SELECT south FROM table_name_92 WHERE east = "germering wanderers" AND season = "2001-02"
58,658
<question>: What was west when ev fürstenfeldbruck was south? <context>: CREATE TABLE table_name_28 (west VARCHAR, south VARCHAR) <answer>: SELECT west FROM table_name_28 WHERE south = "ev fürstenfeldbruck"
58,659
<question>: When revenue is smaller than 4,177 million in year 2008, what is the sum of earnings per share? <context>: CREATE TABLE table_name_89 (earnings_per_share__p_ INTEGER, year_ended VARCHAR, revenue__£million_ VARCHAR) <answer>: SELECT SUM(earnings_per_share__p_) FROM table_name_89 WHERE year_ended = "2008" AND revenue__£million_ < 4 OFFSET 177
58,660
<question>: What is the year 2007 earnings per share? <context>: CREATE TABLE table_name_47 (earnings_per_share__p_ VARCHAR, year_ended VARCHAR) <answer>: SELECT earnings_per_share__p_ FROM table_name_47 WHERE year_ended = "2007"
58,661
<question>: What is the total net profit when earnings per share is 27.4, and profit/loss befor tax was smaller than 194.6 million? <context>: CREATE TABLE table_name_75 (net_profit__ INTEGER, earnings_per_share__p_ VARCHAR, profit__loss__before_tax__£m_ VARCHAR) <answer>: SELECT SUM(net_profit__) AS £m_ FROM table_name_75 WHERE earnings_per_share__p_ = 27.4 AND profit__loss__before_tax__£m_ < 194.6
58,662
<question>: In year 2011 what is sum of profit/loss before tax and net profit larger than 123.8 million? <context>: CREATE TABLE table_name_47 (profit__loss__before_tax__ VARCHAR, year_ended VARCHAR, net_profit__£m_ VARCHAR) <answer>: SELECT COUNT(profit__loss__before_tax__) AS £m_ FROM table_name_47 WHERE year_ended = "2011" AND net_profit__£m_ > 123.8
58,663
<question>: What is the highest goals for less than 63 goals against, more than 65 points 1, and more than 10 losses? <context>: CREATE TABLE table_name_97 (goals_for INTEGER, lost VARCHAR, goals_against VARCHAR, points_1 VARCHAR) <answer>: SELECT MAX(goals_for) FROM table_name_97 WHERE goals_against < 63 AND points_1 > 65 AND lost > 10
58,664
<question>: What is the highest position for less than 42 played? <context>: CREATE TABLE table_name_48 (position INTEGER, played INTEGER) <answer>: SELECT MAX(position) FROM table_name_48 WHERE played < 42
58,665
<question>: What is the average day in December with a Record of 16-3-4 and a Game smaller than 23? <context>: CREATE TABLE table_name_84 (december INTEGER, record VARCHAR, game VARCHAR) <answer>: SELECT AVG(december) FROM table_name_84 WHERE record = "16-3-4" AND game < 23
58,666
<question>: When the Runners-Up is larger than 0, what's the sum of winners? <context>: CREATE TABLE table_name_38 (winners INTEGER, runners_up INTEGER) <answer>: SELECT SUM(winners) FROM table_name_38 WHERE runners_up > 0
58,667
<question>: When there are more than 1 winners and the team playing is pachuca, what's the lowest runners-up found? <context>: CREATE TABLE table_name_44 (runners_up INTEGER, team VARCHAR, winners VARCHAR) <answer>: SELECT MIN(runners_up) FROM table_name_44 WHERE team = "pachuca" AND winners > 1
58,668
<question>: Can you tell me the Name that has the Assists of lake (154) lake (5.1 apg)? <context>: CREATE TABLE table_name_45 (name VARCHAR, assists VARCHAR) <answer>: SELECT name FROM table_name_45 WHERE assists = "lake (154) lake (5.1 apg)"
58,669
<question>: Can you tell me the Name that has the Place of 1? <context>: CREATE TABLE table_name_86 (name VARCHAR, place VARCHAR) <answer>: SELECT name FROM table_name_86 WHERE place = 1
58,670
<question>: Can you tell me the Rebounds that has the Name of pom baskets jena? <context>: CREATE TABLE table_name_27 (rebounds VARCHAR, name VARCHAR) <answer>: SELECT rebounds FROM table_name_27 WHERE name = "pom baskets jena"
58,671
<question>: Can you tell me the Steals that has the Place of 6? <context>: CREATE TABLE table_name_13 (steals VARCHAR, place VARCHAR) <answer>: SELECT steals FROM table_name_13 WHERE place = 6
58,672
<question>: What is the Callsign in Brisbane with a Freq currently of 4rph? <context>: CREATE TABLE table_name_52 (callsign VARCHAR, area_served VARCHAR, freq_currently VARCHAR) <answer>: SELECT callsign FROM table_name_52 WHERE area_served = "brisbane" AND freq_currently = "4rph"
58,673
<question>: What is the Freq currently of the 4GG Callsign? <context>: CREATE TABLE table_name_7 (freq_currently VARCHAR, callsign VARCHAR) <answer>: SELECT freq_currently FROM table_name_7 WHERE callsign = "4gg"
58,674
<question>: What is the Community Band with a 4BCB Callsign? <context>: CREATE TABLE table_name_95 (band VARCHAR, purpose VARCHAR, callsign VARCHAR) <answer>: SELECT band FROM table_name_95 WHERE purpose = "community" AND callsign = "4bcb"
58,675
<question>: What is the Purpose of the Callsign with a Freq currently of 4gld? <context>: CREATE TABLE table_name_59 (purpose VARCHAR, freq_currently VARCHAR) <answer>: SELECT purpose FROM table_name_59 WHERE freq_currently = "4gld"
58,676
<question>: What is the Purpose of the Callsign with a Freq currently of 4rph? <context>: CREATE TABLE table_name_43 (purpose VARCHAR, freq_currently VARCHAR) <answer>: SELECT purpose FROM table_name_43 WHERE freq_currently = "4rph"
58,677
<question>: What was the press like for the world olympic record holder Roger Francois and Jaan Kikkas? <context>: CREATE TABLE table_name_95 (press VARCHAR, world_record VARCHAR, roger_françois VARCHAR) <answer>: SELECT press FROM table_name_95 WHERE world_record = "olympic record" AND roger_françois = "jaan kikkas"
58,678
<question>: What was the press like in Paris for Roger Francois, and Carlo Galimberti? <context>: CREATE TABLE table_name_67 (paris___fra__ VARCHAR, roger_françois VARCHAR) <answer>: SELECT paris___fra__ FROM table_name_67 WHERE "press" = "press" AND roger_françois = "carlo galimberti"
58,679
<question>: What is the total amount of world records for Roger Francois? <context>: CREATE TABLE table_name_54 (roger_françois VARCHAR, world_record VARCHAR) <answer>: SELECT roger_françois FROM table_name_54 WHERE world_record = "total"
58,680
<question>: What place had a score of 71-70-73-71=285? <context>: CREATE TABLE table_name_50 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_50 WHERE score = 71 - 70 - 73 - 71 = 285
58,681
<question>: How much money for 1st place with a to par less than 1? <context>: CREATE TABLE table_name_51 (money___ VARCHAR, place VARCHAR, to_par VARCHAR) <answer>: SELECT COUNT(money___) AS $__ FROM table_name_51 WHERE place = "1" AND to_par < 1
58,682
<question>: What Player had a To par of +1? <context>: CREATE TABLE table_name_39 (player VARCHAR, to_par VARCHAR) <answer>: SELECT player FROM table_name_39 WHERE to_par = "+1"
58,683
<question>: What is the Country of the Player with a To par of +4 and Score of 73-71-73=217? <context>: CREATE TABLE table_name_94 (country VARCHAR, to_par VARCHAR, score VARCHAR) <answer>: SELECT country FROM table_name_94 WHERE to_par = "+4" AND score = 73 - 71 - 73 = 217
58,684
<question>: What is the Place of the Player with a To par of +3 and Score of 73-70-73=216? <context>: CREATE TABLE table_name_45 (place VARCHAR, to_par VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_45 WHERE to_par = "+3" AND score = 73 - 70 - 73 = 216
58,685
<question>: What is the Place of the Player with a Score of 72-70-72=214? <context>: CREATE TABLE table_name_86 (place VARCHAR, score VARCHAR) <answer>: SELECT place FROM table_name_86 WHERE score = 72 - 70 - 72 = 214
58,686
<question>: Which team uses the kitmaker Saller and has Krombacher as their shirt sponsor? <context>: CREATE TABLE table_name_73 (team VARCHAR, kitmaker VARCHAR, shirt_sponsor VARCHAR) <answer>: SELECT team FROM table_name_73 WHERE kitmaker = "saller" AND shirt_sponsor = "krombacher"
58,687
<question>: For the team led by head coach Felix Magath, who is the team captain? <context>: CREATE TABLE table_name_91 (team VARCHAR, head_coach VARCHAR) <answer>: SELECT team AS Captain FROM table_name_91 WHERE head_coach = "felix magath"
58,688
<question>: For the team whose shirt sponsor is Krombacher, who is the team captain? <context>: CREATE TABLE table_name_12 (team VARCHAR, shirt_sponsor VARCHAR) <answer>: SELECT team AS Captain FROM table_name_12 WHERE shirt_sponsor = "krombacher"
58,689
<question>: For the team whose shirt sponsor is Evonik, who is the kitmaker? <context>: CREATE TABLE table_name_54 (kitmaker VARCHAR, shirt_sponsor VARCHAR) <answer>: SELECT kitmaker FROM table_name_54 WHERE shirt_sponsor = "evonik"
58,690
<question>: Who is the Shirt Back Sponsor if the Shorts Sponsor is Telestet? <context>: CREATE TABLE table_name_69 (shirt_back_sponsor VARCHAR, shorts_sponsor VARCHAR) <answer>: SELECT shirt_back_sponsor FROM table_name_69 WHERE shorts_sponsor = "telestet"
58,691
<question>: Which of the Res., has Ryan Scheepe as an opponent? <context>: CREATE TABLE table_name_34 (res VARCHAR, opponent VARCHAR) <answer>: SELECT res FROM table_name_34 WHERE opponent = "ryan scheepe"
58,692
<question>: What position is Jeff Brown? <context>: CREATE TABLE table_name_74 (position VARCHAR, player VARCHAR) <answer>: SELECT position FROM table_name_74 WHERE player = "jeff brown"
58,693
<question>: which player played on Team Hamilton? <context>: CREATE TABLE table_name_33 (player VARCHAR, cfl_team VARCHAR) <answer>: SELECT player FROM table_name_33 WHERE cfl_team = "hamilton"
58,694
<question>: What CFL team does Jeff brown play for? <context>: CREATE TABLE table_name_16 (cfl_team VARCHAR, player VARCHAR) <answer>: SELECT cfl_team FROM table_name_16 WHERE player = "jeff brown"
58,695
<question>: What is the total number of picks for Calgary College? <context>: CREATE TABLE table_name_30 (pick__number VARCHAR, college VARCHAR) <answer>: SELECT COUNT(pick__number) FROM table_name_30 WHERE college = "calgary"
58,696
<question>: Who was the home team when the record was 2-3? <context>: CREATE TABLE table_name_38 (home VARCHAR, record VARCHAR) <answer>: SELECT home FROM table_name_38 WHERE record = "2-3"
58,697
<question>: What was the record on April 10? <context>: CREATE TABLE table_name_75 (record VARCHAR, date VARCHAR) <answer>: SELECT record FROM table_name_75 WHERE date = "april 10"
58,698
<question>: What spacecraft had an EVA that ended at 17:28? <context>: CREATE TABLE table_name_66 (spacecraft VARCHAR, end_time VARCHAR) <answer>: SELECT spacecraft FROM table_name_66 WHERE end_time = "17:28"
58,699
<question>: What crew's EVA started on 20 February 20:09? <context>: CREATE TABLE table_name_33 (crew VARCHAR, start_date_time VARCHAR) <answer>: SELECT crew FROM table_name_33 WHERE start_date_time = "20 february 20:09"