question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
Which 2000 Tournament has a 2002 of not tier i, and a 2006 of 2r?
columns: - name: Id type: VARCHAR table: table_name_57
SELECT 2000 FROM table_name_57 WHERE 2002 = "not tier i" AND 2006 = "2r"
What is the career caps for half-back, when tests is more than 3?
columns: - name: career_caps type: VARCHAR - name: position type: VARCHAR - name: tests type: VARCHAR table: table_name_73
SELECT career_caps FROM table_name_73 WHERE position = "half-back" AND tests > 3
What is the losing bonus of the team with 22 pays and 428 points against?
columns: - name: losing_bonus type: VARCHAR - name: played type: VARCHAR - name: points_against type: VARCHAR table: table_name_9
SELECT losing_bonus FROM table_name_9 WHERE played = "22" AND points_against = "428"
What is every value for словјански if polish is książka?
columns: - name: "\u0441\u043B\u043E\u0432\u0458\u0430\u043D\u0441\u043A\u0438" type: VARCHAR - name: polish type: VARCHAR table: table_25008327_8
SELECT словјански FROM table_25008327_8 WHERE polish = "książka"
What arena was season 6 played at?
columns: - name: arena__capacity_ type: VARCHAR - name: previous_season type: VARCHAR table: table_14015965_1
SELECT arena__capacity_ FROM table_14015965_1 WHERE previous_season = "6"
Which Nationality has a Fate of sunk (mine), and a Tonnage (GRT) smaller than 2,266?
columns: - name: nationality type: VARCHAR - name: fate type: VARCHAR - name: tonnage__grt_ type: VARCHAR table: table_name_80
SELECT nationality FROM table_name_80 WHERE fate = "sunk (mine)" AND tonnage__grt_ < 2 OFFSET 266
Which Tournament has a Margin of victory of 2 strokes, and a Winning score of −14 (68-66-68=202)?
columns: - name: tournament type: VARCHAR - name: margin_of_victory type: VARCHAR - name: winning_score type: VARCHAR table: table_name_10
SELECT tournament FROM table_name_10 WHERE margin_of_victory = "2 strokes" AND winning_score = −14(68 - 66 - 68 = 202)
What was the score of the game that had an attendance of 32,036?
columns: - name: score type: VARCHAR - name: attendance type: VARCHAR table: table_name_87
SELECT score FROM table_name_87 WHERE attendance = "32,036"
if p is bigger than 4.0 what is total number
columns: - name: total type: VARCHAR - name: p type: INTEGER table: table_17505751_5
SELECT COUNT(total) FROM table_17505751_5 WHERE p > 4.0
What lost has 86 points?
columns: - name: lost type: VARCHAR - name: points type: VARCHAR table: table_name_67
SELECT lost FROM table_name_67 WHERE points = "86"
Which tier of the tournament has Mont de Marson in it?
columns: - name: tier type: VARCHAR - name: tournament type: VARCHAR table: table_name_61
SELECT tier FROM table_name_61 WHERE tournament = "mont de marson"
What is set 3 on week 6?
columns: - name: set_3 type: VARCHAR - name: week type: VARCHAR table: table_name_1
SELECT set_3 FROM table_name_1 WHERE week = 6
What municipality has a 130.6 pupulation density?
columns: - name: municipality type: VARCHAR - name: pop_density__per_km_2__ type: VARCHAR table: table_255829_1
SELECT municipality FROM table_255829_1 WHERE pop_density__per_km_2__ = "130.6"
What is Television Service, when Content is Presentazione?
columns: - name: television_service type: VARCHAR - name: content type: VARCHAR table: table_name_90
SELECT television_service FROM table_name_90 WHERE content = "presentazione"
What was the type of ballot measure with the description of Department of Industry and Public Works Amendment?
columns: - name: type type: VARCHAR - name: description type: VARCHAR table: table_256286_8
SELECT type FROM table_256286_8 WHERE description = "Department of Industry and Public Works Amendment"
In what Country will Dennis Blömke play the Germany F13 Futures Tournament?
columns: - name: country type: VARCHAR - name: singles_champions type: VARCHAR - name: tournament type: VARCHAR table: table_name_9
SELECT country FROM table_name_9 WHERE singles_champions = "dennis blömke" AND tournament = "germany f13 futures"
What is the date for the tournament McDonald's wpga championship?
columns: - name: date type: VARCHAR - name: tournament type: VARCHAR table: table_2167226_3
SELECT date FROM table_2167226_3 WHERE tournament = "McDonald's WPGA Championship"
What is the average Wins, when Played is less than 30?
columns: - name: wins type: INTEGER - name: played type: INTEGER table: table_name_96
SELECT AVG(wins) FROM table_name_96 WHERE played < 30
What original channel is associated with B Mountain Channel 9?
columns: - name: original_channel type: VARCHAR - name: b_mountain_channel type: VARCHAR table: table_name_39
SELECT original_channel FROM table_name_39 WHERE b_mountain_channel = "9"
Who is the winner when bigten (2-1) is the challenge leader?
columns: - name: winner type: VARCHAR - name: challenge_leader type: VARCHAR table: table_21330550_2
SELECT winner FROM table_21330550_2 WHERE challenge_leader = "BigTen (2-1)"
Can you tell me the Name that has the Rank smaller than 71, and the Year larger than 2005, and the Out of 220?
columns: - name: name type: VARCHAR - name: out_of type: VARCHAR - name: rank type: VARCHAR - name: year type: VARCHAR table: table_name_22
SELECT name FROM table_name_22 WHERE rank < 71 AND year > 2005 AND out_of = "220"
Who is the player born before 1985 who is less than 2.02 tall?
columns: - name: player type: VARCHAR - name: year_born type: VARCHAR - name: height type: VARCHAR table: table_name_2
SELECT player FROM table_name_2 WHERE year_born < 1985 AND height < 2.02
Where was the 1966 final played?
columns: - name: finals_venue__surface_ type: VARCHAR - name: year type: VARCHAR table: table_name_12
SELECT finals_venue__surface_ FROM table_name_12 WHERE year = 1966
Which Game has an Opponent of detroit red wings, and a March smaller than 12?
columns: - name: game type: VARCHAR - name: opponent type: VARCHAR - name: march type: VARCHAR table: table_name_13
SELECT COUNT(game) FROM table_name_13 WHERE opponent = "detroit red wings" AND march < 12
What was the Years in competition that had a Premiership of 1982, 1984, 1999, 2002-03, 2008-09-10?
columns: - name: years_in_competition type: VARCHAR - name: premiership_years type: VARCHAR table: table_name_2
SELECT years_in_competition FROM table_name_2 WHERE premiership_years = "1982, 1984, 1999, 2002-03, 2008-09-10"
Who directed the Romanian film?
columns: - name: director type: VARCHAR - name: language type: VARCHAR table: table_name_60
SELECT director FROM table_name_60 WHERE language = "romanian"
How many Spanish word is there for the Portuguese bem-vindo?
columns: - name: spanish type: VARCHAR - name: portuguese type: VARCHAR table: table_26614365_5
SELECT COUNT(spanish) FROM table_26614365_5 WHERE portuguese = "Bem-vindo"
What was the format when the label was loen entertainment?
columns: - name: format type: VARCHAR - name: label type: VARCHAR table: table_name_20
SELECT format FROM table_name_20 WHERE label = "loen entertainment"
Which Construction is named of fu-hsing?
columns: - name: construction type: VARCHAR - name: name__wade_giles_ type: VARCHAR table: table_name_89
SELECT construction FROM table_name_89 WHERE name__wade_giles_ = "fu-hsing"
What was the result for week 2?
columns: - name: result type: VARCHAR - name: week type: VARCHAR table: table_name_50
SELECT result FROM table_name_50 WHERE week = 2
When was the Monza circuit?
columns: - name: date type: VARCHAR - name: circuit type: VARCHAR table: table_name_68
SELECT date FROM table_name_68 WHERE circuit = "monza"
How many players scored the most points on game 4?
columns: - name: high_points type: VARCHAR - name: game type: VARCHAR table: table_13762472_3
SELECT COUNT(high_points) FROM table_13762472_3 WHERE game = 4
What is the FCC info for the translator with frequency over 89.3MHz and licensd in Portales, New Mexico?
columns: - name: fcc_info type: VARCHAR - name: frequency_mhz type: VARCHAR - name: city_of_license type: VARCHAR table: table_name_98
SELECT fcc_info FROM table_name_98 WHERE frequency_mhz > 89.3 AND city_of_license = "portales, new mexico"
What is the lowest wk 7 with a wk 3 value of 12, a wk 4 less than 9, and a wk 2 greater than 11?
columns: - name: wk_7 type: INTEGER - name: wk_2 type: VARCHAR - name: wk_3 type: VARCHAR - name: wk_4 type: VARCHAR table: table_name_1
SELECT MIN(wk_7) FROM table_name_1 WHERE wk_3 = 12 AND wk_4 < 9 AND wk_2 > 11
What was the record after the game on May 1, 2004?
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_62
SELECT record FROM table_name_62 WHERE date = "may 1, 2004"
Who had the best time of 1:32.269?
columns: - name: name type: VARCHAR - name: best type: VARCHAR table: table_name_21
SELECT name FROM table_name_21 WHERE best = "1:32.269"
What is the grid total for cars with over 69 laps?
columns: - name: grid type: VARCHAR - name: laps type: INTEGER table: table_name_34
SELECT COUNT(grid) FROM table_name_34 WHERE laps > 69
How many individuals watched the show that had a bbc ranking of 6?
columns: - name: viewers type: VARCHAR - name: bbc_three_weekly_ranking type: VARCHAR table: table_24399615_10
SELECT COUNT(viewers) FROM table_24399615_10 WHERE bbc_three_weekly_ranking = "6"
What is the total round of the 129 pick?
columns: - name: round type: VARCHAR - name: pick__number type: VARCHAR table: table_name_49
SELECT COUNT(round) FROM table_name_49 WHERE pick__number = 129
What is the score of the game that had 359 people in attendance?
columns: - name: score type: VARCHAR - name: attendance type: VARCHAR table: table_name_59
SELECT score FROM table_name_59 WHERE attendance = "359"
How many laps for sébastien bourdais, and a Grid smaller than 1?
columns: - name: laps type: INTEGER - name: name type: VARCHAR - name: grid type: VARCHAR table: table_name_72
SELECT SUM(laps) FROM table_name_72 WHERE name = "sébastien bourdais" AND grid < 1
Name the record for october 11
columns: - name: record type: VARCHAR - name: date type: VARCHAR table: table_name_34
SELECT record FROM table_name_34 WHERE date = "october 11"
What was the score of the player who played against Wong Choong Hann in the Dutch Open?
columns: - name: score type: VARCHAR - name: tournament type: VARCHAR - name: opponent type: VARCHAR table: table_name_47
SELECT score FROM table_name_47 WHERE tournament = "dutch open" AND opponent = "wong choong hann"
How much Drawn has Points 1 of 51, and a Lost larger than 5?
columns: - name: drawn type: VARCHAR - name: points_1 type: VARCHAR - name: lost type: VARCHAR table: table_name_5
SELECT COUNT(drawn) FROM table_name_5 WHERE points_1 = 51 AND lost > 5
What is the duration of the Expedition 20 ISS Zvezda?
columns: - name: duration type: VARCHAR - name: spacecraft type: VARCHAR table: table_name_40
SELECT duration FROM table_name_40 WHERE spacecraft = "expedition 20 iss zvezda"
What is the total number of medals when the Bronze, Silver, and Gold medals are smaller than 1?
columns: - name: total type: VARCHAR - name: gold type: VARCHAR - name: bronze type: VARCHAR - name: silver type: VARCHAR table: table_name_61
SELECT COUNT(total) FROM table_name_61 WHERE bronze < 1 AND silver < 1 AND gold < 1
What is the name of the member country that has a Population of 1,341,664?
columns: - name: member_countries type: VARCHAR - name: population type: VARCHAR table: table_name_71
SELECT member_countries FROM table_name_71 WHERE population = "1,341,664"
how many winners were in round 8
columns: - name: winning_driver type: VARCHAR - name: rd type: VARCHAR table: table_15511178_3
SELECT COUNT(winning_driver) FROM table_15511178_3 WHERE rd = 8
What is the Days, hours, minutes for 21 – 26 October?
columns: - name: days type: VARCHAR - name: _hours type: VARCHAR - name: _minutes type: VARCHAR - name: dates type: VARCHAR table: table_name_81
SELECT days, _hours, _minutes FROM table_name_81 WHERE dates = "21 – 26 october"
Name the position for pick number 39
columns: - name: position type: VARCHAR - name: pick__number type: VARCHAR table: table_2508633_2
SELECT position FROM table_2508633_2 WHERE pick__number = 39
What religion has a para of 56.5%?
columns: - name: religion type: VARCHAR - name: para type: VARCHAR table: table_name_65
SELECT religion FROM table_name_65 WHERE para = "56.5%"
Who had the fastest lap for the German Grand Prix?
columns: - name: fastest_lap type: VARCHAR - name: race type: VARCHAR table: table_name_71
SELECT fastest_lap FROM table_name_71 WHERE race = "german grand prix"
Tell me the role for 2005
columns: - name: role type: VARCHAR - name: year type: VARCHAR table: table_name_38
SELECT role FROM table_name_38 WHERE year = 2005
Which race did Alberto Ascari have both the Pole position and the win, but Luigi Villoresi set the fastest lap time?
columns: - name: race type: VARCHAR - name: fastest_lap type: VARCHAR - name: pole_position type: VARCHAR - name: winning_driver type: VARCHAR table: table_name_4
SELECT race FROM table_name_4 WHERE pole_position = "alberto ascari" AND winning_driver = "alberto ascari" AND fastest_lap = "luigi villoresi"
Who has the high assists when location attendance is 20,562?
columns: - name: high_assists type: VARCHAR - name: location_attendance type: VARCHAR table: table_name_20
SELECT high_assists FROM table_name_20 WHERE location_attendance = "20,562"
What is the label for a CD released in 2004?
columns: - name: label type: VARCHAR - name: media type: VARCHAR - name: release_date type: VARCHAR table: table_name_25
SELECT label FROM table_name_25 WHERE media = "cd" AND release_date = 2004
Name the entrant for benedicto campos
columns: - name: entrant type: VARCHAR - name: driver type: VARCHAR table: table_21977704_1
SELECT entrant FROM table_21977704_1 WHERE driver = "Benedicto Campos"
What is the total amount of money that the United States one with a To par of –2?
columns: - name: money___ type: VARCHAR - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_93
SELECT COUNT(money___) AS $__ FROM table_name_93 WHERE country = "united states" AND to_par = "–2"
Who is the Athlete with a rowing Time of 6:36.05?
columns: - name: athlete type: VARCHAR - name: time type: VARCHAR table: table_name_49
SELECT athlete FROM table_name_49 WHERE time = "6:36.05"
What is Race 2, when Race 4 is 28?
columns: - name: race_2 type: VARCHAR - name: race_4 type: VARCHAR table: table_name_40
SELECT race_2 FROM table_name_40 WHERE race_4 = "28"
What is the lowest numbered division Cleveland played in?
columns: - name: division type: INTEGER table: table_2357201_1
SELECT MIN(division) FROM table_2357201_1
Which Programming has a Channel of 35.4?
columns: - name: programming type: VARCHAR - name: channel type: VARCHAR table: table_name_14
SELECT programming FROM table_name_14 WHERE channel = 35.4
How many track numbers were called song 2?
columns: - name: track_no type: VARCHAR - name: track type: VARCHAR table: table_28715942_3
SELECT COUNT(track_no) FROM table_28715942_3 WHERE track = "Song 2"
Name the number of countries that have the us dollar
columns: - name: country type: VARCHAR - name: currency type: VARCHAR table: table_2764267_2
SELECT COUNT(country) FROM table_2764267_2 WHERE currency = "US dollar"
What's listed for the Wamalwa that has a Turnout % of 55.9%?
columns: - name: wamalwa type: VARCHAR - name: turnout__percentage type: VARCHAR table: table_name_32
SELECT wamalwa FROM table_name_32 WHERE turnout__percentage = "55.9%"
what is the owner of the callsign wliw
columns: - name: owner type: VARCHAR - name: callsign type: VARCHAR table: table_1979203_1
SELECT owner FROM table_1979203_1 WHERE callsign = "WLIW"
How many points is there when the lost is 6 and the try bonus is 9?
columns: - name: points_for type: VARCHAR - name: lost type: VARCHAR - name: try_bonus type: VARCHAR table: table_name_24
SELECT points_for FROM table_name_24 WHERE lost = "6" AND try_bonus = "9"
What year's Season had an Overall of 77?
columns: - name: season type: VARCHAR - name: overall type: VARCHAR table: table_name_70
SELECT season FROM table_name_70 WHERE overall = "77"
What is the date of the issue where the pictorials is of Female s disk jockey?
columns: - name: date type: VARCHAR - name: pictorials type: VARCHAR table: table_1566848_7
SELECT COUNT(date) FROM table_1566848_7 WHERE pictorials = "Female s disk jockey"
Which opponent has a Date of 16 february 2003?
columns: - name: opponent type: VARCHAR - name: date type: VARCHAR table: table_name_83
SELECT opponent FROM table_name_83 WHERE date = "16 february 2003"
I want the driver with Laps larger than 16 with a ferrari and grid less than 15
columns: - name: driver type: VARCHAR - name: grid type: VARCHAR - name: laps type: VARCHAR - name: constructor type: VARCHAR table: table_name_44
SELECT driver FROM table_name_44 WHERE laps > 16 AND constructor = "ferrari" AND grid < 15
Who was number 4 when Natalie was number 9?
columns: - name: no_4 type: VARCHAR - name: no_9 type: VARCHAR table: table_name_38
SELECT no_4 FROM table_name_38 WHERE no_9 = "natalie"
Who is the Director of the Olsen Gang Sees Red?
columns: - name: director type: VARCHAR - name: english_title type: VARCHAR table: table_name_11
SELECT director FROM table_name_11 WHERE english_title = "the olsen gang sees red"
What is the Italian word for the Mexican word frijol?
columns: - name: italian type: VARCHAR - name: mexican type: VARCHAR table: table_name_59
SELECT italian FROM table_name_59 WHERE mexican = "frijol"
What's the distance for the chieti to macerata course?
columns: - name: distance type: VARCHAR - name: course type: VARCHAR table: table_name_66
SELECT distance FROM table_name_66 WHERE course = "chieti to macerata"
Can you tell me the lowest Decile that has the Area of matakohe, and the Roll larger than 86?
columns: - name: decile type: INTEGER - name: area type: VARCHAR - name: roll type: VARCHAR table: table_name_52
SELECT MIN(decile) FROM table_name_52 WHERE area = "matakohe" AND roll > 86
What is the premier team that has 38 points and won with a score of 38-0?
columns: - name: premiers type: VARCHAR - name: points type: VARCHAR - name: score type: VARCHAR table: table_name_16
SELECT premiers FROM table_name_16 WHERE points = 38 AND score = "38-0"
What was the attendance at the game when the record was 74-77?
columns: - name: attendance type: VARCHAR - name: record type: VARCHAR table: table_name_5
SELECT attendance FROM table_name_5 WHERE record = "74-77"
Name the bulgarian for jullie hadden gehoord
columns: - name: bulgarian type: VARCHAR - name: dutch type: VARCHAR table: table_1841901_1
SELECT bulgarian FROM table_1841901_1 WHERE dutch = "jullie hadden gehoord"
What are the colours of the team with benedikt guðmundsson as head coach?
columns: - name: colours type: VARCHAR - name: head_coach type: VARCHAR table: table_name_26
SELECT colours FROM table_name_26 WHERE head_coach = "benedikt guðmundsson"
What tournament had a hard surface on February 25, 1996?
columns: - name: tournament type: VARCHAR - name: surface type: VARCHAR - name: date type: VARCHAR table: table_name_78
SELECT tournament FROM table_name_78 WHERE surface = "hard" AND date = "february 25, 1996"
What was the time of sportfight 10?
columns: - name: time type: VARCHAR - name: event type: VARCHAR table: table_name_45
SELECT time FROM table_name_45 WHERE event = "sportfight 10"
Who is the player with an average of 35.42?
columns: - name: player type: VARCHAR - name: average type: VARCHAR table: table_28846752_13
SELECT player FROM table_28846752_13 WHERE average = "35.42"
What episode number in the season had 1.05 million U.S. viewers?
columns: - name: episode_no type: INTEGER - name: us_viewers__millions_ type: VARCHAR table: table_26136228_3
SELECT MAX(episode_no) FROM table_26136228_3 WHERE us_viewers__millions_ = "1.05"
What was the score of the game that had more than 8 points?
columns: - name: score type: VARCHAR - name: points type: INTEGER table: table_name_17
SELECT score FROM table_name_17 WHERE points > 8
In which year was the Tournament of european indoor championships played where the Extra was 800 m and the Result was 2nd?
columns: - name: year type: VARCHAR - name: result type: VARCHAR - name: extra type: VARCHAR - name: tournament type: VARCHAR table: table_name_95
SELECT year FROM table_name_95 WHERE extra = "800 m" AND tournament = "european indoor championships" AND result = "2nd"
What was the total distance (in miles) of the championship where the best conditioned horse was Freedom?
columns: - name: distance__miles_ type: VARCHAR - name: best_conditioned_horse type: VARCHAR table: table_27833186_1
SELECT distance__miles_ FROM table_27833186_1 WHERE best_conditioned_horse = "Freedom"
Which model has a Fleet Series (Quantity) of 11081-11092 (12)?
columns: - name: model type: VARCHAR - name: fleet_series__quantity_ type: VARCHAR table: table_name_1
SELECT model FROM table_name_1 WHERE fleet_series__quantity_ = "11081-11092 (12)"
What is the 2012 with a mini in 2009?
columns: - name: Id type: VARCHAR table: table_name_3
SELECT 2012 FROM table_name_3 WHERE 2009 = "mini"
Which Neon has a Argon of −189.6?
columns: - name: neon type: VARCHAR - name: argon type: VARCHAR table: table_name_95
SELECT neon FROM table_name_95 WHERE argon = "−189.6"
What Elector has the Place of birth of San Severino?
columns: - name: elector type: VARCHAR - name: place_of_birth type: VARCHAR table: table_name_33
SELECT elector FROM table_name_33 WHERE place_of_birth = "san severino"
What is the sum of the drawn values for teams with 2 losses?
columns: - name: drawn type: INTEGER - name: lost type: VARCHAR table: table_name_45
SELECT SUM(drawn) FROM table_name_45 WHERE lost = 2
What is the branding for stations located in Cebu?
columns: - name: branding type: VARCHAR - name: location type: VARCHAR table: table_17487395_1
SELECT branding FROM table_17487395_1 WHERE location = "Cebu"
Who was the 20 Questions section aimed at when Centerfold Model was Rachel Jeán Marteen?
columns: - name: centerfold_model type: VARCHAR table: table_name_46
SELECT 20 AS _questions FROM table_name_46 WHERE centerfold_model = "rachel jeán marteen"
What is 1993, when Tournament is "Cincinnati"?
columns: - name: tournament type: VARCHAR table: table_name_35
SELECT 1993 FROM table_name_35 WHERE tournament = "cincinnati"
How many rounds have School/club team of pan american?
columns: - name: round type: INTEGER - name: school_club_team type: VARCHAR table: table_name_91
SELECT SUM(round) FROM table_name_91 WHERE school_club_team = "pan american"
How many points against did the team that allowed 42 tries against allow?
columns: - name: points_against type: VARCHAR - name: tries_against type: VARCHAR table: table_name_65
SELECT points_against FROM table_name_65 WHERE tries_against = "42"
Which Score in the final has an Outcome of winner, and a Surface of hard (i)?
columns: - name: score_in_the_final type: VARCHAR - name: outcome type: VARCHAR - name: surface type: VARCHAR table: table_name_12
SELECT score_in_the_final FROM table_name_12 WHERE outcome = "winner" AND surface = "hard (i)"
What event did Sjerstin Vermeulen receive a 66.452 result?
columns: - name: event type: VARCHAR - name: athlete type: VARCHAR - name: result type: VARCHAR table: table_name_57
SELECT event FROM table_name_57 WHERE athlete = "sjerstin vermeulen" AND result = "66.452"
Which date featured the Boston Patriots as the opponent?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_96
SELECT date FROM table_name_96 WHERE opponent = "boston patriots"