answer
stringlengths 32
484
| context
stringlengths 27
489
| question
stringlengths 12
244
|
---|---|---|
SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92" | CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR) | Name the production code for 4.92 million viewers |
SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = "Jessica Ball" | CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR) | Name the least number in season for jessica ball |
SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109 | CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR) | How many flaps did he have when he had 109 points? |
SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport" | CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR) | How many wins did he have with carlin motorsport? |
SELECT MAX(races) FROM table_23128286_1 | CREATE TABLE table_23128286_1 (races INTEGER) | What was the most races he had in a season? |
SELECT sets_w_l FROM table_23133482_1 WHERE player = "Ken Rosewall" | CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR) | What are Ken Rosewall's sets w-l? |
SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe" | CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR) | What are Arthur Ashe's games w-l? |
SELECT games_w_l FROM table_23145653_1 WHERE player = "Cliff Richey" | CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR) | Name the games w-1 for cliff richey |
SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = "Rory Sutherland" | CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR) | What stage number had the general classification Rory Sutherland? |
SELECT youth_classification FROM table_23157997_13 WHERE mountains_classification = "Kenneth Hanson" AND winner = "Lucas Sebastian Haedo" | CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR) | Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner? |
SELECT winner FROM table_23157997_13 WHERE mountains_classification = "Tom Zirbel" AND points_classification = "Thomas Soladay" | CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR) | Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification? |
SELECT mountains_classification FROM table_23157997_13 WHERE youth_classification = "Nick Frey" AND points_classification = "Tom Zirbel" | CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR) | Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification? |
SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classification = "Mike Northey" | CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR) | How many Mountains Classifications were in the race with Mike Northey as Youth Classification? |
SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = "Canal Nou Canal Nou Dos Canal Nou 24 TVVi" | CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR) | How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi? |
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Radio Nou Si Radio Radio Nou Música" | CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR) | If the radio stations is radio nou si radio radio nou música; what were the total number of television channels? |
SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid" | CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR) | What is the total number of television channels when one of the radio stations is onda madrid? |
SELECT radio_stations FROM table_23143607_1 WHERE organization = "Ente Público Radio Televisión Madrid (EPRTVM)" | CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR) | Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)? |
SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Internacional" | CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR) | What is the autonomous community with television channels tpa tpa2 rtpa internacional? |
SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = "3 (13)" | CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR) | How many villains were in episode 3 (13)? |
SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)" | CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR) | What was the title of the episode where reg lacey (aka mr. b) played the villain? |
SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = "DeWanna Bonner" | CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR) | Name the most three pointers for dewanna bonner |
SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = "Chantel Hilliard" | CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR) | Name the least field goals for chantel hilliard |
SELECT MAX(minutes) FROM table_23183195_5 WHERE player = "Morgan Jennings" | CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR) | Name the most minutes for morgan jennings |
SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4 | CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR) | Name the most free throws for 4 steals |
SELECT road_record FROM table_23183195_2 WHERE overall_record = "22-11" | CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR) | What is the road record for the team with an overall record of 22-11? |
SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = "Vanderbilt" | CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR) | What is the road record for Vanderbilt? |
SELECT team FROM table_23183195_2 WHERE overall_record = "22-11" | CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR) | What team's overal record is 22-11? |
SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0" | CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR) | What is the percentage for the team with a road record of 3-4 and a home record of 7-0? |
SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67 | CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR) | Name the number of three pointers for 67 |
SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley" | CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR) | Name the field goals for alexis yackley |
SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321 | CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR) | Name the number of assists for 321 minutes |
SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6 | CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR) | Name the number of players for field goals being 25 and blocks is 6 |
SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15" | CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR) | Name the location attendance of 5-15 |
SELECT record FROM table_23186738_6 WHERE team = "Golden State" | CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR) | Name the record for golden state |
SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17" | CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR) | Name the number of high points for record 5-17 |
SELECT record FROM table_23186738_6 WHERE team = "Houston" | CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR) | Name the record for houston |
SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = "19-4" | CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR) | Name the cardinal points for 19-4 record |
SELECT location FROM table_23192661_3 WHERE record = "2-1" | CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR) | Name the location for 2-1 record |
SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11 | CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR) | Name the total number of step 6 for 11 gs grade |
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Moscow" | CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR) | such as are entire the rating of closing where championship is moscow |
SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_in_final = "Alexandra Fusai Nathalie Tauziat" | CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR) | as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat |
SELECT opponents_in_final FROM table_23197088_4 WHERE championship = "Zürich" | CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR) | what are every one of the rivals in conclusive where title is zürich |
SELECT score_in_final FROM table_23197088_4 WHERE championship = "Rome" | CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR) | what are all the score in conclusive where title is rome |
SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = "1.7%" | CREATE TABLE table_23195_5 (present_share VARCHAR) | Name the most 10 3 bbl/d (2008) for present share being 1.7% |
SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia" | CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR) | Name the present share for australia |
SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah" | CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR) | Name the location attendance for utah |
SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston" | CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR) | How many games were played against houston? |
SELECT team FROM table_23211041_5 WHERE date = "November 24" | CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR) | What team was played on november 24? |
SELECT high_points FROM table_23211041_5 WHERE game = 4 | CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR) | Who had the most points in game 4? |
SELECT high_points FROM table_23211041_5 WHERE team = "New York" | CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR) | Who had the highest points against new york? |
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram" | CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR) | Name the syrian christians for thiruvananthapuram |
SELECT ezhavas FROM table_23214055_2 WHERE muslims = "5.4" | CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR) | Name the ezhavas for muslims being 5.4 |
SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2" | CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR) | Name the ezhavas and syrian christians being 26.2 |
SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam" | CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR) | Name the syrian christians for kollam |
SELECT district FROM table_23214055_2 WHERE others = "18.3" | CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR) | Name the district for others being 18.3 |
SELECT district FROM table_23214055_2 WHERE nairs = "8.2" | CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR) | Name the district for nairs 8.2 |
SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5 | CREATE TABLE table_23215145_2 (total_points VARCHAR) | If the total points is 5, what is the 2005-2006 points total number? |
SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Overmach Parma" | CREATE TABLE table_23215145_2 (team VARCHAR) | What is the 2006-2007 points minimum is the team is Overmach Parma? |
SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = "Worcester" | CREATE TABLE table_23215145_2 (team VARCHAR) | If the team is Worcester, what is the 2005-2006 points? |
SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens" | CREATE TABLE table_23215145_2 (team VARCHAR) | What is the 2006-2007 points total number if the team is Saracens? |
SELECT season FROM table_23224961_1 WHERE oberpfalz = "SpVgg Vohenstrauß" | CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR) | When spvgg vohenstrauß is the oberpfalz what is the season? |
SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt" | CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR) | When esv ingolstadt is the oberbayern b what is the niederbayern? |
SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = "Wacker Burghausen" | CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR) | When wacker burghausen is the oberbayern a what is the schwaben? |
SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = "FC Oberau" | CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR) | When fc oberau is the oberbayern a what is the oberpfalz? |
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "TuS Rosenberg" | CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR) | When tus rosenberg is the oberpfalz what is the oberbayern b? |
SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf" | CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR) | When fc schwandorf is the oberpfalz what is the oberbayern b? |
SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989 | CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR) | What was the score in the final when the outcome was winner in 1989? |
SELECT score_in_the_final FROM table_23235546_1 WHERE championship = "Australian Open" AND opponent_in_the_final = "Mats Wilander" | CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR) | What was the score in the final when Mats Wilander was the opponent in the Australian Open? |
SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22 | CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR) | If the number in the season is 22, what is the original air date? |
SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene" | CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR) | What is the maximum season number for the episode written by Jonathan Greene? |
SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201 | CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR) | Name the original air date for prod code 201 |
SELECT written_by FROM table_2322716_2 WHERE prod_code = 206 | CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR) | Name the written by for prod code being 206 |
SELECT MAX(position) FROM table_23239946_3 | CREATE TABLE table_23239946_3 (position INTEGER) | How many positions are there in Canadian Nascar? |
SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942 | CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR) | How many drivers have 1942 points? |
SELECT MIN(starts) FROM table_23239946_3 | CREATE TABLE table_23239946_3 (starts INTEGER) | How many starts are there? |
SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = "Andrew Ranger" | CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR) | How many wins did Andrew Ranger have? |
SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7 | CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR) | What are the winnings for position 7? |
SELECT no_in_series FROM table_23242958_1 WHERE written_by = "David Zuckerman" | CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR) | What number episode in the series was written by David Zuckerman? |
SELECT original_air_date FROM table_23242958_1 WHERE written_by = "David Zuckerman" | CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR) | What is the original air date of the episode written by David Zuckerman? |
SELECT title FROM table_23242958_1 WHERE directed_by = "Rodney Clouden" | CREATE TABLE table_23242958_1 (title VARCHAR, directed_by VARCHAR) | What is the title of the episode directed by Rodney Clouden? |
SELECT us_viewers__millions_ FROM table_23242958_1 WHERE production_code = "3AJN01" | CREATE TABLE table_23242958_1 (us_viewers__millions_ VARCHAR, production_code VARCHAR) | How many millions of U.S. viewers watched the episode with the production code of 3AJN01? |
SELECT directed_by FROM table_23242968_1 WHERE us_viewers__millions_ = "6.76" | CREATE TABLE table_23242968_1 (directed_by VARCHAR, us_viewers__millions_ VARCHAR) | Who directed the episode that had 6.76 million U.S. viewers? |
SELECT MAX(no_in_season) FROM table_23242968_1 WHERE no_in_series = 75 | CREATE TABLE table_23242968_1 (no_in_season INTEGER, no_in_series VARCHAR) | What episode number of the season was also number 75 in the series? |
SELECT written_by FROM table_23242968_1 WHERE production_code = "3AJN20" | CREATE TABLE table_23242968_1 (written_by VARCHAR, production_code VARCHAR) | Who wrote the episode that had a production code of 3ajn20? |
SELECT directed_by FROM table_23242968_1 WHERE written_by = "Jonathan Fener" | CREATE TABLE table_23242968_1 (directed_by VARCHAR, written_by VARCHAR) | Who directed the episode that was written by Jonathan Fener? |
SELECT title FROM table_23242968_1 WHERE production_code = "3AJN20" | CREATE TABLE table_23242968_1 (title VARCHAR, production_code VARCHAR) | What was the name of the episode with a production code of 3ajn20? |
SELECT written_by FROM table_23242933_2 WHERE production_code = "1AJN05" | CREATE TABLE table_23242933_2 (written_by VARCHAR, production_code VARCHAR) | Who wrote the episode with production code 1AJN05? |
SELECT COUNT(no_in_series) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84" | CREATE TABLE table_23242933_2 (no_in_series VARCHAR, us_viewers__millions_ VARCHAR) | How many different series numbers are there for the episode seen by 7.84 million people in the US? |
SELECT MAX(no_in_series) FROM table_23242933_2 WHERE written_by = "Dan Vebber" | CREATE TABLE table_23242933_2 (no_in_series INTEGER, written_by VARCHAR) | What's the series number of the episode written by Dan Vebber? |
SELECT COUNT(title) FROM table_23242933_2 WHERE us_viewers__millions_ = "7.84" | CREATE TABLE table_23242933_2 (title VARCHAR, us_viewers__millions_ VARCHAR) | How many different titles are there of episodes that have been seen by 7.84 million people in the US/ |
SELECT original_air_date FROM table_23242933_2 WHERE us_viewers__millions_ = "6.09" | CREATE TABLE table_23242933_2 (original_air_date VARCHAR, us_viewers__millions_ VARCHAR) | When did 6.09 million people in the US see the original airing of an episode of the show? |
SELECT MIN(no_in_season) FROM table_23242950_1 WHERE us_viewers__millions_ = "6.64" | CREATE TABLE table_23242950_1 (no_in_season INTEGER, us_viewers__millions_ VARCHAR) | What's the season number of the episode originally seen by 6.64 million people in the US? |
SELECT production_code FROM table_23242950_1 WHERE us_viewers__millions_ = "7.49" | CREATE TABLE table_23242950_1 (production_code VARCHAR, us_viewers__millions_ VARCHAR) | What's the production code of the episode seen by 7.49 million people in the US? |
SELECT opponent FROM table_23243769_4 WHERE opp_points = 44 | CREATE TABLE table_23243769_4 (opponent VARCHAR, opp_points VARCHAR) | What opponent got 44 points in their game? |
SELECT location FROM table_23243769_4 WHERE record = "4-1" | CREATE TABLE table_23243769_4 (location VARCHAR, record VARCHAR) | Where was the game with a 4-1 record played? |
SELECT high_rebounds FROM table_23248869_6 WHERE high_points = "Larry Hughes (21)" | CREATE TABLE table_23248869_6 (high_rebounds VARCHAR, high_points VARCHAR) | Who did the high rebounds in the game where Larry Hughes (21) did the high ponts? |
SELECT COUNT(high_assists) FROM table_23248869_6 WHERE date = "December 11" | CREATE TABLE table_23248869_6 (high_assists VARCHAR, date VARCHAR) | How many different people did different scores of high assists during the December 11 game? |
SELECT high_assists FROM table_23248869_6 WHERE team = "Portland" | CREATE TABLE table_23248869_6 (high_assists VARCHAR, team VARCHAR) | Who did the high assists in the game against Portland? |
SELECT score FROM table_23248869_10 WHERE location_attendance = "Madison Square Garden 19,763" AND game < 80.0 | CREATE TABLE table_23248869_10 (score VARCHAR, location_attendance VARCHAR, game VARCHAR) | What is every score for location attendance of Madison Square Garden 19,763 and game less than 80.0? |
SELECT record FROM table_23248869_10 WHERE team = "Boston" | CREATE TABLE table_23248869_10 (record VARCHAR, team VARCHAR) | What is every record for the team Boston? |
Subsets and Splits