question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What episode number in the series originally aired on February 25, 2001?
columns: - name: no_in_series type: VARCHAR - name: original_air_date type: VARCHAR table: table_1876825_3
SELECT no_in_series FROM table_1876825_3 WHERE original_air_date = "February 25, 2001"
What was the Result of the game dated 21st?
columns: - name: result type: VARCHAR - name: date type: VARCHAR table: table_name_97
SELECT result FROM table_name_97 WHERE date = "21st"
Whicih Extra points are the average ones that have Points smaller than 6?
columns: - name: extra_points type: INTEGER - name: points type: INTEGER table: table_name_35
SELECT AVG(extra_points) FROM table_name_35 WHERE points < 6
Name the player for 22 events
columns: - name: player type: VARCHAR - name: events type: VARCHAR table: table_24108789_6
SELECT player FROM table_24108789_6 WHERE events = 22
When is the birth date of player with right arm fast style?
columns: - name: date_of_birth type: VARCHAR - name: bowling_style type: VARCHAR table: table_name_74
SELECT date_of_birth FROM table_name_74 WHERE bowling_style = "right arm fast"
What was the start with a rank of 3 in 1936?
columns: - name: start type: VARCHAR - name: rank type: VARCHAR - name: year type: VARCHAR table: table_name_12
SELECT start FROM table_name_12 WHERE rank = "3" AND year = "1936"
Which competition was on 17/9/00?
columns: - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_47
SELECT competition FROM table_name_47 WHERE date = "17/9/00"
Who is the rider with 22 laps and a +1:44.775 time/retired?
columns: - name: rider type: VARCHAR - name: laps type: VARCHAR - name: time_retired type: VARCHAR table: table_name_70
SELECT rider FROM table_name_70 WHERE laps = "22" AND time_retired = "+1:44.775"
Who is the color commentator in 2008?
columns: - name: color_commentator_s_ type: VARCHAR - name: year type: VARCHAR table: table_name_16
SELECT color_commentator_s_ FROM table_name_16 WHERE year = 2008
With the country of Sweden and the result is out, what is the song?
columns: - name: song type: VARCHAR - name: result type: VARCHAR - name: country type: VARCHAR table: table_19249824_1
SELECT song FROM table_19249824_1 WHERE result = "Out" AND country = "Sweden"
Who is the away team for tie no 15?
columns: - name: away_team type: VARCHAR - name: tie_no type: VARCHAR table: table_24887326_6
SELECT away_team FROM table_24887326_6 WHERE tie_no = 15
Tell me the captain for guns of 28
columns: - name: captain type: VARCHAR - name: guns type: VARCHAR table: table_name_15
SELECT captain FROM table_name_15 WHERE guns = "28"
What was the venue where there were 62 runs?
columns: - name: venue type: VARCHAR - name: runs type: VARCHAR table: table_name_97
SELECT venue FROM table_name_97 WHERE runs = "62"
What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73?
columns: - name: ends_won type: INTEGER - name: ends_lost type: VARCHAR - name: shot__percentage type: VARCHAR table: table_name_4
SELECT MAX(ends_won) FROM table_name_4 WHERE ends_lost = 47 AND shot__percentage < 73
Which time has a Method of decision(majority), and an Opponent of keisuke yamada?
columns: - name: time type: VARCHAR - name: method type: VARCHAR - name: opponent type: VARCHAR table: table_name_55
SELECT time FROM table_name_55 WHERE method = "decision(majority)" AND opponent = "keisuke yamada"
If the home is Atlético Tucumán, what is the name of the first leg?
columns: - name: home__2nd_leg_ type: VARCHAR table: table_17968229_1
SELECT 1 AS st_leg FROM table_17968229_1 WHERE home__2nd_leg_ = "Atlético Tucumán"
A score of 71-71=142 earned what place?
columns: - name: place type: VARCHAR - name: score type: VARCHAR table: table_name_11
SELECT place FROM table_name_11 WHERE score = 71 - 71 = 142
When the crowd was larger than 20,915 what did the Away team score?
columns: - name: away_team type: VARCHAR - name: crowd type: INTEGER table: table_name_87
SELECT away_team AS score FROM table_name_87 WHERE crowd > 20 OFFSET 915
What did the Away team score in their game at Victoria Park?
columns: - name: away_team type: VARCHAR - name: venue type: VARCHAR table: table_name_64
SELECT away_team AS score FROM table_name_64 WHERE venue = "victoria park"
Where is the moving from location with a transfer window of summer and the source kerkida.net?
columns: - name: moving_from type: VARCHAR - name: transfer_window type: VARCHAR - name: source type: VARCHAR table: table_name_88
SELECT moving_from FROM table_name_88 WHERE transfer_window = "summer" AND source = "kerkida.net"
what is the grid when the time/retired is +9 laps and the laps is larger than 91?
columns: - name: grid type: VARCHAR - name: time_retired type: VARCHAR - name: laps type: VARCHAR table: table_name_18
SELECT COUNT(grid) FROM table_name_18 WHERE time_retired = "+9 laps" AND laps > 91
What is the meaning of the class 6 verbs?
columns: - name: verb_meaning type: VARCHAR - name: class type: VARCHAR table: table_1745843_5
SELECT verb_meaning FROM table_1745843_5 WHERE class = "6"
What year did the Nashville Metros have the Regular Season 2nd, central?
columns: - name: year type: VARCHAR - name: regular_season type: VARCHAR table: table_name_74
SELECT year FROM table_name_74 WHERE regular_season = "2nd, central"
What's the lowest against on 27/03/1971?
columns: - name: against type: INTEGER - name: date type: VARCHAR table: table_name_45
SELECT MIN(against) FROM table_name_45 WHERE date = "27/03/1971"
Which date has an Opponent of angels, and a Loss of sanderson (0–1)?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR - name: loss type: VARCHAR table: table_name_95
SELECT date FROM table_name_95 WHERE opponent = "angels" AND loss = "sanderson (0–1)"
Which Home team score has an Away team of carlton?
columns: - name: home_team type: VARCHAR - name: away_team type: VARCHAR table: table_name_72
SELECT home_team AS score FROM table_name_72 WHERE away_team = "carlton"
What was the venue of the Melbourne team?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_91
SELECT venue FROM table_name_91 WHERE home_team = "melbourne"
What shows as the status for the name of de la red?
columns: - name: status type: VARCHAR - name: name type: VARCHAR table: table_name_61
SELECT status FROM table_name_61 WHERE name = "de la red"
What circuit is the Sprint Cup series championship?
columns: - name: circuit type: VARCHAR - name: championship type: VARCHAR table: table_name_29
SELECT circuit FROM table_name_29 WHERE championship = "sprint cup series"
What is Robert Allenby's average to par score?
columns: - name: to_par type: INTEGER - name: player type: VARCHAR table: table_name_88
SELECT AVG(to_par) FROM table_name_88 WHERE player = "robert allenby"
What is the new classification for La Mirada, California?
columns: - name: new_classification type: VARCHAR - name: location type: VARCHAR table: table_name_69
SELECT new_classification FROM table_name_69 WHERE location = "la mirada, california"
What level for seasons after 2003, a Division of kakkonen (second division), and a Position of 12th?
columns: - name: level type: VARCHAR - name: position type: VARCHAR - name: season type: VARCHAR - name: division type: VARCHAR table: table_name_21
SELECT level FROM table_name_21 WHERE season > 2003 AND division = "kakkonen (second division)" AND position = "12th"
Name the most minutes and starts being 12
columns: - name: minutes type: INTEGER - name: starts type: VARCHAR table: table_24477075_1
SELECT MAX(minutes) FROM table_24477075_1 WHERE starts = 12
What is every company with an index weighting % of 1 and the city of Dimitrovgrad?
columns: - name: company type: VARCHAR - name: index_weighting___percentage type: VARCHAR - name: city type: VARCHAR table: table_20667854_1
SELECT company FROM table_20667854_1 WHERE index_weighting___percentage = "1" AND city = "Dimitrovgrad"
Which horse won with a time of 1:35.98 and what was their position?
columns: - name: winner_2nd type: VARCHAR - name: time type: VARCHAR table: table_15926991_1
SELECT winner_2nd FROM table_15926991_1 WHERE time = "1:35.98"
When emt 9 is the series what is the date?
columns: - name: date type: VARCHAR - name: series type: VARCHAR table: table_25572118_1
SELECT date FROM table_25572118_1 WHERE series = "EMT 9"
when Casey Martin's best finish was t-65, where did he land in the money list rankings?
columns: - name: money_list_rank type: VARCHAR - name: best_finish type: VARCHAR table: table_1697190_2
SELECT money_list_rank FROM table_1697190_2 WHERE best_finish = "T-65"
what is the country when the score is 71-65-69=205?
columns: - name: country type: VARCHAR - name: score type: VARCHAR table: table_name_47
SELECT country FROM table_name_47 WHERE score = 71 - 65 - 69 = 205
Which Opened is the highest one that has a Themed Area of aerial park, and a Manufacturer of zamperla?
columns: - name: opened type: INTEGER - name: themed_area type: VARCHAR - name: manufacturer type: VARCHAR table: table_name_76
SELECT MAX(opened) FROM table_name_76 WHERE themed_area = "aerial park" AND manufacturer = "zamperla"
Name the qual for rank of 9
columns: - name: qual type: VARCHAR - name: rank type: VARCHAR table: table_name_78
SELECT qual FROM table_name_78 WHERE rank = "9"
How many countries had a total freshwater withdrawal (km 3 /yr) where the agricultural use (m 3 /p/yr)(in %) was 428(62%)?
columns: - name: total_freshwater_withdrawal__km_3__yr_ type: VARCHAR - name: agricultural_use__m_3__p_yr__in__percentage_ type: VARCHAR table: table_15909409_2
SELECT COUNT(total_freshwater_withdrawal__km_3__yr_) FROM table_15909409_2 WHERE agricultural_use__m_3__p_yr__in__percentage_ = "428(62%)"
How many viewers watched the episode written by shana goldberg-meehan & greg malins?
columns: - name: us_viewers__million_ type: VARCHAR - name: written_by type: VARCHAR table: table_27403436_1
SELECT us_viewers__million_ FROM table_27403436_1 WHERE written_by = "Shana Goldberg-Meehan & Greg Malins"
What is Score, when Country is "United States", and when Player is "Bob Tway"?
columns: - name: score type: VARCHAR - name: country type: VARCHAR - name: player type: VARCHAR table: table_name_43
SELECT score FROM table_name_43 WHERE country = "united states" AND player = "bob tway"
What is the name of the player picked before round 2?
columns: - name: player type: VARCHAR - name: round type: INTEGER table: table_name_75
SELECT player FROM table_name_75 WHERE round < 2
What was the maximum number in written when the standard was 2?
columns: - name: written type: INTEGER - name: standard type: VARCHAR table: table_19534874_2
SELECT MAX(written) FROM table_19534874_2 WHERE standard = 2
what is the soap opera when the actor is dave duffy?
columns: - name: soap_opera type: VARCHAR - name: actor type: VARCHAR table: table_name_11
SELECT soap_opera FROM table_name_11 WHERE actor = "dave duffy"
What was the event when suárez ( tri ) w 16–6 was round of 32?
columns: - name: event type: VARCHAR - name: round_of_32 type: VARCHAR table: table_27294107_11
SELECT event FROM table_27294107_11 WHERE round_of_32 = "Suárez ( TRI ) W 16–6"
What is the score of player jay haas?
columns: - name: score type: VARCHAR - name: player type: VARCHAR table: table_name_48
SELECT score FROM table_name_48 WHERE player = "jay haas"
Which channel has the host Art Rooijakkers?
columns: - name: channel type: VARCHAR - name: host_s_ type: VARCHAR table: table_178242_1
SELECT channel FROM table_178242_1 WHERE host_s_ = "Art Rooijakkers"
What is the lowest number of wins of the team with less than 24 scored, 27 conceded, and more than 18 played?
columns: - name: wins type: INTEGER - name: played type: VARCHAR - name: scored type: VARCHAR - name: conceded type: VARCHAR table: table_name_32
SELECT MIN(wins) FROM table_name_32 WHERE scored < 24 AND conceded = 27 AND played > 18
Name the sport with championships less than 1 and club of erie bayhawks
columns: - name: sport type: VARCHAR - name: championships type: VARCHAR - name: club type: VARCHAR table: table_name_19
SELECT sport FROM table_name_19 WHERE championships < 1 AND club = "erie bayhawks"
Who is the runner-up for the season 2008-09?
columns: - name: runner_up type: VARCHAR - name: season type: VARCHAR table: table_2429942_2
SELECT runner_up FROM table_2429942_2 WHERE season = "2008-09"
What theme has special notes from calgary flames gift set?
columns: - name: theme type: VARCHAR - name: special_notes type: VARCHAR table: table_name_24
SELECT theme FROM table_name_24 WHERE special_notes = "from calgary flames gift set"
The highest position with more than 16 points and less than 7 concedes?
columns: - name: position type: INTEGER - name: points type: VARCHAR - name: conceded type: VARCHAR table: table_name_40
SELECT MAX(position) FROM table_name_40 WHERE points > 16 AND conceded < 7
What is the result of the ceremony in 2006 (79th)?
columns: - name: result type: VARCHAR - name: year__ceremony_ type: VARCHAR table: table_name_1
SELECT result FROM table_name_1 WHERE year__ceremony_ = "2006 (79th)"
What is the Away team score with north melbourne as home team?
columns: - name: away_team type: VARCHAR - name: home_team type: VARCHAR table: table_name_50
SELECT away_team AS score FROM table_name_50 WHERE home_team = "north melbourne"
What is the family friendly status of the punk genre song from the 1970s?
columns: - name: family_friendly type: VARCHAR - name: decade type: VARCHAR - name: genre type: VARCHAR table: table_name_8
SELECT family_friendly FROM table_name_8 WHERE decade = "1970s" AND genre = "punk"
Name the number of coverage for 106.7 energy fm
columns: - name: coverage type: VARCHAR - name: branding type: VARCHAR table: table_27914076_1
SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM"
Which driver had an accident and laps smaller than 53?
columns: - name: driver type: VARCHAR - name: laps type: VARCHAR - name: time_retired type: VARCHAR table: table_name_82
SELECT driver FROM table_name_82 WHERE laps < 53 AND time_retired = "accident"
What is the position of the player with a round less than 20 from the school/club Washington?
columns: - name: position type: VARCHAR - name: round type: VARCHAR - name: school_club_team type: VARCHAR table: table_name_17
SELECT position FROM table_name_17 WHERE round < 20 AND school_club_team = "washington"
Name the episodes when region 1 is september 19, 2006
columns: - name: episodes type: VARCHAR - name: region_1 type: VARCHAR table: table_14562722_2
SELECT episodes FROM table_14562722_2 WHERE region_1 = "September 19, 2006"
What position does adam rachel play?
columns: - name: position type: VARCHAR - name: player type: VARCHAR table: table_name_35
SELECT position FROM table_name_35 WHERE player = "adam rachel"
What is the sum of Maidens with a number of Matches that is 2?
columns: - name: maidens type: INTEGER - name: matches type: VARCHAR table: table_name_36
SELECT SUM(maidens) FROM table_name_36 WHERE matches = 2
Date of 4 august 2007 had what opponents?
columns: - name: opponents type: VARCHAR - name: date type: VARCHAR table: table_name_17
SELECT opponents FROM table_name_17 WHERE date = "4 august 2007"
What is the high amount of points on February 11?
columns: - name: high_points type: VARCHAR - name: date type: VARCHAR table: table_17311812_8
SELECT high_points FROM table_17311812_8 WHERE date = "February 11"
How many list entry numbers are located in Platting Road, Lydgate?
columns: - name: list_entry_number type: VARCHAR - name: location type: VARCHAR table: table_name_95
SELECT COUNT(list_entry_number) FROM table_name_95 WHERE location = "platting road, lydgate"
Which month and year held the Bolivia Special title?
columns: - name: month_ type: VARCHAR - name: _year type: VARCHAR - name: title type: VARCHAR table: table_name_18
SELECT month_ & _year FROM table_name_18 WHERE title = "bolivia special"
Name where bethany college is
columns: - name: location type: VARCHAR - name: institution type: VARCHAR table: table_262476_1
SELECT location FROM table_262476_1 WHERE institution = "Bethany College"
What is the winner for Virginia?
columns: - name: winner type: VARCHAR - name: location type: VARCHAR table: table_name_99
SELECT winner FROM table_name_99 WHERE location = "virginia"
Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt?
columns: - name: derivatives type: VARCHAR - name: launch_date type: VARCHAR table: table_name_57
SELECT derivatives FROM table_name_57 WHERE launch_date = "july 15, 1970; 15:05 gmt"
What is the venue where the home team is Footscray?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_57
SELECT venue FROM table_name_57 WHERE home_team = "footscray"
Score of 2 – 3 has what attendance?
columns: - name: attendance type: VARCHAR - name: score type: VARCHAR table: table_name_61
SELECT attendance FROM table_name_61 WHERE score = "2 – 3"
Which Record has a Game smaller than 19, and Points smaller than 19, and a Score of 4–6?
columns: - name: record type: VARCHAR - name: score type: VARCHAR - name: game type: VARCHAR - name: points type: VARCHAR table: table_name_24
SELECT record FROM table_name_24 WHERE game < 19 AND points < 19 AND score = "4–6"
What engine has g tyres and is driven by elio de angelis?
columns: - name: engine type: VARCHAR - name: tyres type: VARCHAR - name: driver type: VARCHAR table: table_name_30
SELECT engine FROM table_name_30 WHERE tyres = "g" AND driver = "elio de angelis"
What was the average number of members Nominated by the Taoiseach, when the Agricultural Panel had less than 1 member, and when the Administrative Panel had fewer than 0 members?
columns: - name: nominated_by_the_taoiseach type: INTEGER - name: agricultural_panel type: VARCHAR - name: administrative_panel type: VARCHAR table: table_name_10
SELECT AVG(nominated_by_the_taoiseach) FROM table_name_10 WHERE agricultural_panel < 1 AND administrative_panel < 0
what is the number of the chosen club where the hc dukla trenčín (slovakia) is from
columns: - name: pick type: VARCHAR - name: college_junior_club_team type: VARCHAR table: table_2840500_3
SELECT COUNT(pick) FROM table_2840500_3 WHERE college_junior_club_team = "HC Dukla Trenčín (Slovakia)"
What is the maximum 2010 value for China?
columns: - name: economy type: VARCHAR table: table_30133_3
SELECT MAX(2010) FROM table_30133_3 WHERE economy = "China"
how many points are there for a Chassis of porsche 718, and a Year smaller than 1964?
columns: - name: points type: VARCHAR - name: chassis type: VARCHAR - name: year type: VARCHAR table: table_name_34
SELECT COUNT(points) FROM table_name_34 WHERE chassis = "porsche 718" AND year < 1964
What is the sSpec Number of the model with a 1ghz frequency?
columns: - name: sspec_number type: VARCHAR - name: frequency type: VARCHAR table: table_name_52
SELECT sspec_number FROM table_name_52 WHERE frequency = "1ghz"
What is the Date of the at&t pebble beach national pro-am Tournament?
columns: - name: date type: VARCHAR - name: tournament type: VARCHAR table: table_name_91
SELECT date FROM table_name_91 WHERE tournament = "at&t pebble beach national pro-am"
How many Attendances have a Result F – A of 0 – 2, and a Date of 31 january 1903?
columns: - name: attendance type: INTEGER - name: result_f___a type: VARCHAR - name: date type: VARCHAR table: table_name_71
SELECT AVG(attendance) FROM table_name_71 WHERE result_f___a = "0 – 2" AND date = "31 january 1903"
What is Rhett Mclane's highest pick number?
columns: - name: pick__number type: INTEGER - name: player type: VARCHAR table: table_name_94
SELECT MAX(pick__number) FROM table_name_94 WHERE player = "rhett mclane"
What is the highest number of people in attendance in the game against the Buffalo Bills in a week later than 14?
columns: - name: attendance type: INTEGER - name: opponent type: VARCHAR - name: week type: VARCHAR table: table_name_92
SELECT MAX(attendance) FROM table_name_92 WHERE opponent = "buffalo bills" AND week > 14
What was the attendance of the game on December 11, 2005?
columns: - name: attendance type: VARCHAR - name: date type: VARCHAR table: table_name_82
SELECT attendance FROM table_name_82 WHERE date = "december 11, 2005"
Which type of locomotive was built in 1923?
columns: - name: type type: VARCHAR - name: built type: VARCHAR table: table_name_46
SELECT type FROM table_name_46 WHERE built = 1923
When the venue was brunswick street oval what was the home teams score?
columns: - name: home_team type: VARCHAR - name: venue type: VARCHAR table: table_name_32
SELECT home_team AS score FROM table_name_32 WHERE venue = "brunswick street oval"
For the Crew with Year 9 2nd Quads of STM, Year 9 1st Quads of SOM, and a Year 8 3rd Quads of STA what was the Year 8 1st Quads?
columns: - name: year_8_1st_quad type: VARCHAR - name: year_8_3rd_quad type: VARCHAR - name: year_9_2nd_quad type: VARCHAR - name: year_9_1st_quad type: VARCHAR table: table_name_5
SELECT year_8_1st_quad FROM table_name_5 WHERE year_9_2nd_quad = "stm" AND year_9_1st_quad = "som" AND year_8_3rd_quad = "sta"
What is the first elected for georgia 4?
columns: - name: first_elected type: VARCHAR - name: district type: VARCHAR table: table_1341930_11
SELECT first_elected FROM table_1341930_11 WHERE district = "Georgia 4"
Name the number of finishes for 15 entries 15 and l'esprit d'equipe
columns: - name: finish type: VARCHAR - name: entries type: VARCHAR - name: winning_yacht type: VARCHAR table: table_256862_1
SELECT COUNT(finish) FROM table_256862_1 WHERE entries = "15" AND winning_yacht = "L'Esprit d'Equipe"
What is the date with 68,463 in attendance?
columns: - name: date type: VARCHAR - name: attendance type: VARCHAR table: table_name_82
SELECT date FROM table_name_82 WHERE attendance = "68,463"
What is the least number of poins for San Lorenzo?
columns: - name: points type: INTEGER - name: team type: VARCHAR table: table_18594107_1
SELECT MIN(points) FROM table_18594107_1 WHERE team = "San Lorenzo"
state the earliest year li xuerui won womens singles
columns: - name: year type: INTEGER - name: womens_singles type: VARCHAR table: table_20361783_1
SELECT MIN(year) FROM table_20361783_1 WHERE womens_singles = "Li Xuerui"
How many points did the opposing team score on Dec. 19, 1982?
columns: - name: opponents type: INTEGER - name: date type: VARCHAR table: table_18847456_2
SELECT MAX(opponents) FROM table_18847456_2 WHERE date = "Dec. 19"
What's the location when the notes area is notes?
columns: - name: location type: VARCHAR table: table_name_27
SELECT location FROM table_name_27 WHERE "notes" = "notes"
what is the method for round 1 and the opponent is bobby mcmaster?
columns: - name: method type: VARCHAR - name: round type: VARCHAR - name: opponent type: VARCHAR table: table_name_97
SELECT method FROM table_name_97 WHERE round = 1 AND opponent = "bobby mcmaster"
On what date was the opponent the Green Bay Packers?
columns: - name: date type: VARCHAR - name: opponent type: VARCHAR table: table_name_43
SELECT date FROM table_name_43 WHERE opponent = "green bay packers"
Who was the team for game 34?
columns: - name: team type: VARCHAR - name: game type: VARCHAR table: table_name_79
SELECT team FROM table_name_79 WHERE game = 34
What year had a record of 4-21?
columns: - name: year type: VARCHAR - name: record type: VARCHAR table: table_name_32
SELECT year FROM table_name_32 WHERE record = "4-21"
Which 1947 Nos has a BR Nos of 48730-9?
columns: - name: br_nos type: VARCHAR table: table_name_55
SELECT 1947 AS _nos FROM table_name_55 WHERE br_nos = "48730-9"
Manager of lyman lamb / marty berghammer is in what league?
columns: - name: league type: VARCHAR - name: manager type: VARCHAR table: table_name_59
SELECT league FROM table_name_59 WHERE manager = "lyman lamb / marty berghammer"