question
stringlengths
12
244
create_table_statement
stringlengths
97
895
sql_query
stringlengths
27
479
wiki_sql_table_id
stringlengths
8
14
Which English has German of leben?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "english" FROM "effects_of_the_high_german_consonant_shi" WHERE "german"='leben';
2-181498-2
Which Plautdietsch has Dutch of maken?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "plautdietsch" FROM "effects_of_the_high_german_consonant_shi" WHERE "dutch"='maken';
2-181498-2
Which English has Dutch of tong?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "english" FROM "effects_of_the_high_german_consonant_shi" WHERE "dutch"='tong';
2-181498-2
Which English has Plautdietsch of aupel?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "english" FROM "effects_of_the_high_german_consonant_shi" WHERE "plautdietsch"='aupel';
2-181498-2
Which Plautdietsch has Low German of doon?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "plautdietsch" FROM "effects_of_the_high_german_consonant_shi" WHERE "low_german"='doon';
2-181498-2
Which English has Dutch of maken?
CREATE TABLE "effects_of_the_high_german_consonant_shi" ( "german" text, "low_german" text, "plautdietsch" text, "dutch" text, "english" text );
SELECT "english" FROM "effects_of_the_high_german_consonant_shi" WHERE "dutch"='maken';
2-181498-2
Can you tell me the Country that has the Year(s) Won of 1988?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT "country" FROM "missed_the_cut" WHERE "year_s_won"='1988';
2-18324411-2
Can you tell me the average Total that has the To par smaller than 10, and the Country of south korea?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT AVG("total") FROM "missed_the_cut" WHERE "to_par"<10 AND "country"='south korea';
2-18324411-2
Can you tell me the Year(s) Won that has the Country of united states, and the Total larger than 152?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT "year_s_won" FROM "missed_the_cut" WHERE "country"='united states' AND "total">152;
2-18324411-2
Can you tell me the Year(s) Won that has the To par larger than 5, and the Total smaller than 155, and the Country of united states?
CREATE TABLE "missed_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real );
SELECT "year_s_won" FROM "missed_the_cut" WHERE "to_par">5 AND "total"<155 AND "country"='united states';
2-18324411-2
What golfer has a greater than 293 total, and won in 1989?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "player" FROM "made_the_cut" WHERE "total">293 AND "year_s_won"='1989';
2-18036726-2
What is the maximum total when the To par is +3?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT MAX("total") FROM "made_the_cut" WHERE "to_par"='+3';
2-18036726-2
What golfer has 281 as their total?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" text, "finish" text );
SELECT "player" FROM "made_the_cut" WHERE "total"=281;
2-18036726-2
What is the highest capacity of the tsentral stadium (batumi)?
CREATE TABLE "pirveli_liga_2011_12" ( "clubs" text, "position_2010_11" text, "region" text, "stadium" text, "capacity" real );
SELECT MAX("capacity") FROM "pirveli_liga_2011_12" WHERE "stadium"='tsentral stadium (batumi)';
2-18009885-2
What clubs are in the evgrapi shevardnadze stadium?
CREATE TABLE "pirveli_liga_2011_12" ( "clubs" text, "position_2010_11" text, "region" text, "stadium" text, "capacity" real );
SELECT "clubs" FROM "pirveli_liga_2011_12" WHERE "stadium"='evgrapi shevardnadze stadium';
2-18009885-2
What is the stadium of the zooveti tbilisi club?
CREATE TABLE "pirveli_liga_2011_12" ( "clubs" text, "position_2010_11" text, "region" text, "stadium" text, "capacity" real );
SELECT "stadium" FROM "pirveli_liga_2011_12" WHERE "clubs"='zooveti tbilisi';
2-18009885-2
What college had Jim Leonhard Category:articles with hcards?
CREATE TABLE "notable_undrafted_players" ( "original_nfl_team" text, "player" text, "pos" text, "college" text, "conf" text );
SELECT "college" FROM "notable_undrafted_players" WHERE "player"='jim leonhard category:articles with hcards';
2-1773067-4
Who's the original team for Rashied Davis Category:articles with hcards?
CREATE TABLE "notable_undrafted_players" ( "original_nfl_team" text, "player" text, "pos" text, "college" text, "conf" text );
SELECT "original_nfl_team" FROM "notable_undrafted_players" WHERE "player"='rashied davis category:articles with hcards';
2-1773067-4
What college has Lance Moore Category:articles with hcards?
CREATE TABLE "notable_undrafted_players" ( "original_nfl_team" text, "player" text, "pos" text, "college" text, "conf" text );
SELECT "college" FROM "notable_undrafted_players" WHERE "player"='lance moore category:articles with hcards';
2-1773067-4
What's the original NFL team when the POS is S and college is Georgia Tech?
CREATE TABLE "notable_undrafted_players" ( "original_nfl_team" text, "player" text, "pos" text, "college" text, "conf" text );
SELECT "original_nfl_team" FROM "notable_undrafted_players" WHERE "pos"='s' AND "college"='georgia tech';
2-1773067-4
What is the date of birth of Oliver Buell's child?
CREATE TABLE "allegations_of_children_born_to_alleged_" ( "child" text, "date_of_birth" text, "mother" text, "father" text, "dna_testing_status" text );
SELECT "date_of_birth" FROM "allegations_of_children_born_to_alleged_" WHERE "child"='oliver buell';
2-18179144-2
Who is the father that was born on January 2, 1842?
CREATE TABLE "allegations_of_children_born_to_alleged_" ( "child" text, "date_of_birth" text, "mother" text, "father" text, "dna_testing_status" text );
SELECT "father" FROM "allegations_of_children_born_to_alleged_" WHERE "date_of_birth"='january 2, 1842';
2-18179144-2
Who is the father of the child whose mother is Presendia Huntington Buell?
CREATE TABLE "allegations_of_children_born_to_alleged_" ( "child" text, "date_of_birth" text, "mother" text, "father" text, "dna_testing_status" text );
SELECT "father" FROM "allegations_of_children_born_to_alleged_" WHERE "mother"='presendia huntington buell';
2-18179144-2
What was the place in Germany with a score of 69-69=138?
CREATE TABLE "second_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "place" FROM "second_round" WHERE "score"='69-69=138' AND "country"='germany';
2-18017216-5
What is the country that has a place of T6 that Eduardo Romero plays for?
CREATE TABLE "second_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "second_round" WHERE "place"='t6' AND "player"='eduardo romero';
2-18017216-5
What is the to par for Scotland?
CREATE TABLE "second_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "second_round" WHERE "country"='scotland';
2-18017216-5
What is the score for Darren Clarke?
CREATE TABLE "second_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "second_round" WHERE "player"='darren clarke';
2-18017216-5
What is the country that has a place of T6, a socre of 69-69=138, and where Niclas Fasth played?
CREATE TABLE "second_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "country" FROM "second_round" WHERE "place"='t6' AND "score"='69-69=138' AND "player"='niclas fasth';
2-18017216-5
What's the total losses that has more than 12 wins and 1017 against?
CREATE TABLE "2009_ladder_and_finals" ( "benalla_dfl" text, "wins" real, "losses" real, "draws" real, "byes" real, "against" real );
SELECT COUNT("losses") FROM "2009_ladder_and_finals" WHERE "against"=1017 AND "wins">12;
2-17982145-3
What's the most wins of Tatong?
CREATE TABLE "2009_ladder_and_finals" ( "benalla_dfl" text, "wins" real, "losses" real, "draws" real, "byes" real, "against" real );
SELECT MAX("wins") FROM "2009_ladder_and_finals" WHERE "benalla_dfl"='tatong';
2-17982145-3
What's the most number of byes for Longwood having less than 1944 against?
CREATE TABLE "2009_ladder_and_finals" ( "benalla_dfl" text, "wins" real, "losses" real, "draws" real, "byes" real, "against" real );
SELECT MAX("byes") FROM "2009_ladder_and_finals" WHERE "benalla_dfl"='longwood' AND "against"<1944;
2-17982145-3
What is the smallest number against when the draws are less than 0?
CREATE TABLE "2009_ladder_and_finals" ( "benalla_dfl" text, "wins" real, "losses" real, "draws" real, "byes" real, "against" real );
SELECT MIN("against") FROM "2009_ladder_and_finals" WHERE "draws"<0;
2-17982145-3
What are the average byes of Bonnie Doon having more than 16 wins?
CREATE TABLE "2009_ladder_and_finals" ( "benalla_dfl" text, "wins" real, "losses" real, "draws" real, "byes" real, "against" real );
SELECT AVG("byes") FROM "2009_ladder_and_finals" WHERE "benalla_dfl"='bonnie doon' AND "wins">16;
2-17982145-3
What is Rovigo's Club?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT "club" FROM "girone_b" WHERE "city"='rovigo';
2-17702363-2
What 2007-08 had A.S. Gubbio 1910 Club?
CREATE TABLE "girone_b" ( "club" text, "city" text, "stadium" text, "capacity" real, "2007_08_season" text );
SELECT "2007_08_season" FROM "girone_b" WHERE "club"='a.s. gubbio 1910';
2-17702363-2
Which country had a total of 295?
CREATE TABLE "made_the_cut" ( "player" text, "country" text, "year_s_won" text, "total" real, "to_par" real, "finish" text );
SELECT "country" FROM "made_the_cut" WHERE "total"=295;
2-17991748-2
On what Date is West Ham United the Home team?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "third_round_proper" WHERE "home_team"='west ham united';
2-17751851-3
On what Date was the Score 4–1?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "third_round_proper" WHERE "score"='4–1';
2-17751851-3
What is the Away team of Tie no 1?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "away_team" FROM "third_round_proper" WHERE "tie_no"='1';
2-17751851-3
What is the Tie no when Crystal Palace is the Away team?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "tie_no" FROM "third_round_proper" WHERE "away_team"='crystal palace';
2-17751851-3
What is the Home team of Tie no 11?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "third_round_proper" WHERE "tie_no"='11';
2-17751851-3
On what Date is West Ham United the Home team?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "third_round_proper" WHERE "home_team"='west ham united';
2-17751851-3
What kind of Week 4 has a Week 1 of sheila levell?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_4" FROM "2004" WHERE "week_1"='sheila levell';
2-17993994-5
What kind of Week 2 has a Week 4 of araya robinson?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_2" FROM "2004" WHERE "week_4"='araya robinson';
2-17993994-5
What kind of Week 4 has a Week 2 of tiffany logan?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_4" FROM "2004" WHERE "week_2"='tiffany logan';
2-17993994-5
what kind of Week 5 that has a Week 1 of mandy ashford?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_5" FROM "2004" WHERE "week_1"='mandy ashford';
2-17993994-5
What kind of Week 2 that has a Week 1 of mandy ashford?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_2" FROM "2004" WHERE "week_1"='mandy ashford';
2-17993994-5
What Week 2 that has a Week 1 of mackenzie ryan?
CREATE TABLE "2004" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_2" FROM "2004" WHERE "week_1"='mackenzie ryan';
2-17993994-5
What is the name when weight shows head coach: Aleksandr Kabanov?
CREATE TABLE "russia" ( "name" text, "pos" text, "height" text, "weight" text, "date_of_birth" text, "club" text );
SELECT "name" FROM "russia" WHERE "weight"='head coach: aleksandr kabanov';
2-17759945-10
What is the park & ride lot for the Temple Square station?
CREATE TABLE "stations" ( "station_name" text, "opening_year" text, "municipality" text, "park_and_ride_lot" text, "free_fare_zone" text );
SELECT "park_and_ride_lot" FROM "stations" WHERE "station_name"='temple square';
2-18035854-1
For the Temple Square station, what is the park & ride lot name?
CREATE TABLE "stations" ( "station_name" text, "opening_year" text, "municipality" text, "park_and_ride_lot" text, "free_fare_zone" text );
SELECT "park_and_ride_lot" FROM "stations" WHERE "station_name"='temple square';
2-18035854-1
Which station was opened in 2013, with no park & ride lot?
CREATE TABLE "stations" ( "station_name" text, "opening_year" text, "municipality" text, "park_and_ride_lot" text, "free_fare_zone" text );
SELECT "station_name" FROM "stations" WHERE "opening_year"='2013' AND "park_and_ride_lot"='no';
2-18035854-1
Where is the free fare zone for the Arena station?
CREATE TABLE "stations" ( "station_name" text, "opening_year" text, "municipality" text, "park_and_ride_lot" text, "free_fare_zone" text );
SELECT "free_fare_zone" FROM "stations" WHERE "station_name"='arena';
2-18035854-1
Calvin Abueva Calvin Abueva had what statistic?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "statistic" FROM "individual_single_game_records" WHERE "name"='calvin abueva calvin abueva';
2-18127869-9
When the opposing team was SSC-R what was the statistic?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "statistic" FROM "individual_single_game_records" WHERE "opponent"='ssc-r';
2-18127869-9
When SSC-R is the opponent what is the name?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "name" FROM "individual_single_game_records" WHERE "opponent"='ssc-r';
2-18127869-9
With a statistic of most points, what is the stage?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "stage" FROM "individual_single_game_records" WHERE "statistic"='most points';
2-18127869-9
When the opposing team was CSB UPHDS what was the total?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "total" FROM "individual_single_game_records" WHERE "opponent"='csb uphds';
2-18127869-9
Who had the statistic of most assists?
CREATE TABLE "individual_single_game_records" ( "statistic" text, "name" text, "total" text, "school" text, "opponent" text, "stage" text );
SELECT "name" FROM "individual_single_game_records" WHERE "statistic"='most assists';
2-18127869-9
What is Swimmer, when Year is less than 2011, and when Time is "53.06"?
CREATE TABLE "records" ( "event" text, "time" text, "swimmer" text, "school" text, "year" real );
SELECT "swimmer" FROM "records" WHERE "year"<2011 AND "time"='53.06';
2-17691430-2
What is School, when Event is "100 Backstroke"?
CREATE TABLE "records" ( "event" text, "time" text, "swimmer" text, "school" text, "year" real );
SELECT "school" FROM "records" WHERE "event"='100 backstroke';
2-17691430-2
What is School, when Year is less than 2013, and when Event is "100 Breaststroke"?
CREATE TABLE "records" ( "event" text, "time" text, "swimmer" text, "school" text, "year" real );
SELECT "school" FROM "records" WHERE "year"<2013 AND "event"='100 breaststroke';
2-17691430-2
What is Time, when Year is greater than 2011, and when Event is "800 Freestyle Relay"?
CREATE TABLE "records" ( "event" text, "time" text, "swimmer" text, "school" text, "year" real );
SELECT "time" FROM "records" WHERE "year">2011 AND "event"='800 freestyle relay';
2-17691430-2
What is Year, when Time is "1:47.55"?
CREATE TABLE "records" ( "event" text, "time" text, "swimmer" text, "school" text, "year" real );
SELECT "year" FROM "records" WHERE "time"='1:47.55';
2-17691430-2
What is the Surface of the match against Yaroslava Shvedova?
CREATE TABLE "singles_11_5_6" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "surface" FROM "singles_11_5_6" WHERE "opponent_in_the_final"='yaroslava shvedova';
2-18058018-8
What is the Surface of the match with a Score in the final of 5–7, 6–7 (2–7)?
CREATE TABLE "singles_11_5_6" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "surface" FROM "singles_11_5_6" WHERE "score_in_the_final"='5–7, 6–7 (2–7)';
2-18058018-8
Who is the Opponent in the final of the match played on Clay Surface with a Score in the final of 4–6, 3–6?
CREATE TABLE "singles_11_5_6" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "opponent_in_the_final" FROM "singles_11_5_6" WHERE "surface"='clay' AND "score_in_the_final"='4–6, 3–6';
2-18058018-8
On what Date is the match played on Clay Surface with a Score in the final of 6–2, 7–5?
CREATE TABLE "singles_11_5_6" ( "outcome" text, "date" text, "tournament" text, "surface" text, "opponent_in_the_final" text, "score_in_the_final" text );
SELECT "date" FROM "singles_11_5_6" WHERE "surface"='clay' AND "score_in_the_final"='6–2, 7–5';
2-18058018-8
WHAT IS THE NHL TEAM OF FINLAND?
CREATE TABLE "draft_picks" ( "round" real, "player" text, "nationality" text, "nhl_team" text, "college_junior_club_team_league" text );
SELECT "nhl_team" FROM "draft_picks" WHERE "nationality"='finland';
2-17792035-14
What's the to Iran with fewer than 9 survivors, more than 3 damaged, and an ussr an-26 aircraft?
CREATE TABLE "iraqi_air_force_strength_at_start_of_war" ( "aircraft" text, "1990" real, "destroyed" real, "damaged" real, "to_iran" real, "survived" real );
SELECT AVG("to_iran") FROM "iraqi_air_force_strength_at_start_of_war" WHERE "survived"<9 AND "aircraft"='ussr an-26' AND "damaged">3;
2-1817852-1
What's the average destroyed with a 1990 over 12, more than 1 damaged, 6 survivors, and a to Iran less than 4?
CREATE TABLE "iraqi_air_force_strength_at_start_of_war" ( "aircraft" text, "1990" real, "destroyed" real, "damaged" real, "to_iran" real, "survived" real );
SELECT AVG("destroyed") FROM "iraqi_air_force_strength_at_start_of_war" WHERE "1990">12 AND "damaged">1 AND "to_iran"<4 AND "survived"=6;
2-1817852-1
What's the average survived with a to Iran less than 1, more than 1 destroyed, and a brazil tucano aircraft?
CREATE TABLE "iraqi_air_force_strength_at_start_of_war" ( "aircraft" text, "1990" real, "destroyed" real, "damaged" real, "to_iran" real, "survived" real );
SELECT AVG("survived") FROM "iraqi_air_force_strength_at_start_of_war" WHERE "to_iran"<1 AND "aircraft"='brazil tucano' AND "destroyed">1;
2-1817852-1
What home team played when there was an attendance of 568?
CREATE TABLE "replays" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "home_team" FROM "replays" WHERE "attendance"='568';
2-18054397-18
What away team did Horsham play?
CREATE TABLE "replays" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "away_team" FROM "replays" WHERE "home_team"='horsham';
2-18054397-18
What home team played Hinckley United?
CREATE TABLE "replays" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "attendance" text );
SELECT "home_team" FROM "replays" WHERE "away_team"='hinckley united';
2-18054397-18
How many points have an Engine of ferrari tipo 033 v6 tc, and a Year larger than 1987?
CREATE TABLE "complete_formula_one_results" ( "year" real, "team_chassis" text, "engine" text, "tyres" text, "pts" real );
SELECT SUM("pts") FROM "complete_formula_one_results" WHERE "engine"='ferrari tipo 033 v6 tc' AND "year">1987;
2-17748094-1
Which Team/Chassis has a Year larger than 1987?
CREATE TABLE "complete_formula_one_results" ( "year" real, "team_chassis" text, "engine" text, "tyres" text, "pts" real );
SELECT "team_chassis" FROM "complete_formula_one_results" WHERE "year">1987;
2-17748094-1
How many points have an Engine of ferrari tipo 033 v6 tc, and a Year smaller than 1987?
CREATE TABLE "complete_formula_one_results" ( "year" real, "team_chassis" text, "engine" text, "tyres" text, "pts" real );
SELECT MAX("pts") FROM "complete_formula_one_results" WHERE "engine"='ferrari tipo 033 v6 tc' AND "year"<1987;
2-17748094-1
Which Team/Chassis has less than 65 points?
CREATE TABLE "complete_formula_one_results" ( "year" real, "team_chassis" text, "engine" text, "tyres" text, "pts" real );
SELECT "team_chassis" FROM "complete_formula_one_results" WHERE "pts"<65;
2-17748094-1
What is the score if the Tie no is 32?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "score" FROM "third_round_proper" WHERE "tie_no"='32';
2-17751827-3
What is the Tie no for Scunthorpe United?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "tie_no" FROM "third_round_proper" WHERE "home_team"='scunthorpe united';
2-17751827-3
Which home team played against Stoke City?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "home_team" FROM "third_round_proper" WHERE "away_team"='stoke city';
2-17751827-3
Which away team has a Tie no of 14?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "away_team" FROM "third_round_proper" WHERE "tie_no"='14';
2-17751827-3
On what date does Watford have a Tie no of 2?
CREATE TABLE "third_round_proper" ( "tie_no" text, "home_team" text, "score" text, "away_team" text, "date" text );
SELECT "date" FROM "third_round_proper" WHERE "home_team"='watford' AND "tie_no"='2';
2-17751827-3
Which L1 Cache has an FSB speed of 800mhz and a clock speed of 1.2ghz?
CREATE TABLE "ultra_low_voltage_processors" ( "model_number" text, "clock_speed" text, "l1_cache" text, "l2_cache" text, "fsb_speed" text, "clock_multiplier" text, "idle_power" text, "socket" text, "cores" real, "release_date" text );
SELECT "l1_cache" FROM "ultra_low_voltage_processors" WHERE "fsb_speed"='800mhz' AND "clock_speed"='1.2ghz';
2-17689921-3
What is the score of Player Tom Kite?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "score" FROM "third_round" WHERE "player"='tom kite';
2-18059698-6
What is the To Par that has a 69-69-73=211 score?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "third_round" WHERE "score"='69-69-73=211';
2-18059698-6
What is the Top that has a 66-71-66=203 score and a place of t1?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "to_par" FROM "third_round" WHERE "place"='t1' AND "score"='66-71-66=203';
2-18059698-6
What player has a To Par of +1 with a score of 71-67-73=211?
CREATE TABLE "third_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text );
SELECT "player" FROM "third_round" WHERE "to_par"='+1' AND "score"='71-67-73=211';
2-18059698-6
Which Player has a Score of 72-68-78-71=289?
CREATE TABLE "final_round" ( "place" text, "player" text, "country" text, "score" text, "to_par" text, "money" real );
SELECT "player" FROM "final_round" WHERE "score"='72-68-78-71=289';
2-18009787-7
What is the Place for the 66 Score?
CREATE TABLE "first_round" ( "place" text, "player" text, "country" text, "score" real, "to_par" text );
SELECT "place" FROM "first_round" WHERE "score"=66;
2-18096431-4
What Country has a 67 score by Phil Mickelson?
CREATE TABLE "first_round" ( "place" text, "player" text, "country" text, "score" real, "to_par" text );
SELECT "country" FROM "first_round" WHERE "score"=67 AND "player"='phil mickelson';
2-18096431-4
When Cathi O'Malley was featured in Week 3, who was the cyber girl for Week 5?
CREATE TABLE "2002" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_5" FROM "2002" WHERE "week_3"='cathi o''malley';
2-17993994-3
When Star Zemba was featured in Week 3, who was the cyber girl for Week 2?
CREATE TABLE "2002" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_2" FROM "2002" WHERE "week_3"='star zemba';
2-17993994-3
When Heather Christensen was featured in Week 2, who was the cyber girl for Week 3?
CREATE TABLE "2002" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_3" FROM "2002" WHERE "week_2"='heather christensen';
2-17993994-3
When Audra Lynn was featured in Week 2, who was the cyber girl for Week 5?
CREATE TABLE "2002" ( "week_1" text, "week_2" text, "week_3" text, "week_4" text, "week_5" text );
SELECT "week_5" FROM "2002" WHERE "week_2"='audra lynn';
2-17993994-3
What is Agg., when Team 1 is "Tirana"?
CREATE TABLE "qualifying_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "agg" FROM "qualifying_round" WHERE "team_1"='tirana';
2-18210406-1
What is 2nd Leg, when Team 2 is "Dunaferr"?
CREATE TABLE "qualifying_round" ( "team_1" text, "agg" text, "team_2" text, "1st_leg" text, "2nd_leg" text );
SELECT "2nd_leg" FROM "qualifying_round" WHERE "team_2"='dunaferr';
2-18210406-1
What is the elimination number for the time 13:43?
CREATE TABLE "six_man_elimination_tag_team_match" ( "elimination" text, "wrestler" text, "eliminated_by" text, "elimination_move" text, "time" text );
SELECT "elimination" FROM "six_man_elimination_tag_team_match" WHERE "time"='13:43';
2-17692986-2
What Elimination number is listed againt Eliminated by Sonjay Dutt?
CREATE TABLE "six_man_elimination_tag_team_match" ( "elimination" text, "wrestler" text, "eliminated_by" text, "elimination_move" text, "time" text );
SELECT "elimination" FROM "six_man_elimination_tag_team_match" WHERE "eliminated_by"='sonjay dutt';
2-17692986-2