answer
stringlengths
32
484
context
stringlengths
27
489
question
stringlengths
12
244
SELECT record FROM table_27882867_4 WHERE location_attendance = "Oakland-Alameda County Coliseum Arena 15,025"
CREATE TABLE table_27882867_4 (record VARCHAR, location_attendance VARCHAR)
Name the record for oakland-alameda county coliseum arena 15,025
SELECT COUNT(game) FROM table_27882867_4 WHERE score = "W 112-94"
CREATE TABLE table_27882867_4 (game VARCHAR, score VARCHAR)
Name the total number of games for w 112-94
SELECT clubs FROM table_27876486_2 WHERE round = "Sixth round proper"
CREATE TABLE table_27876486_2 (clubs VARCHAR, round VARCHAR)
what is the club in the sixth round proper
SELECT surface FROM table_27877656_7 WHERE score = "6–4, 6–1" AND edition = "2011 Europe/Africa Group IIIB"
CREATE TABLE table_27877656_7 (surface VARCHAR, score VARCHAR, edition VARCHAR)
For edition is 2011 europe/africa group iiib and surface where score is 6–4, 6–1 please specify all the surface
SELECT opponent_team FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND outcome = "Winner" AND opponent = "Sandra Kristjánsdóttir"
CREATE TABLE table_27877656_7 (opponent_team VARCHAR, opponent VARCHAR, edition VARCHAR, outcome VARCHAR)
For opponent is sandra kristjánsdóttir, outcome is winner and edition is 2009 europe/africa group iiib mention all the opponent team.
SELECT COUNT(outcome) FROM table_27877656_7 WHERE score = "7–6 (7–3) , 6–4"
CREATE TABLE table_27877656_7 (outcome VARCHAR, score VARCHAR)
For score 7–6 (7–3) , 6–4 please mention total number of outcome
SELECT opponent FROM table_27877656_7 WHERE edition = "2009 Europe/Africa Group IIIB" AND opponent_team = "Armenia"
CREATE TABLE table_27877656_7 (opponent VARCHAR, edition VARCHAR, opponent_team VARCHAR)
For armenia as opponent team and edition is 2009 europe/africa group iiib mention all the opponent
SELECT edition FROM table_27877656_7 WHERE outcome = "Loser" AND score = "6–2, 6–3"
CREATE TABLE table_27877656_7 (edition VARCHAR, outcome VARCHAR, score VARCHAR)
For score 6–2, 6–3 and outcome is loser mention all the edition.
SELECT winner FROM table_27887723_1 WHERE uci_rating = "CN"
CREATE TABLE table_27887723_1 (winner VARCHAR, uci_rating VARCHAR)
who was the winner of uci rating cn?
SELECT race_name FROM table_27887723_1 WHERE uci_rating = "CN"
CREATE TABLE table_27887723_1 (race_name VARCHAR, uci_rating VARCHAR)
what race name had a uci rating of cn?
SELECT location FROM table_27887723_1 WHERE team = "Trek-Livestrong"
CREATE TABLE table_27887723_1 (location VARCHAR, team VARCHAR)
what location has team trek-livestrong?
SELECT winner FROM table_27887723_1 WHERE location = "Souderton, PA"
CREATE TABLE table_27887723_1 (winner VARCHAR, location VARCHAR)
who was the winner for souderton, pa?
SELECT title FROM table_27892955_1 WHERE directed_by = "Mike Rohl" AND no_in_series = 120
CREATE TABLE table_27892955_1 (title VARCHAR, directed_by VARCHAR, no_in_series VARCHAR)
What is the name of episode 120 in the series that Mike Rohl directed?
SELECT written_by FROM table_27892955_1 WHERE us_viewers__million_ = "1.97"
CREATE TABLE table_27892955_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
Who wrote episode that had 1.97 million u.s. viewers?
SELECT title FROM table_27892955_1 WHERE us_viewers__million_ = "2.02"
CREATE TABLE table_27892955_1 (title VARCHAR, us_viewers__million_ VARCHAR)
What is the name of the episode that had 2.02 million u.s. viewers?
SELECT COUNT(location_attendance) FROM table_27882867_6 WHERE date = "January 11"
CREATE TABLE table_27882867_6 (location_attendance VARCHAR, date VARCHAR)
How many games did they play on january 11?
SELECT team FROM table_27902171_5 WHERE record = "9-7"
CREATE TABLE table_27902171_5 (team VARCHAR, record VARCHAR)
What is every team with a record of 9-7?
SELECT COUNT(high_assists) FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180"
CREATE TABLE table_27902171_5 (high_assists VARCHAR, location_attendance VARCHAR)
How many people are high assists when location attendance is Seattle Center Coliseum 14,180?
SELECT date FROM table_27902171_5 WHERE game = 23
CREATE TABLE table_27902171_5 (date VARCHAR, game VARCHAR)
What is every date with game 23?
SELECT team FROM table_27902171_5 WHERE location_attendance = "Seattle Center Coliseum 14,180"
CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR)
What is every team with location attendance of Seattle Center Coliseum 14,180?
SELECT team FROM table_27902171_5 WHERE location_attendance = "ARCO Arena 17,014"
CREATE TABLE table_27902171_5 (team VARCHAR, location_attendance VARCHAR)
What is every team with location attendance of Arco Arena 17,014?
SELECT opponent FROM table_27893892_2 WHERE game_site = "Waldstadion" AND week = 6
CREATE TABLE table_27893892_2 (opponent VARCHAR, game_site VARCHAR, week VARCHAR)
what was the opposition where the field is waldstadion during time 6
SELECT game_site FROM table_27893892_2 WHERE date = "Saturday, April 21"
CREATE TABLE table_27893892_2 (game_site VARCHAR, date VARCHAR)
what is the location for saturday, april 21
SELECT MAX(attendance) FROM table_27893892_2 WHERE date = "Saturday, May 12"
CREATE TABLE table_27893892_2 (attendance INTEGER, date VARCHAR)
what was the participation for saturday, may 12
SELECT team_record FROM table_27893892_2 WHERE opponent = "at Scottish Claymores"
CREATE TABLE table_27893892_2 (team_record VARCHAR, opponent VARCHAR)
what was the achievement for the rival at scottish claymores
SELECT COUNT(legs_lost) FROM table_27906667_2 WHERE high_checkout = 101
CREATE TABLE table_27906667_2 (legs_lost VARCHAR, high_checkout VARCHAR)
How many legs were lost when the high checkout was 101?
SELECT MAX(legs_won) FROM table_27906667_2 WHERE player = "Alan Tabern"
CREATE TABLE table_27906667_2 (legs_won INTEGER, player VARCHAR)
How many legs were own by alan tabern?
SELECT team FROM table_27902171_8 WHERE record = "36-29"
CREATE TABLE table_27902171_8 (team VARCHAR, record VARCHAR)
name the team for 36-29 record
SELECT COUNT(high_assists) FROM table_27902171_8 WHERE record = "34-27"
CREATE TABLE table_27902171_8 (high_assists VARCHAR, record VARCHAR)
Name the total number of high asists for 34-27
SELECT date FROM table_27902171_8 WHERE score = "W 112-91"
CREATE TABLE table_27902171_8 (date VARCHAR, score VARCHAR)
Name the date for score of w 112-91
SELECT COUNT(location_attendance) FROM table_27902171_8 WHERE record = "36-29"
CREATE TABLE table_27902171_8 (location_attendance VARCHAR, record VARCHAR)
Name the number of location attendance for 36-29 record
SELECT written_by FROM table_27905664_1 WHERE us_viewers__million_ = "3.74"
CREATE TABLE table_27905664_1 (written_by VARCHAR, us_viewers__million_ VARCHAR)
Who wrote the episode having a US viewership of 3.74 million?
SELECT directed_by FROM table_27905664_1 WHERE production_code = "3X6116"
CREATE TABLE table_27905664_1 (directed_by VARCHAR, production_code VARCHAR)
Who directed production code 3x6116?
SELECT COUNT AS № FROM table_27905664_1 WHERE us_viewers__million_ = "4.26"
CREATE TABLE table_27905664_1 (COUNT VARCHAR, us_viewers__million_ VARCHAR)
How many episode numbers had US viewership of 4.26 million?
SELECT № FROM table_27905664_1 WHERE us_viewers__million_ = "4.87"
CREATE TABLE table_27905664_1 (№ VARCHAR, us_viewers__million_ VARCHAR)
What episode number had US viewership of 4.87 million?
SELECT COUNT(_number) FROM table_27905664_1 WHERE directed_by = "Ken Fink"
CREATE TABLE table_27905664_1 (_number VARCHAR, directed_by VARCHAR)
How many episodes were directed by Ken Fink?
SELECT original_air_date FROM table_27910411_1 WHERE us_viewers__millions_ = "8.28"
CREATE TABLE table_27910411_1 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR)
What date did the episode with 8.28 million u.s. viewers originally air?
SELECT COUNT(us_viewers__millions_) FROM table_27910411_1 WHERE no_in_series = 5
CREATE TABLE table_27910411_1 (us_viewers__millions_ VARCHAR, no_in_series VARCHAR)
How many items are listed for U.S. viewers for episode number 5 in the series?
SELECT original_air_date FROM table_27910411_1 WHERE no_in_series = 10
CREATE TABLE table_27910411_1 (original_air_date VARCHAR, no_in_series VARCHAR)
What date did episode 10 in the series originally air?
SELECT COUNT(season__number) FROM table_27911342_1 WHERE written_by = "Kari Lizer"
CREATE TABLE table_27911342_1 (season__number VARCHAR, written_by VARCHAR)
What is the season number of the show written by both Kari Lizer and Jeff Astrof?
SELECT title FROM table_27911342_1 WHERE season__number = 5
CREATE TABLE table_27911342_1 (title VARCHAR, season__number VARCHAR)
What is the title of the Series 40 Season 5 show?
SELECT callsign FROM table_27914076_1 WHERE coverage = "Davao Mindanao Region"
CREATE TABLE table_27914076_1 (callsign VARCHAR, coverage VARCHAR)
Name the callsign for davao mindanao region
SELECT power_kw FROM table_27914076_1 WHERE callsign = "DYMD-FM"
CREATE TABLE table_27914076_1 (power_kw VARCHAR, callsign VARCHAR)
Name the power for dymd-fm
SELECT frequency FROM table_27914076_1 WHERE branding = "103.7 Energy FM Dipolog*"
CREATE TABLE table_27914076_1 (frequency VARCHAR, branding VARCHAR)
Name the frequency for 103.7 energy fm dipolog*
SELECT COUNT(coverage) FROM table_27914076_1 WHERE branding = "106.7 Energy FM"
CREATE TABLE table_27914076_1 (coverage VARCHAR, branding VARCHAR)
Name the number of coverage for 106.7 energy fm
SELECT season__number FROM table_27914606_1 WHERE us_viewers__millions_ = "7.19"
CREATE TABLE table_27914606_1 (season__number VARCHAR, us_viewers__millions_ VARCHAR)
what is the number of the episode in the season that had 7.19 millions of north american viewers?
SELECT title FROM table_27914606_1 WHERE written_by = "Jeff Astrof & Matt Goldman"
CREATE TABLE table_27914606_1 (title VARCHAR, written_by VARCHAR)
what is the name of the episode whose writers were jeff astrof & matt goldman?
SELECT written_by FROM table_27914606_1 WHERE us_viewers__millions_ = "5.56"
CREATE TABLE table_27914606_1 (written_by VARCHAR, us_viewers__millions_ VARCHAR)
who were the writers of the episode that had 5.56 millions of north american viewers?
SELECT average FROM table_27922491_11 WHERE runs = 313
CREATE TABLE table_27922491_11 (average VARCHAR, runs VARCHAR)
What is the average for the player with 313 runs?
SELECT MIN(runs) FROM table_27922491_11 WHERE average = "97.00"
CREATE TABLE table_27922491_11 (runs INTEGER, average VARCHAR)
How few runs does the 97.00 average have?
SELECT MIN(50 AS s) FROM table_27922491_24
CREATE TABLE table_27922491_24 (Id VARCHAR)
What is the minimum number of 50s scored?
SELECT 4 AS wi FROM table_27922491_20 WHERE economy = "4.17"
CREATE TABLE table_27922491_20 (economy VARCHAR)
How many 4wi were recorded by the player with an economy of 4.17?
SELECT MIN(wickets) FROM table_27922491_20
CREATE TABLE table_27922491_20 (wickets INTEGER)
What is the fewest number of wickets recorded?
SELECT bbi FROM table_27922491_20 WHERE average = "24.50"
CREATE TABLE table_27922491_20 (bbi VARCHAR, average VARCHAR)
What was the BBI for the bowler whose average is 24.50?
SELECT MIN(wickets) FROM table_27922491_8
CREATE TABLE table_27922491_8 (wickets INTEGER)
What is the least amount of wickets?
SELECT MIN(matches) FROM table_27922491_8
CREATE TABLE table_27922491_8 (matches INTEGER)
What is the least amount of matches?
SELECT COUNT(player) FROM table_27922491_8 WHERE wickets = 12
CREATE TABLE table_27922491_8 (player VARCHAR, wickets VARCHAR)
How many players had 12 wickets?
SELECT MIN(innings) FROM table_27922491_8 WHERE average = "30.03"
CREATE TABLE table_27922491_8 (innings INTEGER, average VARCHAR)
How many innings for the player with an average of 30.03?
SELECT average FROM table_27922491_8 WHERE bbm = "5/85"
CREATE TABLE table_27922491_8 (average VARCHAR, bbm VARCHAR)
What is the average for the player with BBM 5/85?
SELECT MIN(episode__number) FROM table_27927185_1 WHERE viewers__millions_ = "4.03"
CREATE TABLE table_27927185_1 (episode__number INTEGER, viewers__millions_ VARCHAR)
What is the lowest episode number that had 4.03 million viewers?
SELECT viewers__millions_ FROM table_27927185_1 WHERE episode__number < 2.0
CREATE TABLE table_27927185_1 (viewers__millions_ VARCHAR, episode__number INTEGER)
How many million viewers watched episodes prior to episode 2.0?
SELECT originalairdate FROM table_27927185_1 WHERE viewers__millions_ = "4.77"
CREATE TABLE table_27927185_1 (originalairdate VARCHAR, viewers__millions_ VARCHAR)
What was the original air-date that had 4.77 million viewers?
SELECT directed_by FROM table_27927185_1 WHERE viewers__millions_ = "6.37"
CREATE TABLE table_27927185_1 (directed_by VARCHAR, viewers__millions_ VARCHAR)
Who directed the episode with 6.37 million viewers?
SELECT MAX(release_date) FROM table_27932399_1 WHERE catalogue_number = "DW023"
CREATE TABLE table_27932399_1 (release_date INTEGER, catalogue_number VARCHAR)
What is the release date of catalogue number DW023?
SELECT release_date FROM table_27932399_1 WHERE release_title = "New Worlds For Old"
CREATE TABLE table_27932399_1 (release_date VARCHAR, release_title VARCHAR)
What is the release date of "New Worlds for Old"?
SELECT catalogue_number FROM table_27932399_1 WHERE release_title = "Waves In The Air"
CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_title VARCHAR)
What is the catalogue number for "Waves in the Air"?
SELECT catalogue_number FROM table_27932399_1 WHERE release_date = 2005 AND artist = "The Clear Spots"
CREATE TABLE table_27932399_1 (catalogue_number VARCHAR, release_date VARCHAR, artist VARCHAR)
What is the catalogue number for release dates of exactly 2005 and released by The Clear Spots?
SELECT artist FROM table_27932399_1 WHERE release_title = "HH"
CREATE TABLE table_27932399_1 (artist VARCHAR, release_title VARCHAR)
Which artist had a release title of HH?
SELECT release_title FROM table_27932399_1 WHERE artist = "Heavy Winged"
CREATE TABLE table_27932399_1 (release_title VARCHAR, artist VARCHAR)
What was the name of the album released by Heavy Winged?
SELECT Dual AS television_commentator FROM table_2794180_11 WHERE year_s_ = 1990
CREATE TABLE table_2794180_11 (Dual VARCHAR, year_s_ VARCHAR)
Who was the dual television commentator in 1990?
SELECT radio_commentator FROM table_2794180_11 WHERE television_commentator = "Jan Gabrielsson"
CREATE TABLE table_2794180_11 (radio_commentator VARCHAR, television_commentator VARCHAR)
Who made the comments for radio broadcast when Jan Gabrielsson made them for television broadcast?
SELECT COUNT(moto2_winner) FROM table_27948565_1 WHERE circuit = "Laguna Seca"
CREATE TABLE table_27948565_1 (moto2_winner VARCHAR, circuit VARCHAR)
Name the total number of moto2 winners for laguna seca
SELECT circuit FROM table_27948565_1 WHERE grand_prix = "Hertz British grand_prix"
CREATE TABLE table_27948565_1 (circuit VARCHAR, grand_prix VARCHAR)
Name the circuit for hertz british grand prix
SELECT COUNT(round) FROM table_27948565_1 WHERE circuit = "Brno"
CREATE TABLE table_27948565_1 (round VARCHAR, circuit VARCHAR)
Name the number of rounds for brno
SELECT motogp_winner FROM table_27948565_1 WHERE date = "6 May"
CREATE TABLE table_27948565_1 (motogp_winner VARCHAR, date VARCHAR)
Name the motogp winner for 6 may
SELECT b_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion"
CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, a_winning_car VARCHAR)
Name the b winning car for #88 team mitsubishi 88 mitsubishi starion
SELECT gt_winning_car FROM table_27965906_2 WHERE a_winning_car = "#88 Team Mitsubishi 88 Mitsubishi Starion"
CREATE TABLE table_27965906_2 (gt_winning_car VARCHAR, a_winning_car VARCHAR)
Name the gt winning car for #88 team mitsubishi 88 mitsubishi starion
SELECT ss_winning_car FROM table_27965906_2 WHERE circuit = "Road Atlanta" AND b_winning_car = "#35 Quantum Engineering #35 Honda CRX-Si"
CREATE TABLE table_27965906_2 (ss_winning_car VARCHAR, circuit VARCHAR, b_winning_car VARCHAR)
Name the ss winning car for road atlanta and #35 quantum engineering #35 honda crx-si
SELECT COUNT(rnd) FROM table_27965906_2 WHERE ss_winning_car = "Kim Baker, Bobby Archer, Tommy Archer"
CREATE TABLE table_27965906_2 (rnd VARCHAR, ss_winning_car VARCHAR)
Name the total number of rnd for kim baker, bobby archer, tommy archer
SELECT COUNT(b_winning_car) FROM table_27965906_2 WHERE ss_winning_car = "Bobby Archer, Tommy Archer"
CREATE TABLE table_27965906_2 (b_winning_car VARCHAR, ss_winning_car VARCHAR)
Name the total number of b winning car and bobby archer, tommy archer
SELECT COUNT(institution) FROM table_27961684_1 WHERE team_name = "Spartans"
CREATE TABLE table_27961684_1 (institution VARCHAR, team_name VARCHAR)
How many institutes have the team name Spartans?
SELECT COUNT(state) FROM table_27961684_1 WHERE enrollment = 2789
CREATE TABLE table_27961684_1 (state VARCHAR, enrollment VARCHAR)
How many states were there when there was an enrollment of 2789?
SELECT affiliation FROM table_27961684_1 WHERE state = "Indiana"
CREATE TABLE table_27961684_1 (affiliation VARCHAR, state VARCHAR)
What kind of institute is in Indiana?
SELECT MIN(enrollment) FROM table_27961684_1 WHERE team_name = "Pioneers"
CREATE TABLE table_27961684_1 (enrollment INTEGER, team_name VARCHAR)
How many people enrolled for the institute with the Pioneers?
SELECT team_name FROM table_27961684_1 WHERE city = "Rock Island"
CREATE TABLE table_27961684_1 (team_name VARCHAR, city VARCHAR)
What team is in the city of Rock Island?
SELECT title FROM table_27969432_2 WHERE written_by = "Alison Cross"
CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR)
What is the name of the episode written by alison cross?
SELECT directed_by FROM table_27969432_2 WHERE written_by = "Karina Csolty"
CREATE TABLE table_27969432_2 (directed_by VARCHAR, written_by VARCHAR)
Who directed the episode written by karina csolty
SELECT title FROM table_27969432_2 WHERE written_by = "Karina Csolty"
CREATE TABLE table_27969432_2 (title VARCHAR, written_by VARCHAR)
What is the name of the episode written by karina csolty?
SELECT directed_by FROM table_27969432_4 WHERE production = "2M5901"
CREATE TABLE table_27969432_4 (directed_by VARCHAR, production VARCHAR)
Who directed the episode whose production code is 2m5901?
SELECT COUNT(us_viewers__in_millions_) FROM table_27969432_4 WHERE no_in_season = 4
CREATE TABLE table_27969432_4 (us_viewers__in_millions_ VARCHAR, no_in_season VARCHAR)
How many viewers in millions were there for episode 4 of this season?
SELECT COUNT(national_rank) FROM table_27956_3 WHERE percentage_change_yoy = "13.1%"
CREATE TABLE table_27956_3 (national_rank VARCHAR, percentage_change_yoy VARCHAR)
Name the total number of rank for percentage change yoy 13.1%
SELECT percentage_change_yoy FROM table_27956_3 WHERE institution = "Presbyterian College"
CREATE TABLE table_27956_3 (percentage_change_yoy VARCHAR, institution VARCHAR)
Name the percentage change yoy for presbyterian college
SELECT national_rank FROM table_27956_3 WHERE institution = "Medical University of South Carolina"
CREATE TABLE table_27956_3 (national_rank VARCHAR, institution VARCHAR)
Name the national rank for medical university of south carolina
SELECT MIN(no_in_series) FROM table_27969432_3
CREATE TABLE table_27969432_3 (no_in_series INTEGER)
What is the lowest numbered episode in the series?
SELECT COUNT(original_air_date) FROM table_27969432_3 WHERE written_by = "David J. North & Janet Tamaro"
CREATE TABLE table_27969432_3 (original_air_date VARCHAR, written_by VARCHAR)
How many episodes were written by david j. north & janet tamaro?
SELECT original_air_date FROM table_27969432_3 WHERE directed_by = "Fred Toye"
CREATE TABLE table_27969432_3 (original_air_date VARCHAR, directed_by VARCHAR)
What are the original air dates for episodes directed by fred toye?
SELECT aggregate_score FROM table_27986200_3 WHERE proceed_to_quarter_final = "Montauban"
CREATE TABLE table_27986200_3 (aggregate_score VARCHAR, proceed_to_quarter_final VARCHAR)
What was the aggregate score for Montauban?
SELECT proceed_to_quarter_final FROM table_27986200_3 WHERE points_margin = 21
CREATE TABLE table_27986200_3 (proceed_to_quarter_final VARCHAR, points_margin VARCHAR)
Who proceeded to the quarter finals with a points margin of 21?
SELECT match_points FROM table_27986200_3 WHERE eliminated_from_competition = "Bordeaux-Bègles"
CREATE TABLE table_27986200_3 (match_points VARCHAR, eliminated_from_competition VARCHAR)
What were the match points when Bordeaux-Bègles was eliminated from competition?
SELECT us_viewers__in_million_ FROM table_27987623_1 WHERE written_by = "Kevin Biegel & Bill Lawrence"
CREATE TABLE table_27987623_1 (us_viewers__in_million_ VARCHAR, written_by VARCHAR)
How many viewers saw the episode written by kevin biegel & bill lawrence?