Unnamed: 0
int64
0
60k
text
stringlengths
109
1.06k
58,000
<question>: How many votes did Kerry get in the county that gave Bush 189,605 votes? <context>: CREATE TABLE table_name_46 (kerry_number INTEGER, bush_number VARCHAR) <answer>: SELECT AVG(kerry_number) FROM table_name_46 WHERE bush_number = 189 OFFSET 605
58,001
<question>: How many votes went to other candidates in the county that gave 1.9% votes to them, and 160,390 total votes to Bush? <context>: CREATE TABLE table_name_12 (others_number INTEGER, others_percentage VARCHAR, bush_number VARCHAR) <answer>: SELECT MIN(others_number) FROM table_name_12 WHERE others_percentage = "1.9%" AND bush_number < 160 OFFSET 390
58,002
<question>: How many Seats 2005 has a Percentage in/de-crease of 50.0%, and a Governorate of dhi qar governorate, and a In/de-creased by larger than 6? <context>: CREATE TABLE table_name_14 (seats_2005 INTEGER, in_de_creased_by VARCHAR, percentage_in_de_crease VARCHAR, governorate VARCHAR) <answer>: SELECT SUM(seats_2005) FROM table_name_14 WHERE percentage_in_de_crease = "50.0%" AND governorate = "dhi qar governorate" AND in_de_creased_by > 6
58,003
<question>: Name the lowest Seats 2010 which has Seats 2005 smaller than 9, and a Governorate of al muthanna governorate, and an In/de-creased by larger than 2? <context>: CREATE TABLE table_name_46 (seats_2010 INTEGER, in_de_creased_by VARCHAR, seats_2005 VARCHAR, governorate VARCHAR) <answer>: SELECT MIN(seats_2010) FROM table_name_46 WHERE seats_2005 < 9 AND governorate = "al muthanna governorate" AND in_de_creased_by > 2
58,004
<question>: Name the average In/de-creased by which has a Governorate of al anbar governorate, and Seats 2005 smaller than 9? <context>: CREATE TABLE table_name_66 (in_de_creased_by INTEGER, governorate VARCHAR, seats_2005 VARCHAR) <answer>: SELECT AVG(in_de_creased_by) FROM table_name_66 WHERE governorate = "al anbar governorate" AND seats_2005 < 9
58,005
<question>: Name the highest In/de-creased which has a Percentage in/de-crease of 100%, and Seats 2010 larger than 8? <context>: CREATE TABLE table_name_34 (in_de_creased_by INTEGER, percentage_in_de_crease VARCHAR, seats_2010 VARCHAR) <answer>: SELECT MAX(in_de_creased_by) FROM table_name_34 WHERE percentage_in_de_crease = "100%" AND seats_2010 > 8
58,006
<question>: What player has a score larger than 67? <context>: CREATE TABLE table_name_94 (player VARCHAR, score INTEGER) <answer>: SELECT player FROM table_name_94 WHERE score > 67
58,007
<question>: What is the celtics record after game 33 when they score of the game was 111-108? <context>: CREATE TABLE table_name_21 (record VARCHAR, game VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_21 WHERE game > 33 AND score = "111-108"
58,008
<question>: Which Rider is grid 7? <context>: CREATE TABLE table_name_12 (rider VARCHAR, grid VARCHAR) <answer>: SELECT rider FROM table_name_12 WHERE grid = 7
58,009
<question>: What is the total number of laps done by Massimo Roccoli when his grid was smaller than 4? <context>: CREATE TABLE table_name_45 (laps VARCHAR, rider VARCHAR, grid VARCHAR) <answer>: SELECT COUNT(laps) FROM table_name_45 WHERE rider = "massimo roccoli" AND grid < 4
58,010
<question>: What is the time recorded by David Salom on his Yamaha yzf-r6 when his grid was larger than 1? <context>: CREATE TABLE table_name_81 (time VARCHAR, rider VARCHAR, bike VARCHAR, grid VARCHAR) <answer>: SELECT time FROM table_name_81 WHERE bike = "yamaha yzf-r6" AND grid > 1 AND rider = "david salom"
58,011
<question>: What is Stop No., when Destination is [2778] Claisebrook Station Platforms? <context>: CREATE TABLE table_name_25 (stop_no VARCHAR, destination VARCHAR) <answer>: SELECT stop_no FROM table_name_25 WHERE destination = "[2778] claisebrook station platforms"
58,012
<question>: What is Stopping Pattern, when Platform is 4? <context>: CREATE TABLE table_name_92 (stopping_pattern VARCHAR, platform VARCHAR) <answer>: SELECT stopping_pattern FROM table_name_92 WHERE platform = "4"
58,013
<question>: What is Stop No., when Destination is Perth, and when Line is Midland? <context>: CREATE TABLE table_name_23 (stop_no VARCHAR, destination VARCHAR, line VARCHAR) <answer>: SELECT stop_no FROM table_name_23 WHERE destination = "perth" AND line = "midland"
58,014
<question>: Which coach founded the Western Strikers team after 1963? <context>: CREATE TABLE table_name_58 (coach VARCHAR, founded VARCHAR, team VARCHAR) <answer>: SELECT coach FROM table_name_58 WHERE founded > 1963 AND team = "western strikers"
58,015
<question>: Who is the coach located in Oakden? <context>: CREATE TABLE table_name_69 (coach VARCHAR, location VARCHAR) <answer>: SELECT coach FROM table_name_69 WHERE location = "oakden"
58,016
<question>: Which team has coach John Kosmina? <context>: CREATE TABLE table_name_82 (team VARCHAR, coach VARCHAR) <answer>: SELECT team FROM table_name_82 WHERE coach = "john kosmina"
58,017
<question>: Who is the coach for the Adelaide Galaxy team? <context>: CREATE TABLE table_name_95 (coach VARCHAR, team VARCHAR) <answer>: SELECT coach FROM table_name_95 WHERE team = "adelaide galaxy"
58,018
<question>: Count the average Wins which has a Class of 250cc, and a Year of 1972? <context>: CREATE TABLE table_name_1 (wins INTEGER, class VARCHAR, year VARCHAR) <answer>: SELECT AVG(wins) FROM table_name_1 WHERE class = "250cc" AND year = 1972
58,019
<question>: Name the lowest Wins which has Points of 28, and a Year smaller than 1972? <context>: CREATE TABLE table_name_94 (wins INTEGER, points VARCHAR, year VARCHAR) <answer>: SELECT MIN(wins) FROM table_name_94 WHERE points = 28 AND year < 1972
58,020
<question>: Name the Team which has Points larger than 9, and a Year larger than 1971, and a Class of 250cc? <context>: CREATE TABLE table_name_12 (team VARCHAR, class VARCHAR, points VARCHAR, year VARCHAR) <answer>: SELECT team FROM table_name_12 WHERE points > 9 AND year > 1971 AND class = "250cc"
58,021
<question>: Name the Wins which has a Class of 350cc, and a Year smaller than 1973? <context>: CREATE TABLE table_name_42 (wins INTEGER, class VARCHAR, year VARCHAR) <answer>: SELECT SUM(wins) FROM table_name_42 WHERE class = "350cc" AND year < 1973
58,022
<question>: How many Points has Wins larger than 0? <context>: CREATE TABLE table_name_24 (points VARCHAR, wins INTEGER) <answer>: SELECT COUNT(points) FROM table_name_24 WHERE wins > 0
58,023
<question>: What kind of Spike has a Name of mia jerkov category:articles with hcards? <context>: CREATE TABLE table_name_27 (spike VARCHAR, name VARCHAR) <answer>: SELECT spike FROM table_name_27 WHERE name = "mia jerkov category:articles with hcards"
58,024
<question>: Name the 2013 club which has a Name of ana grbac category:articles with hcards? <context>: CREATE TABLE table_name_62 (name VARCHAR) <answer>: SELECT 2013 AS _club FROM table_name_62 WHERE name = "ana grbac category:articles with hcards"
58,025
<question>: Name the Spike which has a Name of senna ušić-jogunica category:articles with hcards? <context>: CREATE TABLE table_name_84 (spike VARCHAR, name VARCHAR) <answer>: SELECT spike FROM table_name_84 WHERE name = "senna ušić-jogunica category:articles with hcards"
58,026
<question>: What was the Overall number for the player with a position of C and a round greater than 7? <context>: CREATE TABLE table_name_58 (overall INTEGER, round VARCHAR, position VARCHAR) <answer>: SELECT SUM(overall) FROM table_name_58 WHERE round > 7 AND position = "c"
58,027
<question>: What was the Overall number that is the lowest, and has a pick greater than 9? <context>: CREATE TABLE table_name_86 (overall INTEGER, pick INTEGER) <answer>: SELECT MIN(overall) FROM table_name_86 WHERE pick > 9
58,028
<question>: Which team after 2008, with less than 2 podium finished and more than 0 FLAPS, had the lowest numberof races? <context>: CREATE TABLE table_name_67 (races INTEGER, season VARCHAR, podiums VARCHAR, flaps VARCHAR) <answer>: SELECT MIN(races) FROM table_name_67 WHERE podiums < 2 AND flaps > 0 AND season > 2008
58,029
<question>: what is the points when the entrant is brabham racing organisation, the year is 1964 and the chassis is brabham bt7? <context>: CREATE TABLE table_name_17 (points VARCHAR, chassis VARCHAR, entrant VARCHAR, year VARCHAR) <answer>: SELECT points FROM table_name_17 WHERE entrant = "brabham racing organisation" AND year = 1964 AND chassis = "brabham bt7"
58,030
<question>: who is the entrant when the points is 42 (45) and the chassis is brabham bt20? <context>: CREATE TABLE table_name_25 (entrant VARCHAR, points VARCHAR, chassis VARCHAR) <answer>: SELECT entrant FROM table_name_25 WHERE points = "42 (45)" AND chassis = "brabham bt20"
58,031
<question>: how many times is the chassis brabham bt33? <context>: CREATE TABLE table_name_79 (year VARCHAR, chassis VARCHAR) <answer>: SELECT COUNT(year) FROM table_name_79 WHERE chassis = "brabham bt33"
58,032
<question>: Who was the winner in 2013? <context>: CREATE TABLE table_name_48 (stage VARCHAR, year VARCHAR) <answer>: SELECT stage AS winner FROM table_name_48 WHERE year = 2013
58,033
<question>: Who was the opponent at Ullevi? <context>: CREATE TABLE table_name_22 (opponents VARCHAR, venue VARCHAR) <answer>: SELECT opponents FROM table_name_22 WHERE venue = "ullevi"
58,034
<question>: When was Göteborg the opponent with a score of 3-1? <context>: CREATE TABLE table_name_9 (date VARCHAR, opponents VARCHAR, score VARCHAR) <answer>: SELECT date FROM table_name_9 WHERE opponents = "göteborg" AND score = "3-1"
58,035
<question>: Which Finish had a To par of +10? <context>: CREATE TABLE table_name_89 (finish VARCHAR, to_par VARCHAR) <answer>: SELECT finish FROM table_name_89 WHERE to_par = "+10"
58,036
<question>: Which years was there a To par of +1? <context>: CREATE TABLE table_name_45 (year_s__won VARCHAR, to_par VARCHAR) <answer>: SELECT year_s__won FROM table_name_45 WHERE to_par = "+1"
58,037
<question>: What were Sébastien Bourdais' lowest points when there were less than 63 laps? <context>: CREATE TABLE table_name_16 (points INTEGER, driver VARCHAR, laps VARCHAR) <answer>: SELECT MIN(points) FROM table_name_16 WHERE driver = "sébastien bourdais" AND laps < 63
58,038
<question>: What is Position, when Event is 60 m, and when Venue is Budapest , Hungary? <context>: CREATE TABLE table_name_40 (position VARCHAR, event VARCHAR, venue VARCHAR) <answer>: SELECT position FROM table_name_40 WHERE event = "60 m" AND venue = "budapest , hungary"
58,039
<question>: What is Event, when Position is 6th, and when Year is after 2006? <context>: CREATE TABLE table_name_97 (event VARCHAR, position VARCHAR, year VARCHAR) <answer>: SELECT event FROM table_name_97 WHERE position = "6th" AND year > 2006
58,040
<question>: What is the average Year, when Position is 9th, when Event is 100 m, and when Venue is Munich, Germany? <context>: CREATE TABLE table_name_66 (year INTEGER, venue VARCHAR, position VARCHAR, event VARCHAR) <answer>: SELECT AVG(year) FROM table_name_66 WHERE position = "9th" AND event = "100 m" AND venue = "munich, germany"
58,041
<question>: What is the Event, when Year is 2002, and when Competition is European Indoor Championships? <context>: CREATE TABLE table_name_6 (event VARCHAR, year VARCHAR, competition VARCHAR) <answer>: SELECT event FROM table_name_6 WHERE year = 2002 AND competition = "european indoor championships"
58,042
<question>: What is Nation, when Bronze is 1, when Gold is greater than 0, and when Rank is 2? <context>: CREATE TABLE table_name_11 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, gold VARCHAR) <answer>: SELECT nation FROM table_name_11 WHERE bronze = 1 AND gold > 0 AND rank = "2"
58,043
<question>: What is the average Total, when Bronze is greater than 0, when Silver is greater than 0, when Gold is greater than 2, and when Nation is Soviet Union? <context>: CREATE TABLE table_name_75 (total INTEGER, nation VARCHAR, gold VARCHAR, bronze VARCHAR, silver VARCHAR) <answer>: SELECT AVG(total) FROM table_name_75 WHERE bronze > 0 AND silver > 0 AND gold > 2 AND nation = "soviet union"
58,044
<question>: What is the average Gold, when Nation is Yugoslavia, and when Silver is greater than 0? <context>: CREATE TABLE table_name_28 (gold INTEGER, nation VARCHAR, silver VARCHAR) <answer>: SELECT AVG(gold) FROM table_name_28 WHERE nation = "yugoslavia" AND silver > 0
58,045
<question>: What is the average Bronze, when Total is 4, and when Silver is less than 2? <context>: CREATE TABLE table_name_36 (bronze INTEGER, total VARCHAR, silver VARCHAR) <answer>: SELECT AVG(bronze) FROM table_name_36 WHERE total = 4 AND silver < 2
58,046
<question>: What is the aggregate for the tie with a team 2 of Irtysh? <context>: CREATE TABLE table_name_58 (agg VARCHAR, team_2 VARCHAR) <answer>: SELECT agg FROM table_name_58 WHERE team_2 = "irtysh"
58,047
<question>: What was the aggregate in the match with a team 1 of Dinamo Minsk? <context>: CREATE TABLE table_name_27 (agg VARCHAR, team_1 VARCHAR) <answer>: SELECT agg FROM table_name_27 WHERE team_1 = "dinamo minsk"
58,048
<question>: What is the Java EE compatibility of the 5.2.4 edition? <context>: CREATE TABLE table_name_97 (java_ee_compatibility VARCHAR, edition VARCHAR) <answer>: SELECT java_ee_compatibility FROM table_name_97 WHERE edition = "5.2.4"
58,049
<question>: What is the release date for Eclipse Foundation? <context>: CREATE TABLE table_name_43 (release_date VARCHAR, vendor VARCHAR) <answer>: SELECT release_date FROM table_name_43 WHERE vendor = "eclipse foundation"
58,050
<question>: Which Oracle Corporation product has a Java EE compatibility of 1.4? <context>: CREATE TABLE table_name_80 (product VARCHAR, java_ee_compatibility VARCHAR, vendor VARCHAR) <answer>: SELECT product FROM table_name_80 WHERE java_ee_compatibility = "1.4" AND vendor = "oracle corporation"
58,051
<question>: Which edition released on 2007-06-07 has a Java EE compatibility of 5? <context>: CREATE TABLE table_name_4 (edition VARCHAR, java_ee_compatibility VARCHAR, release_date VARCHAR) <answer>: SELECT edition FROM table_name_4 WHERE java_ee_compatibility = "5" AND release_date = "2007-06-07"
58,052
<question>: When was Glassfish released? <context>: CREATE TABLE table_name_15 (release_date VARCHAR, product VARCHAR) <answer>: SELECT release_date FROM table_name_15 WHERE product = "glassfish"
58,053
<question>: Which licence has a release date of 2009-08? <context>: CREATE TABLE table_name_23 (license VARCHAR, release_date VARCHAR) <answer>: SELECT license FROM table_name_23 WHERE release_date = "2009-08"
58,054
<question>: WHO ARE THE SEMIFINALISTS FOR TOURNAMENT OF PARIS? <context>: CREATE TABLE table_name_28 (semifinalists VARCHAR, tournament VARCHAR) <answer>: SELECT semifinalists FROM table_name_28 WHERE tournament = "paris"
58,055
<question>: WHO WAS THE SEMIFINALISTS FOR THE HAMBURG TOURNAMENT? <context>: CREATE TABLE table_name_82 (semifinalists VARCHAR, tournament VARCHAR) <answer>: SELECT semifinalists FROM table_name_82 WHERE tournament = "hamburg"
58,056
<question>: Which opponent had a round of SF? <context>: CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR) <answer>: SELECT opponent FROM table_name_45 WHERE round = "sf"
58,057
<question>: What was the result when the opponent was Celtic? <context>: CREATE TABLE table_name_55 (result VARCHAR, opponent VARCHAR) <answer>: SELECT result FROM table_name_55 WHERE opponent = "celtic"
58,058
<question>: What was the result for round r3? <context>: CREATE TABLE table_name_10 (result VARCHAR, round VARCHAR) <answer>: SELECT result FROM table_name_10 WHERE round = "r3"
58,059
<question>: How many times have Central Crossing won the OCC Championship? <context>: CREATE TABLE table_name_96 (occ_championships INTEGER, school VARCHAR) <answer>: SELECT SUM(occ_championships) FROM table_name_96 WHERE school = "central crossing"
58,060
<question>: How many rounds is the fight against Michael Chavez? <context>: CREATE TABLE table_name_46 (round INTEGER, opponent VARCHAR) <answer>: SELECT AVG(round) FROM table_name_46 WHERE opponent = "michael chavez"
58,061
<question>: What date was the match where Daniel Gimeno-Traver's partner was pere riba? <context>: CREATE TABLE table_name_26 (date VARCHAR, partner VARCHAR) <answer>: SELECT date FROM table_name_26 WHERE partner = "pere riba"
58,062
<question>: Ashley Grimes had what to club? <context>: CREATE TABLE table_name_26 (to_club VARCHAR, player VARCHAR) <answer>: SELECT to_club FROM table_name_26 WHERE player = "ashley grimes"
58,063
<question>: Who had a transfer fee of released and played the position of DF? <context>: CREATE TABLE table_name_30 (player VARCHAR, transfer_fee VARCHAR, pos VARCHAR) <answer>: SELECT player FROM table_name_30 WHERE transfer_fee = "released" AND pos = "df"
58,064
<question>: When was the exit date KiatPrawut Saiwaeo who had a transfer fee of released? <context>: CREATE TABLE table_name_50 (exit_date VARCHAR, transfer_fee VARCHAR, player VARCHAR) <answer>: SELECT exit_date FROM table_name_50 WHERE transfer_fee = "released" AND player = "kiatprawut saiwaeo"
58,065
<question>: What was the date that a player went to the club Doncaster Rovers? <context>: CREATE TABLE table_name_14 (exit_date VARCHAR, to_club VARCHAR) <answer>: SELECT exit_date FROM table_name_14 WHERE to_club = "doncaster rovers"
58,066
<question>: Teerasil Dangda who had a to club of released plays what position? <context>: CREATE TABLE table_name_76 (pos VARCHAR, to_club VARCHAR, player VARCHAR) <answer>: SELECT pos FROM table_name_76 WHERE to_club = "released" AND player = "teerasil dangda"
58,067
<question>: What was the average points for someone who has played more than 10? <context>: CREATE TABLE table_name_67 (points INTEGER, played INTEGER) <answer>: SELECT AVG(points) FROM table_name_67 WHERE played > 10
58,068
<question>: What is L2 Cache, when Model Number is Pentium II 350? <context>: CREATE TABLE table_name_54 (l2_cache VARCHAR, model_number VARCHAR) <answer>: SELECT l2_cache FROM table_name_54 WHERE model_number = "pentium ii 350"
58,069
<question>: What is Mult, when Model Number is Pentium II 450? <context>: CREATE TABLE table_name_85 (mult VARCHAR, model_number VARCHAR) <answer>: SELECT mult FROM table_name_85 WHERE model_number = "pentium ii 450"
58,070
<question>: What is Frequency, when Model Number is Pentium II 400? <context>: CREATE TABLE table_name_59 (frequency VARCHAR, model_number VARCHAR) <answer>: SELECT frequency FROM table_name_59 WHERE model_number = "pentium ii 400"
58,071
<question>: What is Socket, when Voltage is 2.0V, and when Model Number is Pentium II 333? <context>: CREATE TABLE table_name_64 (socket VARCHAR, voltage VARCHAR, model_number VARCHAR) <answer>: SELECT socket FROM table_name_64 WHERE voltage = "2.0v" AND model_number = "pentium ii 333"
58,072
<question>: What is Model Number, when Voltage is 2.0V, and when Frequency is 350 mhz? <context>: CREATE TABLE table_name_2 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR) <answer>: SELECT model_number FROM table_name_2 WHERE voltage = "2.0v" AND frequency = "350 mhz"
58,073
<question>: How many attended during the game with a score of 80-94? <context>: CREATE TABLE table_name_52 (attendance INTEGER, score VARCHAR) <answer>: SELECT SUM(attendance) FROM table_name_52 WHERE score = "80-94"
58,074
<question>: What is the U.S. rap ranking in 2000 of the U.S. 105 single? <context>: CREATE TABLE table_name_44 (us VARCHAR, year VARCHAR) <answer>: SELECT us AS Rap FROM table_name_44 WHERE year = 2000 AND us = "105"
58,075
<question>: For the game ending with a score of 28-43, what is the listed as the final record? <context>: CREATE TABLE table_name_86 (record VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_86 WHERE score = "28-43"
58,076
<question>: For the game showing a final record of 0-5, what was the attendance level? <context>: CREATE TABLE table_name_95 (attendance VARCHAR, record VARCHAR) <answer>: SELECT attendance FROM table_name_95 WHERE record = "0-5"
58,077
<question>: For the game where the opponent is listed as At Los Angeles Rams, what was the final score? <context>: CREATE TABLE table_name_65 (score VARCHAR, opponent VARCHAR) <answer>: SELECT score FROM table_name_65 WHERE opponent = "at los angeles rams"
58,078
<question>: What was the result for the game with final record listed as 0-1? <context>: CREATE TABLE table_name_66 (result VARCHAR, record VARCHAR) <answer>: SELECT result FROM table_name_66 WHERE record = "0-1"
58,079
<question>: Which player has fewer than 3 rounds and the position of (g)? <context>: CREATE TABLE table_name_73 (player VARCHAR, round VARCHAR, position VARCHAR) <answer>: SELECT player FROM table_name_73 WHERE round < 3 AND position = "(g)"
58,080
<question>: How many rounds does Colby Robak have with a position of (d)? <context>: CREATE TABLE table_name_20 (round VARCHAR, position VARCHAR, player VARCHAR) <answer>: SELECT round FROM table_name_20 WHERE position = "(d)" AND player = "colby robak"
58,081
<question>: Which College/Junior/Club Team (league) does Matthew Bartkowski play for? <context>: CREATE TABLE table_name_31 (college_junior_club_team__league_ VARCHAR, player VARCHAR) <answer>: SELECT college_junior_club_team__league_ FROM table_name_31 WHERE player = "matthew bartkowski"
58,082
<question>: What date was the game when the liberty had a record of 12-9? <context>: CREATE TABLE table_name_63 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_63 WHERE record = "12-9"
58,083
<question>: What was the record for the game that had a score of 105-72? <context>: CREATE TABLE table_name_45 (record VARCHAR, score VARCHAR) <answer>: SELECT record FROM table_name_45 WHERE score = "105-72"
58,084
<question>: What was the date of the game where the record was 4-4? <context>: CREATE TABLE table_name_56 (date VARCHAR, record VARCHAR) <answer>: SELECT date FROM table_name_56 WHERE record = "4-4"
58,085
<question>: Who was the away team when Manchester United played at home on 10 February 1951? <context>: CREATE TABLE table_name_91 (away_team VARCHAR, date VARCHAR, home_team VARCHAR) <answer>: SELECT away_team FROM table_name_91 WHERE date = "10 february 1951" AND home_team = "manchester united"
58,086
<question>: Which tie did Huddersfield Town play as an away team? <context>: CREATE TABLE table_name_87 (tie_no VARCHAR, away_team VARCHAR) <answer>: SELECT tie_no FROM table_name_87 WHERE away_team = "huddersfield town"
58,087
<question>: What is the Country of T6 Place Player Ben Crenshaw? <context>: CREATE TABLE table_name_57 (country VARCHAR, place VARCHAR, player VARCHAR) <answer>: SELECT country FROM table_name_57 WHERE place = "t6" AND player = "ben crenshaw"
58,088
<question>: What is the Money of the Player with a To par of +3 and Score of 76-69-69-69=283? <context>: CREATE TABLE table_name_67 (money___ INTEGER, to_par VARCHAR, score VARCHAR) <answer>: SELECT MAX(money___) AS $__ FROM table_name_67 WHERE to_par = "+3" AND score = 76 - 69 - 69 - 69 = 283
58,089
<question>: What is the score of the game before January 22 with a 30-7-7 record? <context>: CREATE TABLE table_name_54 (score VARCHAR, january VARCHAR, record VARCHAR) <answer>: SELECT score FROM table_name_54 WHERE january < 22 AND record = "30-7-7"
58,090
<question>: What is the sum of the games before January 19 with a 27-6-6 record? <context>: CREATE TABLE table_name_11 (game INTEGER, january VARCHAR, record VARCHAR) <answer>: SELECT SUM(game) FROM table_name_11 WHERE january < 19 AND record = "27-6-6"
58,091
<question>: What is the Frequency, when the Voltage is 3.3 V? <context>: CREATE TABLE table_name_47 (frequency VARCHAR, voltage VARCHAR) <answer>: SELECT frequency FROM table_name_47 WHERE voltage = "3.3 v"
58,092
<question>: What is the L1 Cache, when the Model Number is X5-133 ADY? <context>: CREATE TABLE table_name_88 (l1_cache VARCHAR, model_number VARCHAR) <answer>: SELECT l1_cache FROM table_name_88 WHERE model_number = "x5-133 ady"
58,093
<question>: What is the Model Number, when the Voltage is 3.45 V, and when the Frequency is 133 MHZ? <context>: CREATE TABLE table_name_86 (model_number VARCHAR, voltage VARCHAR, frequency VARCHAR) <answer>: SELECT model_number FROM table_name_86 WHERE voltage = "3.45 v" AND frequency = "133 mhz"
58,094
<question>: What is the Nationality of the Aracataca Ship? <context>: CREATE TABLE table_name_17 (nationality VARCHAR, ship VARCHAR) <answer>: SELECT nationality FROM table_name_17 WHERE ship = "aracataca"
58,095
<question>: WHAT IS THE SAKA ERA WITH MONTHS IN MEDAM? <context>: CREATE TABLE table_name_77 (saka_era VARCHAR, months_in_malayalam_era VARCHAR) <answer>: SELECT saka_era FROM table_name_77 WHERE months_in_malayalam_era = "medam"
58,096
<question>: WHAT IS THE SIGN OF ZODIAC OF മീനം? <context>: CREATE TABLE table_name_58 (sign_of_zodiac VARCHAR, in_malayalam VARCHAR) <answer>: SELECT sign_of_zodiac FROM table_name_58 WHERE in_malayalam = "മീനം"
58,097
<question>: WHAT IS THE SAKA ERA OF VIRGO? <context>: CREATE TABLE table_name_31 (saka_era VARCHAR, sign_of_zodiac VARCHAR) <answer>: SELECT saka_era FROM table_name_31 WHERE sign_of_zodiac = "virgo"
58,098
<question>: WHAT IS THE GREGORIAN CALENDAR FOR AQUARIUS? <context>: CREATE TABLE table_name_77 (gregorian_calendar VARCHAR, sign_of_zodiac VARCHAR) <answer>: SELECT gregorian_calendar FROM table_name_77 WHERE sign_of_zodiac = "aquarius"
58,099
<question>: WHAT IS THE IN MALAYALAM WITH kartika–agrahayana? <context>: CREATE TABLE table_name_61 (in_malayalam VARCHAR, saka_era VARCHAR) <answer>: SELECT in_malayalam FROM table_name_61 WHERE saka_era = "kartika–agrahayana"