question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What category was danson tang nominated?
columns: - name: category type: VARCHAR - name: nomination type: VARCHAR table: table_name_72
SELECT category FROM table_name_72 WHERE nomination = "danson tang"
What's the total number of picks for the player Matt Murton?
columns: - name: pick type: INTEGER - name: player type: VARCHAR table: table_name_25
SELECT SUM(pick) FROM table_name_25 WHERE player = "matt murton"
What was the percentage of total votes in 1997?
columns: - name: _percentage_of_total_vote type: VARCHAR - name: year type: VARCHAR table: table_28819393_1
SELECT _percentage_of_total_vote FROM table_28819393_1 WHERE year = "1997"
Who was the visiting team when Winnipeg was the home team?
columns: - name: visitor type: VARCHAR - name: home type: VARCHAR table: table_name_33
SELECT visitor FROM table_name_33 WHERE home = "winnipeg"
How many totals are there for players with an average under 8 and less than 4 matches?
columns: - name: total type: VARCHAR - name: average type: VARCHAR - name: matches type: VARCHAR table: table_name_53
SELECT COUNT(total) FROM table_name_53 WHERE average < 8 AND matches < 4
The player for what club had 2 tests?
columns: - name: club type: VARCHAR - name: tests type: VARCHAR table: table_27771406_1
SELECT club FROM table_27771406_1 WHERE tests = 2
Who is the lead on the Europe team that has a Liudmila Privivkova as the skip?
columns: - name: lead type: VARCHAR - name: team type: VARCHAR - name: skip type: VARCHAR table: table_name_18
SELECT lead FROM table_name_18 WHERE team = "europe" AND skip = "liudmila privivkova"
What was the score on 14 march 2004?
columns: - name: score type: VARCHAR - name: date type: VARCHAR table: table_name_39
SELECT score FROM table_name_39 WHERE date = "14 march 2004"
What are the air dates of the show in ABS-CBN?
columns: - name: air_dates type: VARCHAR - name: network type: VARCHAR table: table_27487310_5
SELECT air_dates FROM table_27487310_5 WHERE network = "ABS-CBN"
What is the Place of the Player with a To par of –10 and a Score of 67-67-66=200?
columns: - name: place type: VARCHAR - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_89
SELECT place FROM table_name_89 WHERE to_par = "–10" AND score = 67 - 67 - 66 = 200
When 790 am is the frequency what is the format?
columns: - name: format type: VARCHAR - name: frequency type: VARCHAR table: table_1949746_1
SELECT format FROM table_1949746_1 WHERE frequency = "790 AM"
Name the total number of Draws when goals for is 58 and losses is 12 when goal differences is less than 21
columns: - name: draws type: VARCHAR - name: goal_difference type: VARCHAR - name: goals_for type: VARCHAR - name: losses type: VARCHAR table: table_name_45
SELECT COUNT(draws) FROM table_name_45 WHERE goals_for = 58 AND losses = 12 AND goal_difference < 21
What is the car specs for team Airwaves BMW's driver Rob Collard?
columns: - name: car_spec type: VARCHAR - name: team type: VARCHAR - name: drivers type: VARCHAR table: table_name_68
SELECT car_spec FROM table_name_68 WHERE team = "airwaves bmw" AND drivers = "rob collard"
Who were the opponents in the final where the score in the final is 6–4, 7–6 2?
columns: - name: opponents_in_the_final type: VARCHAR - name: score_in_the_final type: VARCHAR table: table_22597626_17
SELECT opponents_in_the_final FROM table_22597626_17 WHERE score_in_the_final = "6–4, 7–6 2"
What team's overal record is 22-11?
columns: - name: team type: VARCHAR - name: overall_record type: VARCHAR table: table_23183195_2
SELECT team FROM table_23183195_2 WHERE overall_record = "22-11"
What is the current club with a position of sg/sf and a height less than 1.96?
columns: - name: current_club type: VARCHAR - name: position type: VARCHAR - name: height type: VARCHAR table: table_name_45
SELECT current_club FROM table_name_45 WHERE position = "sg/sf" AND height < 1.96
which countries were commentated on by gordana bonetti
columns: - name: country type: VARCHAR - name: commentator type: VARCHAR table: table_184803_4
SELECT country FROM table_184803_4 WHERE commentator = "Gordana Bonetti"
When Date has a Game larger than 4 and a Team of san antonio, and a Record of 4-3?
columns: - name: date type: VARCHAR - name: record type: VARCHAR - name: game type: VARCHAR - name: team type: VARCHAR table: table_name_86
SELECT date FROM table_name_86 WHERE game > 4 AND team = "san antonio" AND record = "4-3"
What was the language score when the reading score was 94.47?
columns: - name: language type: VARCHAR - name: reading type: VARCHAR table: table_2534578_1
SELECT language FROM table_2534578_1 WHERE reading = "94.47"
Who is the player that played in the UEFA Euro 2012 qualifying Group A competition?
columns: - name: player type: VARCHAR - name: competition type: VARCHAR table: table_24765815_2
SELECT player FROM table_24765815_2 WHERE competition = "UEFA Euro 2012 qualifying Group A"
What horse has a 65.863 result?
columns: - name: horse type: VARCHAR - name: result type: VARCHAR table: table_name_18
SELECT horse FROM table_name_18 WHERE result = "65.863"
Name the population % of eu for greece
columns: - name: population__percentage_of_eu type: VARCHAR - name: member_state type: VARCHAR table: table_1606824_1
SELECT population__percentage_of_eu FROM table_1606824_1 WHERE member_state = "Greece"
What was the total crowd size for the him team footscray?
columns: - name: crowd type: VARCHAR - name: home_team type: VARCHAR table: table_name_95
SELECT COUNT(crowd) FROM table_name_95 WHERE home_team = "footscray"
What is the largest heat with a time of 4:57.90, and a Rank larger than 22?
columns: - name: heat type: INTEGER - name: time type: VARCHAR - name: rank type: VARCHAR table: table_name_98
SELECT MAX(heat) FROM table_name_98 WHERE time = "4:57.90" AND rank > 22
How many destinations have a weekly frequency and are named AC Express?
columns: - name: destination type: VARCHAR - name: frequency type: VARCHAR - name: train_name type: VARCHAR table: table_21716139_1
SELECT COUNT(destination) FROM table_21716139_1 WHERE frequency = "Weekly" AND train_name = "AC Express"
Who won the US Open in 1937?
columns: - name: player type: VARCHAR - name: us_open type: VARCHAR table: table_197638_6
SELECT player FROM table_197638_6 WHERE us_open = 1937
What year was the ateneo de manila university founded?
columns: - name: founded type: VARCHAR - name: institution type: VARCHAR table: table_22171978_1
SELECT founded FROM table_22171978_1 WHERE institution = "Ateneo de Manila University"
What was the result in 1995?
columns: - name: result type: VARCHAR - name: year type: VARCHAR table: table_name_79
SELECT result FROM table_name_79 WHERE year = 1995
Tell me the highest Laps for grid less than 22 and riderS of ruben xaus
columns: - name: laps type: INTEGER - name: grid type: VARCHAR - name: rider type: VARCHAR table: table_name_40
SELECT MAX(laps) FROM table_name_40 WHERE grid < 22 AND rider = "ruben xaus"
What 1993 has 2r as a 1994, and 1r as a 1995?
columns: - name: Id type: VARCHAR table: table_name_18
SELECT 1993 FROM table_name_18 WHERE 1994 = "2r" AND 1995 = "1r"
Who was the week 1 nomination when the week 2 nomination was Piia Jarkko?
columns: - name: week_1 type: VARCHAR - name: week_2 type: VARCHAR table: table_name_35
SELECT week_1 FROM table_name_35 WHERE week_2 = "piia jarkko"
For the game played on 31 July 2007 on clay what was the score?
columns: - name: score type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_42
SELECT score FROM table_name_42 WHERE surface = "clay" AND date = "31 july 2007"
The astronaut who was 37y 8m 4d when making a first step on the moon was in which service?
columns: - name: service type: VARCHAR - name: age_at_first_step type: VARCHAR table: table_name_65
SELECT service FROM table_name_65 WHERE age_at_first_step = "37y 8m 4d"
What is reserved for the constituency of 228?
columns: - name: reserved_for___sc___st__none_ type: VARCHAR - name: constituency_number type: VARCHAR table: table_name_65
SELECT reserved_for___sc___st__none_ FROM table_name_65 WHERE constituency_number = "228"
Which lost has 84 as the match points?
columns: - name: lost type: VARCHAR - name: match_points type: VARCHAR table: table_name_52
SELECT lost FROM table_name_52 WHERE match_points = "84"
What is the uniform number of the player whose last name is Wiltshire?
columns: - name: uni_number type: INTEGER - name: surname type: VARCHAR table: table_name_25
SELECT MIN(uni_number) FROM table_name_25 WHERE surname = "wiltshire"
What is the total when silver is more than 0, and bronze less than 0?
columns: - name: total type: INTEGER - name: silver type: VARCHAR - name: bronze type: VARCHAR table: table_name_89
SELECT MAX(total) FROM table_name_89 WHERE silver > 0 AND bronze < 0
What day did Footscray play as the home team?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_20
SELECT date FROM table_name_20 WHERE home_team = "footscray"
Which Liberal leader has Seats won smaller than 100, and Seats in House of 215, and a % of popular vote of 43.1%?
columns: - name: liberal_leader type: VARCHAR - name: _percentage_of_popular_vote type: VARCHAR - name: seats_won type: VARCHAR - name: seats_in_house type: VARCHAR table: table_name_86
SELECT liberal_leader FROM table_name_86 WHERE seats_won < 100 AND seats_in_house = 215 AND _percentage_of_popular_vote = "43.1%"
Who was the home team for the game played at Corio Oval?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_20
SELECT home_team FROM table_name_20 WHERE venue = "corio oval"
Which Bronze has a Gold larger than 1, and a Total larger than 11, and a Silver larger than 5?
columns: - name: bronze type: INTEGER - name: silver type: VARCHAR - name: gold type: VARCHAR - name: total type: VARCHAR table: table_name_36
SELECT AVG(bronze) FROM table_name_36 WHERE gold > 1 AND total > 11 AND silver > 5
Which airport has an IATA of AMS?
columns: - name: airport type: VARCHAR - name: iata type: VARCHAR table: table_name_39
SELECT airport FROM table_name_39 WHERE iata = "ams"
What Country has a Player of nick faldo?
columns: - name: country type: VARCHAR - name: player type: VARCHAR table: table_name_74
SELECT country FROM table_name_74 WHERE player = "nick faldo"
What is the color of the planet venus?
columns: - name: color type: VARCHAR - name: planet type: VARCHAR table: table_180802_3
SELECT color FROM table_180802_3 WHERE planet = "Venus"
Name the Wins which has Points smaller than 10, Losses smaller than 3, and a Scored of 11?
columns: - name: wins type: INTEGER - name: scored type: VARCHAR - name: points type: VARCHAR - name: losses type: VARCHAR table: table_name_80
SELECT MIN(wins) FROM table_name_80 WHERE points < 10 AND losses < 3 AND scored = 11
What is the median household income where the per capita is $28,789?
columns: - name: median_household_income type: VARCHAR - name: per_capita_income type: VARCHAR table: table_name_27
SELECT median_household_income FROM table_name_27 WHERE per_capita_income = "$28,789"
Which Runner-up played in the Season of 2000–01?
columns: - name: runner_up type: VARCHAR - name: season type: VARCHAR table: table_name_72
SELECT runner_up FROM table_name_72 WHERE season = "2000–01"
Who played San Lorenzo?
columns: - name: team__number2 type: VARCHAR - name: team__number1 type: VARCHAR table: table_17282875_3
SELECT team__number2 FROM table_17282875_3 WHERE team__number1 = "San Lorenzo"
What is the episode number of the episode with a production code of 4aky14?
columns: - name: no_in_season type: VARCHAR - name: production_code type: VARCHAR table: table_26825349_1
SELECT no_in_season FROM table_26825349_1 WHERE production_code = "4AKY14"
Which Driver has a Capacity smaller than 5700, and a Total Time of 08:29?
columns: - name: driver type: VARCHAR - name: capacity type: VARCHAR - name: total_time type: VARCHAR table: table_name_21
SELECT driver FROM table_name_21 WHERE capacity < 5700 AND total_time = "08:29"
When is Biddle's DOB?
columns: - name: dob type: VARCHAR - name: surname type: VARCHAR table: table_name_5
SELECT dob FROM table_name_5 WHERE surname = "biddle"
What is the record when they played New York?
columns: - name: record type: VARCHAR - name: opponent type: VARCHAR table: table_name_64
SELECT record FROM table_name_64 WHERE opponent = "new york"
When 43.048° n is the latitude what is the magnitude?
columns: - name: magnitude type: VARCHAR - name: latitude type: VARCHAR table: table_24192190_1
SELECT magnitude FROM table_24192190_1 WHERE latitude = "43.048° N"
How many Points have a Home of pittsburgh, and a Score of 1–7?
columns: - name: points type: INTEGER - name: home type: VARCHAR - name: score type: VARCHAR table: table_name_11
SELECT SUM(points) FROM table_name_11 WHERE home = "pittsburgh" AND score = "1–7"
What is the hometown of the contestant whose background is as a financial consultant?
columns: - name: hometown type: VARCHAR - name: background type: VARCHAR table: table_19810459_1
SELECT hometown FROM table_19810459_1 WHERE background = "Financial consultant"
What was the outcome for Emerson Fittipaldi in the race held at Jarama?
columns: - name: result type: VARCHAR - name: venue type: VARCHAR - name: driver type: VARCHAR table: table_name_51
SELECT result FROM table_name_51 WHERE venue = "jarama" AND driver = "emerson fittipaldi"
What results in 2012 also has 2013 results of 2r and the tournament was Wimbledon?
columns: - name: tournament type: VARCHAR table: table_name_65
SELECT 2012 FROM table_name_65 WHERE 2013 = "2r" AND tournament = "wimbledon"
Which airport is in Xinjiang province in the city Kuqa?
columns: - name: airport type: VARCHAR - name: province type: VARCHAR - name: city type: VARCHAR table: table_name_45
SELECT airport FROM table_name_45 WHERE province = "xinjiang" AND city = "kuqa"
What Secretary has a Social AO of lieke de boer?
columns: - name: secretary type: VARCHAR - name: social_ao type: VARCHAR table: table_name_12
SELECT secretary FROM table_name_12 WHERE social_ao = "lieke de boer"
One 6 November 2007 what was the manner of departure for the coach release in football league one?
columns: - name: manner_of_departure type: VARCHAR - name: date_of_appointment type: VARCHAR table: table_28181347_6
SELECT manner_of_departure FROM table_28181347_6 WHERE date_of_appointment = "6 November 2007"
What City of license has a ERP W of 2,000?
columns: - name: city_of_license type: VARCHAR - name: erp_w type: VARCHAR table: table_name_67
SELECT city_of_license FROM table_name_67 WHERE erp_w = "2,000"
Who is in January where April is chris cranston?
columns: - name: january type: VARCHAR - name: april type: VARCHAR table: table_name_71
SELECT january FROM table_name_71 WHERE april = "chris cranston"
How many different conference records are there for season 2006?
columns: - name: conference_record type: VARCHAR - name: season type: VARCHAR table: table_20319085_2
SELECT COUNT(conference_record) FROM table_20319085_2 WHERE season = 2006
If the district ID is 74907, what is the name of the district?
columns: - name: district_name type: VARCHAR - name: dist_id type: VARCHAR table: table_22665117_1
SELECT district_name FROM table_22665117_1 WHERE dist_id = 74907
Name the most points for champion, won in the final against amélie mauresmo
columns: - name: points type: INTEGER - name: status type: VARCHAR table: table_1973321_5
SELECT MAX(points) FROM table_1973321_5 WHERE status = "Champion, won in the final against Amélie Mauresmo"
What is the lowest # in Atlanta, GA with the Georgia Bulldogs as an opponent?
columns: - name: _number type: INTEGER - name: location type: VARCHAR - name: opponent type: VARCHAR table: table_15647838_3
SELECT MIN(_number) FROM table_15647838_3 WHERE location = "Atlanta, GA" AND opponent = "Georgia Bulldogs"
What is Series, when Launch Date is 23 February 2013?
columns: - name: series type: VARCHAR - name: launch_date type: VARCHAR table: table_name_16
SELECT series FROM table_name_16 WHERE launch_date = "23 february 2013"
What is the Cyrillic code with a cu Latin 2-letter code?
columns: - name: cyrillic_code type: VARCHAR - name: latin_2_letter_code type: VARCHAR table: table_name_68
SELECT cyrillic_code FROM table_name_68 WHERE latin_2_letter_code = "cu"
What day is north melbourne the away side?
columns: - name: date type: VARCHAR - name: away_team type: VARCHAR table: table_name_51
SELECT date FROM table_name_51 WHERE away_team = "north melbourne"
What is the largest attendance at Memorial Stadium on December 12, 1965?
columns: - name: attendance type: INTEGER - name: game_site type: VARCHAR - name: date type: VARCHAR table: table_name_51
SELECT MAX(attendance) FROM table_name_51 WHERE game_site = "memorial stadium" AND date = "december 12, 1965"
Name the location attendance for 4 game
columns: - name: location_attendance type: VARCHAR - name: game type: VARCHAR table: table_23284271_11
SELECT location_attendance FROM table_23284271_11 WHERE game = 4
What is the position when the points 1 is 61?
columns: - name: position type: INTEGER - name: points_1 type: VARCHAR table: table_name_40
SELECT SUM(position) FROM table_name_40 WHERE points_1 = "61"
What city is located in Oklahoma?
columns: - name: city type: VARCHAR - name: state type: VARCHAR table: table_name_67
SELECT city FROM table_name_67 WHERE state = "oklahoma"
Name the opponent with record of 12-18
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_name_20
SELECT opponent FROM table_name_20 WHERE record = "12-18"
Who played Mixed Doubles in 1991?
columns: - name: mixed_doubles type: VARCHAR - name: year type: VARCHAR table: table_2486023_1
SELECT mixed_doubles FROM table_2486023_1 WHERE year = 1991
Which Date has a Winning score of −15 (71-69-68-65=273)?
columns: - name: date type: VARCHAR - name: winning_score type: VARCHAR table: table_name_98
SELECT date FROM table_name_98 WHERE winning_score = −15(71 - 69 - 68 - 65 = 273)
Which Date has a Distance of 3,000 m?
columns: - name: date type: VARCHAR - name: distance type: VARCHAR table: table_name_63
SELECT date FROM table_name_63 WHERE distance = "3,000 m"
What is the total number of Rolls of State schools in Hapuku with a Decile greater than 4?
columns: - name: roll type: VARCHAR - name: decile type: VARCHAR - name: authority type: VARCHAR - name: area type: VARCHAR table: table_name_56
SELECT COUNT(roll) FROM table_name_56 WHERE authority = "state" AND area = "hapuku" AND decile > 4
Which college has fewer than 2 rounds?
columns: - name: college type: VARCHAR - name: round type: INTEGER table: table_name_7
SELECT college FROM table_name_7 WHERE round < 2
Who is the Opponent on January 16?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_45
SELECT opponent FROM table_name_45 WHERE date = "january 16"
Which Location has a Mascot of tigers?
columns: - name: location type: VARCHAR - name: mascot type: VARCHAR table: table_name_34
SELECT location FROM table_name_34 WHERE mascot = "tigers"
How many candidates were elected in the Louisiana 4 district?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1341865_20
SELECT COUNT(first_elected) FROM table_1341865_20 WHERE district = "Louisiana 4"
What is the network that aired Star King prior to 2011?
columns: - name: network type: VARCHAR - name: year type: VARCHAR - name: title type: VARCHAR table: table_name_70
SELECT network FROM table_name_70 WHERE year < 2011 AND title = "star king"
What is the value of the Democratic Alternative for the poll released by Malta Today?
columns: - name: democratic_alternative type: VARCHAR - name: polling_institute type: VARCHAR table: table_name_31
SELECT democratic_alternative FROM table_name_31 WHERE polling_institute = "malta today"
What was the result in the election where Hale Boggs was the incumbent?
columns: - name: result type: VARCHAR - name: incumbent type: VARCHAR table: table_1342149_18
SELECT result FROM table_1342149_18 WHERE incumbent = "Hale Boggs"
How many games had an average of 12796?
columns: - name: overall_gms type: VARCHAR - name: overall_avg type: VARCHAR table: table_27094070_4
SELECT COUNT(overall_gms) FROM table_27094070_4 WHERE overall_avg = 12796
What is the fewest number of wins in the chart for Ayrton Senna?
columns: - name: wins type: INTEGER - name: driver type: VARCHAR table: table_name_1
SELECT MIN(wins) FROM table_name_1 WHERE driver = "ayrton senna"
How many incumbents are there in Pennsylvania 5?
columns: - name: incumbent type: VARCHAR - name: district type: VARCHAR table: table_2668401_12
SELECT COUNT(incumbent) FROM table_2668401_12 WHERE district = "Pennsylvania 5"
What was the attendance during the november 16, 1975 game?
columns: - name: attendance type: INTEGER - name: date type: VARCHAR table: table_name_18
SELECT MAX(attendance) FROM table_name_18 WHERE date = "november 16, 1975"
Can you tell me the Gold that has the Silver of south korea, and the Year of 1986?
columns: - name: gold type: VARCHAR - name: silver type: VARCHAR - name: year type: VARCHAR table: table_name_39
SELECT gold FROM table_name_39 WHERE silver = "south korea" AND year = 1986
What is the highest value for 1970, when the value for 1960 is less than 61.9, when the value for 1980 is less than 3.8, when the value for 1990 is 3.3, and when the value for 2000 is greater than 3.2?
columns: - name: Id type: VARCHAR table: table_name_81
SELECT MAX(1970) FROM table_name_81 WHERE 1960 < 61.9 AND 1980 < 3.8 AND 1990 = 3.3 AND 2000 > 3.2
What is the original air date of the episode that was directed by David Paymer?
columns: - name: original_air_date type: VARCHAR - name: directed_by type: VARCHAR table: table_23399481_2
SELECT original_air_date FROM table_23399481_2 WHERE directed_by = "David Paymer"
Which competition was held on 14 November 2012?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_41
SELECT competition FROM table_name_41 WHERE date = "14 november 2012"
What is the Office when spencer c. young is on the liberal ticket??
columns: - name: office type: VARCHAR - name: liberal_ticket type: VARCHAR table: table_name_74
SELECT office FROM table_name_74 WHERE liberal_ticket = "spencer c. young"
Name the winners of the mens doubles in the season of 1963/64.
columns: - name: mens_doubles type: VARCHAR - name: season type: VARCHAR table: table_28211988_4
SELECT mens_doubles FROM table_28211988_4 WHERE season = "1963/64"
On what date was the Result 1-0?
columns: - name: date type: VARCHAR - name: result type: VARCHAR table: table_name_33
SELECT date FROM table_name_33 WHERE result = "1-0"
What is the most current year with a previous conference of Mid-Indiana in Converse?
columns: - name: year_joined type: INTEGER - name: previous_conference type: VARCHAR - name: location type: VARCHAR table: table_name_35
SELECT MAX(year_joined) FROM table_name_35 WHERE previous_conference = "mid-indiana" AND location = "converse"
Name The Ground on 18 january 1998?
columns: - name: ground type: VARCHAR - name: date type: VARCHAR table: table_name_25
SELECT ground FROM table_name_25 WHERE date = "18 january 1998"
What is the average Top-25 that has a Top-10 less than 7, and the Tournament is the open championship, with a Top-5more than 1?
columns: - name: top_25 type: INTEGER - name: top_5 type: VARCHAR - name: top_10 type: VARCHAR - name: tournament type: VARCHAR table: table_name_58
SELECT AVG(top_25) FROM table_name_58 WHERE top_10 < 7 AND tournament = "the open championship" AND top_5 > 1
What airport is in China with an ICAO of zbaa?
columns: - name: airport type: VARCHAR - name: country type: VARCHAR - name: icao type: VARCHAR table: table_name_55
SELECT airport FROM table_name_55 WHERE country = "china" AND icao = "zbaa"