question
stringlengths
12
243
context
stringlengths
45
517
answer
stringlengths
32
484
What is the production number of 3-04?
columns: - name: prod_no type: INTEGER - name: episode_no type: VARCHAR table: table_25046766_3
SELECT MAX(prod_no) FROM table_25046766_3 WHERE episode_no = "3-04"
Which Notes has a Competition of venice marathon?
columns: - name: notes type: VARCHAR - name: competition type: VARCHAR table: table_name_78
SELECT notes FROM table_name_78 WHERE competition = "venice marathon"
What are the years when the ranking is less than 8 with less than 66 goals and name is Paul McGee?
columns: - name: years type: VARCHAR - name: name type: VARCHAR - name: ranking type: VARCHAR - name: goals type: VARCHAR table: table_name_38
SELECT years FROM table_name_38 WHERE ranking < 8 AND goals < 66 AND name = "paul mcgee"
For Raison Blue with a nicotine larger than 0.30000000000000004, what's the lowest quantity?
columns: - name: quantity type: INTEGER - name: name type: VARCHAR - name: nicotine type: VARCHAR table: table_name_60
SELECT MIN(quantity) FROM table_name_60 WHERE name = "raison blue" AND nicotine > 0.30000000000000004
What titles come out monthly?
columns: - name: title type: VARCHAR - name: frequency type: VARCHAR table: table_name_72
SELECT title FROM table_name_72 WHERE frequency = "monthly"
What language did the word mahjong originate from?
columns: - name: source_language type: VARCHAR - name: meaning type: VARCHAR table: table_name_31
SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"
When the Home team was north melbourne what was the Date of the game?
columns: - name: date type: VARCHAR - name: home_team type: VARCHAR table: table_name_49
SELECT date FROM table_name_49 WHERE home_team = "north melbourne"
What was the duration of Daniela Ryf's swimming stage?
columns: - name: swim__15km_ type: VARCHAR - name: athlete type: VARCHAR table: table_17085947_32
SELECT swim__15km_ FROM table_17085947_32 WHERE athlete = "Daniela Ryf"
What is the smallest population in a region greater than 9?
columns: - name: population type: INTEGER - name: region type: INTEGER table: table_name_94
SELECT MIN(population) FROM table_name_94 WHERE region > 9
When the team is ypiranga-sp what is the number of won games?
columns: - name: won type: INTEGER - name: team type: VARCHAR table: table_15405904_1
SELECT MIN(won) FROM table_15405904_1 WHERE team = "Ypiranga-SP"
Who was the successor for vacant louisiana 5th
columns: - name: successor type: VARCHAR - name: vacator type: VARCHAR - name: district type: VARCHAR table: table_2417340_4
SELECT successor FROM table_2417340_4 WHERE vacator = "Vacant" AND district = "Louisiana 5th"
Name the score for charlotte
columns: - name: score type: VARCHAR - name: team type: VARCHAR table: table_17355628_10
SELECT score FROM table_17355628_10 WHERE team = "Charlotte"
What was the lowest population of the GEO ID 3805373380 and the water square mileage smaller than 5.729?
columns: - name: pop__2010_ type: INTEGER - name: geo_id type: VARCHAR - name: water__sqmi_ type: VARCHAR table: table_name_25
SELECT MIN(pop__2010_) FROM table_name_25 WHERE geo_id = 3805373380 AND water__sqmi_ < 5.729
What Hanyu Pinyin is in the Jinning Township?
columns: - name: hanyu_pinyin type: VARCHAR - name: name type: VARCHAR table: table_name_66
SELECT hanyu_pinyin FROM table_name_66 WHERE name = "jinning township"
Where was the game played that had a record of 19-6?
columns: - name: location type: VARCHAR - name: record type: VARCHAR table: table_18904831_7
SELECT location FROM table_18904831_7 WHERE record = "19-6"
Which state includes the Harry A. Gampel Pavilion venue?
columns: - name: state type: VARCHAR - name: venue type: VARCHAR table: table_name_10
SELECT state FROM table_name_10 WHERE venue = "harry a. gampel pavilion"
Name the total number of tourism receipts 2011 where tourism receipts 2003 13.5
columns: - name: tourism_receipts__2011___us type: VARCHAR - name: tourism_receipts__2003___as__percentage_of_gdp_ type: VARCHAR table: table_18524_6
SELECT COUNT(tourism_receipts__2011___us) AS $_per_capita_ FROM table_18524_6 WHERE tourism_receipts__2003___as__percentage_of_gdp_ = "13.5"
What was the time for tracks before 19 on 8/26/69?
columns: - name: time type: VARCHAR - name: release_date type: VARCHAR - name: track type: VARCHAR table: table_name_75
SELECT time FROM table_name_75 WHERE release_date = "8/26/69" AND track < 19
What is the autonomous community with television channels tpa tpa2 rtpa internacional?
columns: - name: autonomous_community type: VARCHAR - name: television_channels type: VARCHAR table: table_23143607_1
SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacional"
Which Attendance has an Opponent of at los angeles rams, and a Week larger than 12?
columns: - name: attendance type: INTEGER - name: opponent type: VARCHAR - name: week type: VARCHAR table: table_name_48
SELECT MAX(attendance) FROM table_name_48 WHERE opponent = "at los angeles rams" AND week > 12
Which venue has a status of Five Nations and an against of 22?
columns: - name: venue type: VARCHAR - name: status type: VARCHAR - name: against type: VARCHAR table: table_name_16
SELECT venue FROM table_name_16 WHERE status = "five nations" AND against = 22
Name the result for friendly competition on 9 october 2010
columns: - name: result type: VARCHAR - name: competition type: VARCHAR - name: date type: VARCHAR table: table_name_79
SELECT result FROM table_name_79 WHERE competition = "friendly" AND date = "9 october 2010"
What is the time/retired for grid 19?
columns: - name: time_retired type: VARCHAR - name: grid type: VARCHAR table: table_name_40
SELECT time_retired FROM table_name_40 WHERE grid = 19
What is the highest production code?
columns: - name: production_code type: INTEGER table: table_26448179_4
SELECT MAX(production_code) FROM table_26448179_4
What is the Tournament with a 3r 2011 and A 2010?
columns: - name: tournament type: VARCHAR table: table_name_63
SELECT tournament FROM table_name_63 WHERE 2011 = "3r" AND 2010 = "a"
Name the total number of rounds for gina carano
columns: - name: round type: VARCHAR - name: opponent type: VARCHAR table: table_name_6
SELECT COUNT(round) FROM table_name_6 WHERE opponent = "gina carano"
Which name has the source apoelfc.com.cy and a type of transfer?
columns: - name: name type: VARCHAR - name: source type: VARCHAR - name: type type: VARCHAR table: table_name_94
SELECT name FROM table_name_94 WHERE source = "apoelfc.com.cy" AND type = "transfer"
When was Jonny Leadbeater President?
columns: - name: season type: VARCHAR - name: president type: VARCHAR table: table_16446652_1
SELECT season FROM table_16446652_1 WHERE president = "Jonny Leadbeater"
What is Alex Tagliani's qual 1?
columns: - name: qual_1 type: VARCHAR - name: name type: VARCHAR table: table_name_89
SELECT qual_1 FROM table_name_89 WHERE name = "alex tagliani"
What is the type of station for ESPN International Sports?
columns: - name: type type: VARCHAR - name: name type: VARCHAR table: table_name_74
SELECT type FROM table_name_74 WHERE name = "espn international sports"
What years did Eddie Hughes play for the Jazz?
columns: - name: years_for_jazz type: VARCHAR - name: player type: VARCHAR table: table_name_53
SELECT years_for_jazz FROM table_name_53 WHERE player = "eddie hughes"
B.P. of 0, and a Pts Agst smaller than 247 has how many total number of played?
columns: - name: played type: VARCHAR - name: bp type: VARCHAR - name: pts_agst type: VARCHAR table: table_name_25
SELECT COUNT(played) FROM table_name_25 WHERE bp = 0 AND pts_agst < 247
Which 1983 has a Tournament of wimbledon?
columns: - name: tournament type: VARCHAR table: table_name_2
SELECT 1983 FROM table_name_2 WHERE tournament = "wimbledon"
What is the total number of semi-final losses for the Kitchener Rangers?
columns: - name: final_losses type: VARCHAR - name: Semi type: INTEGER - name: team type: VARCHAR table: table_17751942_4
SELECT MAX(Semi) - final_losses FROM table_17751942_4 WHERE team = "Kitchener Rangers"
What is the bore for a 9-cyl radial on a 9 AD?
columns: - name: bore type: VARCHAR - name: cyl type: VARCHAR - name: name type: VARCHAR table: table_name_8
SELECT bore FROM table_name_8 WHERE cyl = "9-cyl radial" AND name = "9 ad"
What is the lowest number conceded for the team that had less than 8 wins, scored 21, and had less than 23 points?
columns: - name: conceded type: INTEGER - name: points type: VARCHAR - name: wins type: VARCHAR - name: scored type: VARCHAR table: table_name_77
SELECT MIN(conceded) FROM table_name_77 WHERE wins < 8 AND scored = 21 AND points < 23
What is the highest Played that's for the Team of Cerro Porteño, with a Position that's larger than 1?
columns: - name: played type: INTEGER - name: team type: VARCHAR - name: position type: VARCHAR table: table_name_59
SELECT MAX(played) FROM table_name_59 WHERE team = "cerro porteño" AND position > 1
Who was the home team in the game that led to a 2-3 series record?
columns: - name: home type: VARCHAR - name: record type: VARCHAR table: table_name_10
SELECT home FROM table_name_10 WHERE record = "2-3"
Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt?
columns: - name: outcomes type: VARCHAR - name: launch_date type: VARCHAR table: table_name_32
SELECT outcomes FROM table_name_32 WHERE launch_date = "march 18, 1964; 14:50 gmt"
What is the D43 associated with a D41 of r 21?
columns: - name: d_43 type: VARCHAR - name: d_41 type: VARCHAR table: table_name_44
SELECT d_43 FROM table_name_44 WHERE d_41 = "r 21"
When is the record 5-4?
columns: - name: date type: VARCHAR - name: record type: VARCHAR table: table_name_51
SELECT date FROM table_name_51 WHERE record = "5-4"
What is the Region, when the Catalog is SM 2965-05?
columns: - name: region type: VARCHAR - name: catalog type: VARCHAR table: table_name_5
SELECT region FROM table_name_5 WHERE catalog = "sm 2965-05"
What is the height above sea level for the station opened 175.67km from Wellington prior to 1887?
columns: - name: height_above_sea_level__m_ type: VARCHAR - name: opened type: VARCHAR - name: distance_from_wellington type: VARCHAR table: table_name_2
SELECT height_above_sea_level__m_ FROM table_name_2 WHERE opened < 1887 AND distance_from_wellington = "175.67km"
What is the least amount of games played with 21 losses?
columns: - name: games_played type: INTEGER - name: loses type: VARCHAR table: table_18018248_2
SELECT MIN(games_played) FROM table_18018248_2 WHERE loses = 21
What is the status of the airport line?
columns: - name: status type: VARCHAR - name: line type: VARCHAR table: table_1603807_2
SELECT status FROM table_1603807_2 WHERE line = "Airport line"
Who was the opponent for game 73?
columns: - name: opponent type: VARCHAR - name: game type: VARCHAR table: table_name_10
SELECT opponent FROM table_name_10 WHERE game = "73"
What is the name of the episode performed by Essra Mohawk
columns: - name: episode_title type: VARCHAR - name: performed_by type: VARCHAR table: table_191105_4
SELECT episode_title FROM table_191105_4 WHERE performed_by = "Essra Mohawk"
What divisions was in the year 1993?
columns: - name: division type: VARCHAR - name: year type: VARCHAR table: table_name_93
SELECT division FROM table_name_93 WHERE year = 1993
When did they play at the Cotton Bowl?
columns: - name: date type: VARCHAR - name: game_site type: VARCHAR table: table_17765264_1
SELECT date FROM table_17765264_1 WHERE game_site = "Cotton Bowl"
Which Filename extension has an Interactivity support of no, an Open standard of yes, and an Image support of no?
columns: - name: filename_extension type: VARCHAR - name: image_support type: VARCHAR - name: interactivity_support type: VARCHAR - name: open_standard type: VARCHAR table: table_name_64
SELECT filename_extension FROM table_name_64 WHERE interactivity_support = "no" AND open_standard = "yes" AND image_support = "no"
What was the nationality of the skater with 108.8 points?
columns: - name: nation type: VARCHAR - name: points type: VARCHAR table: table_name_52
SELECT nation FROM table_name_52 WHERE points = 108.8
What is the date for the name ryan lochte?
columns: - name: date type: VARCHAR - name: name type: VARCHAR table: table_name_79
SELECT date FROM table_name_79 WHERE name = "ryan lochte"
What race was won by Tazio Nuvolari?
columns: - name: name type: VARCHAR - name: winning_drivers type: VARCHAR table: table_name_63
SELECT name FROM table_name_63 WHERE winning_drivers = "tazio nuvolari"
How many people in total have attended games at Kardinia Park?
columns: - name: crowd type: INTEGER - name: venue type: VARCHAR table: table_name_93
SELECT SUM(crowd) FROM table_name_93 WHERE venue = "kardinia park"
Where was the tournament where the score was 1–6, 6–3, 3–6?
columns: - name: tournament type: VARCHAR - name: score type: VARCHAR table: table_name_66
SELECT tournament FROM table_name_66 WHERE score = "1–6, 6–3, 3–6"
Which mongolian has the province of municipality?
columns: - name: mongolian type: VARCHAR - name: province type: VARCHAR table: table_name_79
SELECT mongolian FROM table_name_79 WHERE province = "municipality"
What was the date that Elvir Krehmic made a high jump record?
columns: - name: date type: VARCHAR - name: athlete type: VARCHAR table: table_name_78
SELECT date FROM table_name_78 WHERE athlete = "elvir krehmic"
What is day 4 when day 2 is PAAQ?
columns: - name: day_4 type: VARCHAR - name: day_2 type: VARCHAR table: table_name_3
SELECT day_4 FROM table_name_3 WHERE day_2 = "paaq"
What is the status with the opposing team of Scotland?
columns: - name: status type: VARCHAR - name: opposing_teams type: VARCHAR table: table_name_9
SELECT status FROM table_name_9 WHERE opposing_teams = "scotland"
Who is the trainer of the winner skylighter?
columns: - name: trainer type: VARCHAR - name: winner type: VARCHAR table: table_name_5
SELECT trainer FROM table_name_5 WHERE winner = "skylighter"
What is the average points of a Cosworth v8 engine in 1973.
columns: - name: points type: INTEGER - name: engine type: VARCHAR - name: year type: VARCHAR table: table_name_23
SELECT AVG(points) FROM table_name_23 WHERE engine = "cosworth v8" AND year = 1973
When the School is Bishop Luers High School, what is the Hometown?
columns: - name: hometown type: VARCHAR - name: school type: VARCHAR table: table_name_83
SELECT hometown FROM table_name_83 WHERE school = "bishop luers high school"
which year holds rank 2?
columns: - name: year type: INTEGER - name: rank type: VARCHAR table: table_name_89
SELECT MAX(year) FROM table_name_89 WHERE rank = "2"
Name the most races
columns: - name: races type: INTEGER table: table_21457754_2
SELECT MAX(races) FROM table_21457754_2
What issue has mort drucker as the artist and february 2001 as the date?
columns: - name: issue type: VARCHAR - name: artist type: VARCHAR - name: date type: VARCHAR table: table_name_20
SELECT issue FROM table_name_20 WHERE artist = "mort drucker" AND date = "february 2001"
Can you tell me the Record that has the Visitor of vancouver?
columns: - name: record type: VARCHAR - name: visitor type: VARCHAR table: table_name_67
SELECT record FROM table_name_67 WHERE visitor = "vancouver"
what is the number of teams where the record is 0-1
columns: - name: amman type: VARCHAR - name: wehdat type: VARCHAR table: table_26173058_2
SELECT COUNT(amman) FROM table_26173058_2 WHERE wehdat = "0-1"
For period September 2009, what is the other Mozilla total number?
columns: - name: other_mozilla type: VARCHAR - name: period type: VARCHAR table: table_1876262_10
SELECT COUNT(other_mozilla) FROM table_1876262_10 WHERE period = "September 2009"
Who remixed the version with a length of 3:58?
columns: - name: remixed_by type: VARCHAR - name: length type: VARCHAR table: table_name_74
SELECT remixed_by FROM table_name_74 WHERE length = "3:58"
What is the area of the community with a census ranking of 636 of 5,008?
columns: - name: area_km_2 type: INTEGER - name: census_ranking type: VARCHAR table: table_name_97
SELECT AVG(area_km_2) FROM table_name_97 WHERE census_ranking = "636 of 5,008"
Who is the nominee for best director?
columns: - name: nominee type: VARCHAR - name: category type: VARCHAR table: table_name_86
SELECT nominee FROM table_name_86 WHERE category = "best director"
Name the rally base for 5 round
columns: - name: rally_base type: VARCHAR - name: round type: VARCHAR table: table_23385853_1
SELECT rally_base FROM table_23385853_1 WHERE round = 5
What is the number of lost games when 2 were drawn, and there were 6 bonus points?
columns: - name: lost type: VARCHAR - name: drawn type: VARCHAR - name: bonus_points type: VARCHAR table: table_name_55
SELECT lost FROM table_name_55 WHERE drawn = "2" AND bonus_points = "6"
what is the total sack when totaltk is 1 and asst. is more than 0?
columns: - name: sack type: INTEGER - name: totaltk type: VARCHAR - name: asst type: VARCHAR table: table_name_86
SELECT SUM(sack) FROM table_name_86 WHERE totaltk = 1 AND asst > 0
What's the report for the mosport park circuit?
columns: - name: report type: VARCHAR - name: circuit type: VARCHAR table: table_name_67
SELECT report FROM table_name_67 WHERE circuit = "mosport park"
what's the percentage of votes with election date being 1981
columns: - name: percentage_of_votes type: VARCHAR - name: election_date type: VARCHAR table: table_13746866_2
SELECT percentage_of_votes FROM table_13746866_2 WHERE election_date = 1981
What year did Negro American League join?
columns: - name: began_in_st_louis type: INTEGER - name: league type: VARCHAR table: table_21564794_3
SELECT MIN(began_in_st_louis) FROM table_21564794_3 WHERE league = "Negro American league"
What was the title of the episode that martin worth wrote the story for?
columns: - name: title type: VARCHAR - name: story type: VARCHAR table: table_name_55
SELECT title FROM table_name_55 WHERE story = "martin worth"
How many values for high assists when the game is 81?
columns: - name: high_assists type: VARCHAR - name: game type: VARCHAR table: table_23248869_10
SELECT COUNT(high_assists) FROM table_23248869_10 WHERE game = 81
Name the author for peri and april 2010
columns: - name: author type: VARCHAR - name: featuring type: VARCHAR - name: released type: VARCHAR table: table_1620397_2
SELECT author FROM table_1620397_2 WHERE featuring = "Peri" AND released = "April 2010"
Which Round is the lowest one that has a Position of wide receiver, and an Overall smaller than 222?
columns: - name: round type: INTEGER - name: position type: VARCHAR - name: overall type: VARCHAR table: table_name_34
SELECT MIN(round) FROM table_name_34 WHERE position = "wide receiver" AND overall < 222
what is the team that is pick 31?
columns: - name: team type: VARCHAR - name: pick type: VARCHAR table: table_name_19
SELECT team FROM table_name_19 WHERE pick = 31
When days 1-86 is the duration how many names are there?
columns: - name: name type: VARCHAR - name: duration type: VARCHAR table: table_19061741_3
SELECT COUNT(name) FROM table_19061741_3 WHERE duration = "Days 1-86"
On what date was the score 2–4?
columns: - name: date type: VARCHAR - name: score type: VARCHAR table: table_name_89
SELECT date FROM table_name_89 WHERE score = "2–4"
Which outcome has a Surface of clay and a Score of 4–6, 7–5, 2–6?
columns: - name: outcome type: VARCHAR - name: surface type: VARCHAR - name: score type: VARCHAR table: table_name_50
SELECT outcome FROM table_name_50 WHERE surface = "clay" AND score = "4–6, 7–5, 2–6"
What type of surface was used for the carthage tournament on august 14, 1994?
columns: - name: surface type: VARCHAR - name: tournament type: VARCHAR - name: date type: VARCHAR table: table_name_97
SELECT surface FROM table_name_97 WHERE tournament = "carthage" AND date = "august 14, 1994"
What is the Finish for the 1950–51? season?
columns: - name: finish type: VARCHAR - name: season type: VARCHAR table: table_name_22
SELECT finish FROM table_name_22 WHERE season = "1950–51"
List all opponents from the 4-4 scoring game.
columns: - name: opponent type: VARCHAR - name: record type: VARCHAR table: table_24561550_1
SELECT opponent FROM table_24561550_1 WHERE record = "4-4"
Which player played for the Boston Patriots?
columns: - name: player type: VARCHAR - name: team type: VARCHAR table: table_name_61
SELECT player FROM table_name_61 WHERE team = "boston patriots"
Who was against the opponents, mădălina gojnea monica niculescu?
columns: - name: against type: VARCHAR - name: opponents type: VARCHAR table: table_name_94
SELECT against FROM table_name_94 WHERE opponents = "mădălina gojnea monica niculescu"
How many households have yadkin as the county?
columns: - name: number_of_households type: VARCHAR - name: county type: VARCHAR table: table_name_71
SELECT number_of_households FROM table_name_71 WHERE county = "yadkin"
What Venue held the World Race Walking Cup tourney before 2008?
columns: - name: venue type: VARCHAR - name: year type: VARCHAR - name: tournament type: VARCHAR table: table_name_69
SELECT venue FROM table_name_69 WHERE year < 2008 AND tournament = "world race walking cup"
How many tries against have a losing bonus of 9?
columns: - name: tries_against type: VARCHAR - name: losing_bonus type: VARCHAR table: table_name_72
SELECT tries_against FROM table_name_72 WHERE losing_bonus = "9"
When the strike rate is 70.10, what is the balls?
columns: - name: balls type: VARCHAR - name: strike_rate type: VARCHAR table: table_name_36
SELECT balls FROM table_name_36 WHERE strike_rate = "70.10"
What are Perkins Engineering's fewest laps?
columns: - name: laps type: INTEGER - name: team type: VARCHAR table: table_name_17
SELECT MIN(laps) FROM table_name_17 WHERE team = "perkins engineering"
What was the result of the game after week 3 against the New York Giants?
columns: - name: result type: VARCHAR - name: week type: VARCHAR - name: opponent type: VARCHAR table: table_name_94
SELECT result FROM table_name_94 WHERE week > 3 AND opponent = "new york giants"
What is the Artist with a Date that is june 1979?
columns: - name: artist type: VARCHAR - name: date type: VARCHAR table: table_name_48
SELECT artist FROM table_name_48 WHERE date = "june 1979"
Where did Essendon play as the home team?
columns: - name: venue type: VARCHAR - name: home_team type: VARCHAR table: table_name_95
SELECT venue FROM table_name_95 WHERE home_team = "essendon"
When оџаци is the cyrillic name other names what is the type?
columns: - name: type type: VARCHAR - name: cyrillic_name_other_names type: VARCHAR table: table_2562572_25
SELECT type FROM table_2562572_25 WHERE cyrillic_name_other_names = "Оџаци"
Which line offers Fast to Norwood Junction?
columns: - name: line type: VARCHAR - name: service_pattern type: VARCHAR table: table_1612760_1
SELECT line FROM table_1612760_1 WHERE service_pattern = "Fast to Norwood Junction"