question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
How many positions does rene villemure play?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_1473672_2
SELECT COUNT(position) FROM table_1473672_2 WHERE player = "Rene Villemure"
Which Back has a Supplier of Kooga and a Year of 2006-2008?
columns: - name: back type: VARCHAR - name: supplier type: VARCHAR - name: year type: VARCHAR table: table_name_88
SELECT back FROM table_name_88 WHERE supplier = "kooga" AND year = "2006-2008"
On what date does visiting team Minnesota score higher than 47 points?
columns: - name: date type: VARCHAR - name: points type: VARCHAR - name: visitor type: VARCHAR table: table_name_34
SELECT date FROM table_name_34 WHERE points > 47 AND visitor = "minnesota"
What episode in the series is TV broadcast s03e20?
columns: - name: no_in_series type: VARCHAR - name: tv_broadcast type: VARCHAR table: table_15861776_1
SELECT no_in_series FROM table_15861776_1 WHERE tv_broadcast = "S03E20"
Which district has an IUCN of iii and was established in 1998?
columns: - name: district type: VARCHAR - name: iucn type: VARCHAR - name: est type: VARCHAR table: table_name_44
SELECT district FROM table_name_44 WHERE iucn = "iii" AND est = 1998
What year did Miyoshi Umeki make a film?
columns: - name: year type: VARCHAR - name: name type: VARCHAR table: table_name_25
SELECT year FROM table_name_25 WHERE name = "miyoshi umeki"
What is Davide Rebellin' UCI ProTour Points?
columns: - name: uci_protour_points type: VARCHAR - name: cyclist type: VARCHAR table: table_name_33
SELECT uci_protour_points FROM table_name_33 WHERE cyclist = "davide rebellin"
What country does Round 4 come from?
columns: - name: nationality type: VARCHAR - name: round type: VARCHAR table: table_name_12
SELECT nationality FROM table_name_12 WHERE round = 4
Which Run 3 has a Run 1 of 2:20.10?
columns: - name: run_3 type: VARCHAR - name: run_1 type: VARCHAR table: table_name_13
SELECT run_3 FROM table_name_13 WHERE run_1 = "2:20.10"
When was James William Trimble first elected in the Arkansas 3 district?
columns: - name: first_elected type: INTEGER - name: district type: VARCHAR table: table_1341897_6
SELECT MIN(first_elected) FROM table_1341897_6 WHERE district = "Arkansas 3"
In which year was a linebacker pick 17?
columns: - name: year type: VARCHAR - name: position type: VARCHAR - name: pick type: VARCHAR table: table_name_4
SELECT year FROM table_name_4 WHERE position = "linebacker" AND pick = "17"
What day did the team play on week 8?
columns: - name: date type: VARCHAR - name: week type: VARCHAR table: table_name_55
SELECT date FROM table_name_55 WHERE week = 8
What was the attendance for the match where cambridge united was the home team?
columns: - name: attendance type: VARCHAR - name: home_team type: VARCHAR table: table_name_55
SELECT attendance FROM table_name_55 WHERE home_team = "cambridge united"
Which Polish Cup has a Puchat Ligi larger than 0?
columns: - name: polish_cup type: INTEGER - name: puchat_ligi type: INTEGER table: table_name_20
SELECT AVG(polish_cup) FROM table_name_20 WHERE puchat_ligi > 0
What is the name of the manager of the Atlético Baleares?
columns: - name: manager type: VARCHAR - name: current_club type: VARCHAR table: table_name_54
SELECT manager FROM table_name_54 WHERE current_club = "atlético baleares"
What Country had a Score of 71-67=138?
columns: - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_76
SELECT country FROM table_name_76 WHERE score = 71 - 67 = 138
What is the average speed for filmar racing?
columns: - name: average_speed__mph_ type: VARCHAR - name: team type: VARCHAR table: table_28178756_1
SELECT average_speed__mph_ FROM table_28178756_1 WHERE team = "FILMAR Racing"
Tell me the years competed for panthers
columns: - name: years_competed type: VARCHAR - name: nickname type: VARCHAR table: table_name_97
SELECT years_competed FROM table_name_97 WHERE nickname = "panthers"
Which NBA draft has a School of huntington high school?
columns: - name: nba_draft type: VARCHAR - name: school type: VARCHAR table: table_name_57
SELECT nba_draft FROM table_name_57 WHERE school = "huntington high school"
Which team had car number 15?
columns: - name: team type: VARCHAR - name: car_no type: VARCHAR table: table_name_72
SELECT team FROM table_name_72 WHERE car_no = "15"
how many party classifications are there for the incumbent Mac Collins?
columns: - name: party type: VARCHAR - name: incumbent type: VARCHAR table: table_26336739_1
SELECT COUNT(party) FROM table_26336739_1 WHERE incumbent = "Mac Collins"
What is the name of the role that has a Title of Salud, Dinero y Amor and antagonist in the notes field?
columns: - name: role type: VARCHAR - name: notes type: VARCHAR - name: title type: VARCHAR table: table_name_26
SELECT role FROM table_name_26 WHERE notes = "antagonist" AND title = "salud, dinero y amor"
Where did Brian Hightower play when he has the Conv of 0?
columns: - name: venue type: VARCHAR - name: conv type: VARCHAR - name: player type: VARCHAR table: table_name_47
SELECT venue FROM table_name_47 WHERE conv = "0" AND player = "brian hightower"
What is Event, when Opponent is "Joe Pardo"?
columns: - name: event type: VARCHAR - name: opponent type: VARCHAR table: table_name_41
SELECT event FROM table_name_41 WHERE opponent = "joe pardo"
What is the lowest overall year?
columns: - name: year type: INTEGER table: table_16677738_1
SELECT MIN(year) FROM table_16677738_1
What is the NHL team that had pick number 32?
columns: - name: nhl_team type: VARCHAR - name: pick__number type: VARCHAR table: table_name_72
SELECT nhl_team FROM table_name_72 WHERE pick__number = "32"
What was the date when the attendance was 63995
columns: - name: date type: VARCHAR - name: attendance type: VARCHAR table: table_14875671_1
SELECT date FROM table_14875671_1 WHERE attendance = 63995
what is the points for rank 12?
columns: - name: points type: INTEGER - name: rank type: VARCHAR table: table_name_13
SELECT SUM(points) FROM table_name_13 WHERE rank = 12
How many wins for team with 1800 Against and more than 0 byes?
columns: - name: wins type: INTEGER - name: against type: VARCHAR - name: draws type: VARCHAR table: table_name_64
SELECT MAX(wins) FROM table_name_64 WHERE against = 1800 AND draws > 0
What is the Country of the Player with a To par of –4?
columns: - name: country type: VARCHAR - name: to_par type: VARCHAR table: table_name_72
SELECT country FROM table_name_72 WHERE to_par = "–4"
What Years Member has a School of cairo high school?
columns: - name: years_member type: VARCHAR - name: school type: VARCHAR table: table_name_47
SELECT years_member FROM table_name_47 WHERE school = "cairo high school"
Name the most april with record of 38-33-10
columns: - name: april type: INTEGER - name: record type: VARCHAR table: table_name_19
SELECT MAX(april) FROM table_name_19 WHERE record = "38-33-10"
How many people came to the game at Victoria Park?
columns: - name: crowd type: VARCHAR - name: venue type: VARCHAR table: table_name_17
SELECT COUNT(crowd) FROM table_name_17 WHERE venue = "victoria park"
What is the engine for the car with 3 points?
columns: - name: engine type: VARCHAR - name: points type: VARCHAR table: table_name_6
SELECT engine FROM table_name_6 WHERE points = 3
What is the highest number of students for schools in Campbell with pupil to teacher ratios over 25?
columns: - name: students type: INTEGER - name: city type: VARCHAR - name: pupil_teacher_ratio type: VARCHAR table: table_name_13
SELECT MAX(students) FROM table_name_13 WHERE city = "campbell" AND pupil_teacher_ratio > 25
How many years does simon baker appear as a nominee?
columns: - name: year type: VARCHAR - name: nominee type: VARCHAR table: table_name_84
SELECT COUNT(year) FROM table_name_84 WHERE nominee = "simon baker"
What is the kit maker for team foolad?
columns: - name: kit_maker type: VARCHAR - name: team type: VARCHAR table: table_27383390_2
SELECT kit_maker FROM table_27383390_2 WHERE team = "Foolad"
Which Village has a Region of Côte De Nuits, Wine Styles of Red Wine, and a Grand Cru of Latricières-Chambertin?
columns: - name: village type: VARCHAR - name: grand_cru type: VARCHAR - name: region type: VARCHAR - name: wine_style type: VARCHAR table: table_name_57
SELECT village FROM table_name_57 WHERE region = "côte de nuits" AND wine_style = "red wine" AND grand_cru = "latricières-chambertin"
What is the municipality that has an area of exactly 214.44 sq. km?
columns: - name: municipality type: VARCHAR - name: "area__km\xB2_" type: VARCHAR table: table_255885_1
SELECT municipality FROM table_255885_1 WHERE area__km²_ = "214.44"
Name the mandate for list pct 12.39%
columns: - name: mandate type: VARCHAR - name: list_pct type: VARCHAR table: table_14834801_1
SELECT mandate FROM table_14834801_1 WHERE list_pct = "12.39%"
WHAT WAS THE RESULT FOR NOVEMBER 29, 2001?
columns: - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_30
SELECT result FROM table_name_30 WHERE date = "november 29, 2001"
What is the college for the player that went to ridge community high school and is defensive back?
columns: - name: college type: VARCHAR - name: position type: VARCHAR - name: school type: VARCHAR table: table_name_19
SELECT college FROM table_name_19 WHERE position = "defensive back" AND school = "ridge community high school"
What is the smallest lane for rank 6?
columns: - name: lane type: INTEGER - name: rank type: VARCHAR table: table_name_64
SELECT MIN(lane) FROM table_name_64 WHERE rank = 6
Which Opponent has an Attendance of bye?
columns: - name: opponent type: VARCHAR - name: attendance type: VARCHAR table: table_name_76
SELECT opponent FROM table_name_76 WHERE attendance = "bye"
What rank had more than 165 laps and a finish of 5?
columns: - name: rank type: VARCHAR - name: laps type: VARCHAR - name: finish type: VARCHAR table: table_name_17
SELECT rank FROM table_name_17 WHERE laps > 165 AND finish = "5"
Who was the opponent at the game that had a loss of Leonard (7–8)?
columns: - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_82
SELECT opponent FROM table_name_82 WHERE loss = "leonard (7–8)"
Tell me the elevation for oslo
columns: - name: elevation type: VARCHAR - name: county type: VARCHAR table: table_name_20
SELECT elevation FROM table_name_20 WHERE county = "oslo"
Name the average attendance from june 11
columns: - name: attendance type: INTEGER - name: date type: VARCHAR table: table_name_50
SELECT AVG(attendance) FROM table_name_50 WHERE date = "june 11"
What Player has a To par of +5 with a Score of 70-70-71-74=285?
columns: - name: player type: VARCHAR - name: to_par type: VARCHAR - name: score type: VARCHAR table: table_name_12
SELECT player FROM table_name_12 WHERE to_par = "+5" AND score = 70 - 70 - 71 - 74 = 285
Name the average round where Dave Stachelski was picked smaller than 187.
columns: - name: round type: INTEGER - name: overall type: VARCHAR - name: player type: VARCHAR table: table_name_28
SELECT AVG(round) FROM table_name_28 WHERE overall < 187 AND player = "dave stachelski"
Which Year has a nominated outstanding actor in a musical?
columns: - name: year type: VARCHAR - name: result type: VARCHAR - name: category type: VARCHAR table: table_name_88
SELECT year FROM table_name_88 WHERE result = "nominated" AND category = "outstanding actor in a musical"
Which Muklom has a Halang of wɯ¹cʰi¹?
columns: - name: muklom type: VARCHAR - name: halang type: VARCHAR table: table_name_23
SELECT muklom FROM table_name_23 WHERE halang = "wɯ¹cʰi¹"
What 1992 has atp masters series for the 1995?
columns: - name: Id type: VARCHAR table: table_name_50
SELECT 1992 FROM table_name_50 WHERE 1995 = "atp masters series"
How many total points were in 1992?
columns: - name: points type: VARCHAR - name: year type: VARCHAR table: table_name_74
SELECT COUNT(points) FROM table_name_74 WHERE year = 1992
What is the smallest attendance number for august 9, 1968?
columns: - name: attendance type: INTEGER - name: date type: VARCHAR table: table_name_45
SELECT MIN(attendance) FROM table_name_45 WHERE date = "august 9, 1968"
Which Set 2 has a Set 3 of 20–25?
columns: - name: set_2 type: VARCHAR - name: set_3 type: VARCHAR table: table_name_70
SELECT set_2 FROM table_name_70 WHERE set_3 = "20–25"
What was the evening gown score for the one who had a preliminary average of 8.121 (8)?
columns: - name: evening_gown type: VARCHAR - name: preliminary_average type: VARCHAR table: table_16323766_3
SELECT evening_gown FROM table_16323766_3 WHERE preliminary_average = "8.121 (8)"
What Player had a To Par of +2?
columns: - name: player type: VARCHAR - name: to_par type: VARCHAR table: table_name_78
SELECT player FROM table_name_78 WHERE to_par = "+2"
What is the average Frequency MHz that is on farwell, texas?
columns: - name: frequency_mhz type: INTEGER - name: city_of_license type: VARCHAR table: table_name_72
SELECT AVG(frequency_mhz) FROM table_name_72 WHERE city_of_license = "farwell, texas"
What is the total number of Issues has a End month of oct-80?
columns: - name: number_of_issues type: VARCHAR - name: end_month type: VARCHAR table: table_name_60
SELECT COUNT(number_of_issues) FROM table_name_60 WHERE end_month = "oct-80"
What torque does a 1905 cc capacity have?
columns: - name: torque type: VARCHAR - name: capacity type: VARCHAR table: table_name_63
SELECT torque FROM table_name_63 WHERE capacity = "1905 cc"
Which player was drafted overall from the college of Nebraska in a round under 6, pick of 15, and overall under 224?
columns: - name: name type: VARCHAR - name: college type: VARCHAR - name: pick type: VARCHAR - name: overall type: VARCHAR - name: round type: VARCHAR table: table_name_19
SELECT name FROM table_name_19 WHERE overall < 224 AND round < 6 AND pick = 15 AND college = "nebraska"
How many women has reached the title of Miss International representing the country ranked as number 1?
columns: - name: miss_international type: INTEGER - name: rank type: VARCHAR table: table_29942205_1
SELECT MIN(miss_international) FROM table_29942205_1 WHERE rank = 1
For the item that has a Gecko of 'font', what is the KHTML value?
columns: - name: khtml type: VARCHAR - name: gecko type: VARCHAR table: table_name_11
SELECT khtml FROM table_name_11 WHERE gecko = "font"
Who is the Visitor on april 8?
columns: - name: visitor type: VARCHAR - name: date type: VARCHAR table: table_name_94
SELECT visitor FROM table_name_94 WHERE date = "april 8"
What's the lowest amount of 12 games and less than 48 rebounds?
columns: - name: rank type: INTEGER - name: games type: VARCHAR - name: rebounds type: VARCHAR table: table_name_1
SELECT MIN(rank) FROM table_name_1 WHERE games = 12 AND rebounds < 48
What is the part 3 entry that has a part 4 entry of giboran?
columns: - name: part_3 type: VARCHAR - name: part_4 type: VARCHAR table: table_name_31
SELECT part_3 FROM table_name_31 WHERE part_4 = "giboran"
What was the result on september 26?
columns: - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_43
SELECT result FROM table_name_43 WHERE date = "september 26"
what is the finishes when points is more than 337 and starts is more than 26?
columns: - name: finishes type: INTEGER - name: points type: VARCHAR - name: starts type: VARCHAR table: table_name_90
SELECT SUM(finishes) FROM table_name_90 WHERE points > 337 AND starts > 26
Who was the Opponent when Terry Miles was the Man of the Match?
columns: - name: opponent type: VARCHAR - name: man_of_the_match type: VARCHAR table: table_name_1
SELECT opponent FROM table_name_1 WHERE man_of_the_match = "terry miles"
How many rides did it take to get less than 3 bonus pts in no more than 7 matches?
columns: - name: rides type: INTEGER - name: bonus_pts type: VARCHAR - name: matches type: VARCHAR table: table_name_92
SELECT MIN(rides) FROM table_name_92 WHERE bonus_pts < 3 AND matches < 7
What is the Meet of the Event with a Time of 7:55.02?
columns: - name: meet type: VARCHAR - name: time type: VARCHAR table: table_name_33
SELECT meet FROM table_name_33 WHERE time = "7:55.02"
What is the grid total associated with a Time/Retired of +33.634, and a Laps smaller than 19?
columns: - name: grid type: INTEGER - name: time_retired type: VARCHAR - name: laps type: VARCHAR table: table_name_77
SELECT MIN(grid) FROM table_name_77 WHERE time_retired = "+33.634" AND laps < 19
What is the prominence in m of a col in m greater than 738?
columns: - name: prominence__m_ type: VARCHAR - name: col__m_ type: INTEGER table: table_name_57
SELECT prominence__m_ FROM table_name_57 WHERE col__m_ > 738
How many goals have a result of 0-1 on march 28, 2007?
columns: - name: goals type: VARCHAR - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_48
SELECT COUNT(goals) FROM table_name_48 WHERE result = "0-1" AND date = "march 28, 2007"
In the match as corio oval, who was the away team?
columns: - name: away_team type: VARCHAR - name: venue type: VARCHAR table: table_name_29
SELECT away_team FROM table_name_29 WHERE venue = "corio oval"
What is the record of the 73-82 score?
columns: - name: record type: VARCHAR - name: score type: VARCHAR table: table_name_32
SELECT record FROM table_name_32 WHERE score = "73-82"
What's the average of all years tournaments were hosted in Doha, Qatar?
columns: - name: year type: INTEGER - name: venue type: VARCHAR table: table_name_81
SELECT AVG(year) FROM table_name_81 WHERE venue = "doha, qatar"
how many literate males are there that has a district population of 6.65?
columns: - name: Literate type: VARCHAR - name: _percentage_of_district_population type: VARCHAR table: table_28939145_2
SELECT Literate AS male FROM table_28939145_2 WHERE _percentage_of_district_population = "6.65"
What was the percentage for T. Papadopoulos when D. Christofias was 28.4%?
columns: - name: t_papadopoulos type: VARCHAR - name: d_christofias type: VARCHAR table: table_name_48
SELECT t_papadopoulos FROM table_name_48 WHERE d_christofias = "28.4%"
What is the power of the engine with an engine code m44b19?
columns: - name: power type: VARCHAR - name: engine_code type: VARCHAR table: table_name_84
SELECT power FROM table_name_84 WHERE engine_code = "m44b19"
what is the highest rank for director john woo?
columns: - name: rank type: INTEGER - name: director type: VARCHAR table: table_name_47
SELECT MAX(rank) FROM table_name_47 WHERE director = "john woo"
Which Round has a Name of john goodyear?
columns: - name: round type: VARCHAR - name: name type: VARCHAR table: table_name_55
SELECT round FROM table_name_55 WHERE name = "john goodyear"
In what award show was Bad Girls nominated for Best Loved Drama in 2002?
columns: - name: award_show type: VARCHAR - name: category type: VARCHAR - name: year type: VARCHAR table: table_name_53
SELECT award_show FROM table_name_53 WHERE category = "best loved drama" AND year = 2002
In the match where Melbourne was the away team, how much did they score?
columns: - name: away_team type: VARCHAR table: table_name_52
SELECT away_team AS score FROM table_name_52 WHERE away_team = "melbourne"
What did Fred Couples place?
columns: - name: place type: VARCHAR - name: player type: VARCHAR table: table_name_61
SELECT place FROM table_name_61 WHERE player = "fred couples"
What is the sum of week(s) with an attendance of 30,751?
columns: - name: week type: INTEGER - name: attendance type: VARCHAR table: table_name_77
SELECT SUM(week) FROM table_name_77 WHERE attendance = 30 OFFSET 751
What is the average Round, when Player is "Gurnest Brown", and when Pick # is greater than 180?
columns: - name: round type: INTEGER - name: player type: VARCHAR - name: pick__number type: VARCHAR table: table_name_84
SELECT AVG(round) FROM table_name_84 WHERE player = "gurnest brown" AND pick__number > 180
What is the ε (m −1 cm −1 ) of the orange flourescent dye?
columns: - name: "\u03B5__m_\u22121_cm_\u22121__" type: VARCHAR - name: color type: VARCHAR table: table_26428602_1
SELECT ε__m_−1_cm_−1__ FROM table_26428602_1 WHERE color = "orange"
What is the lowest year for an engine of ford zetec-r v8, and points greater than 0?
columns: - name: year type: INTEGER - name: engine type: VARCHAR - name: points type: VARCHAR table: table_name_47
SELECT MIN(year) FROM table_name_47 WHERE engine = "ford zetec-r v8" AND points > 0
Who was the runner up when the won by 4 strokes?
columns: - name: runner_s__up type: VARCHAR - name: margin_of_victory type: VARCHAR table: table_21649285_2
SELECT runner_s__up FROM table_21649285_2 WHERE margin_of_victory = "4 strokes"
What time/retired for a grid less than 19, under 21 laps, and made by aprilia?
columns: - name: time_retired type: VARCHAR - name: laps type: VARCHAR - name: grid type: VARCHAR - name: manufacturer type: VARCHAR table: table_name_38
SELECT time_retired FROM table_name_38 WHERE grid < 19 AND manufacturer = "aprilia" AND laps < 21
What is the 2007 population of Gigmoto?
columns: - name: population__2007_ type: VARCHAR - name: municipality type: VARCHAR table: table_255829_1
SELECT COUNT(population__2007_) FROM table_255829_1 WHERE municipality = "Gigmoto"
Name the number of numbers for howard clark
columns: - name: 'no' type: VARCHAR - name: runner_s__up type: VARCHAR table: table_1569625_1
SELECT COUNT(no) FROM table_1569625_1 WHERE runner_s__up = "Howard Clark"
Which season had an average under 28, a rank under 10, and a partner of Janja Lesar?
columns: - name: season type: VARCHAR - name: professional_partner type: VARCHAR - name: average type: VARCHAR - name: rank type: VARCHAR table: table_name_7
SELECT season FROM table_name_7 WHERE average < 28 AND rank < 10 AND professional_partner = "janja lesar"
What are the lowest points when poles were 0 and races were 10?
columns: - name: points type: INTEGER - name: poles type: VARCHAR - name: races type: VARCHAR table: table_24405773_1
SELECT MIN(points) FROM table_24405773_1 WHERE poles = 0 AND races = 10
How many winners did Halcones uv xalapa have?
columns: - name: winners type: VARCHAR - name: team type: VARCHAR table: table_name_83
SELECT winners FROM table_name_83 WHERE team = "halcones uv xalapa"
What week shows for december 31, 1993?
columns: - name: week type: VARCHAR - name: date type: VARCHAR table: table_name_25
SELECT COUNT(week) FROM table_name_25 WHERE date = "december 31, 1993"
Name the winning driver for 20 april
columns: - name: winning_driver type: VARCHAR - name: date type: VARCHAR table: table_25322130_3
SELECT winning_driver FROM table_25322130_3 WHERE date = "20 April"
What are the records when Elzbieta Urbanczik competed?
columns: - name: record type: VARCHAR - name: athletes type: VARCHAR table: table_14884844_2
SELECT record FROM table_14884844_2 WHERE athletes = "Elzbieta Urbanczik"