training_input stringlengths 118 1.06k |
|---|
###context:CREATE TABLE table_23028629_2 (part_number_s_ VARCHAR, model_number VARCHAR)
###human: What is every part number with model number core i5-670?
###assistant: SELECT part_number_s_ FROM table_23028629_2 WHERE model_number = "Core i5-670" |
###context:CREATE TABLE table_23058971_8 (winner VARCHAR, big_ten_team VARCHAR)
###human: What is the record for Big Ten Team #4 Purdue?
###assistant: SELECT winner FROM table_23058971_8 WHERE big_ten_team = "#4 Purdue" |
###context:CREATE TABLE table_2308381_1 (avg_start VARCHAR, avg_finish VARCHAR)
###human: Name the avg start for avg finish being 24.2
###assistant: SELECT avg_start FROM table_2308381_1 WHERE avg_finish = "24.2" |
###context:CREATE TABLE table_2308381_1 (year VARCHAR, avg_start VARCHAR)
###human: Name the year for avg start being 22.4
###assistant: SELECT year FROM table_2308381_1 WHERE avg_start = "22.4" |
###context:CREATE TABLE table_23050383_1 (kei VARCHAR, economic_incentive_regime VARCHAR)
###human: How many KEI catagories are listed when the economic incentive regime is 2.56?
###assistant: SELECT COUNT(kei) FROM table_23050383_1 WHERE economic_incentive_regime = "2.56" |
###context:CREATE TABLE table_23050383_1 (innovation VARCHAR, economic_incentive_regime VARCHAR)
###human: What is the innovation when the economic incentive grime is 7.14?
###assistant: SELECT innovation FROM table_23050383_1 WHERE economic_incentive_regime = "7.14" |
###context:CREATE TABLE table_23050383_1 (education VARCHAR, country VARCHAR)
###human: What is the education in Nepal?
###assistant: SELECT education FROM table_23050383_1 WHERE country = "Nepal" |
###context:CREATE TABLE table_23050383_1 (country VARCHAR)
###human: What is the 2008 rank of Djibouti?
###assistant: SELECT 2008 AS _rank FROM table_23050383_1 WHERE country = "Djibouti" |
###context:CREATE TABLE table_23050383_1 (ict VARCHAR, education VARCHAR, ki VARCHAR)
###human: What is the ICT when education is 1.73 and KI is ag 1.99?
###assistant: SELECT ict FROM table_23050383_1 WHERE education = "1.73" AND ki = "1.99" |
###context:CREATE TABLE table_23050383_1 (education VARCHAR, economic_incentive_regime VARCHAR)
###human: What is the education when the economic incentive regime is 1.58?
###assistant: SELECT education FROM table_23050383_1 WHERE economic_incentive_regime = "1.58" |
###context:CREATE TABLE table_23114705_7 (original_air_date VARCHAR, nz_viewers__thousand_ VARCHAR)
###human: What was the air date of the episod that had 456.58 thousand viewers?
###assistant: SELECT original_air_date FROM table_23114705_7 WHERE nz_viewers__thousand_ = "456.58" |
###context:CREATE TABLE table_2311410_1 (season VARCHAR, winning_profit___aud__ VARCHAR)
###human: What season had a winning profit of $15,000?
###assistant: SELECT season FROM table_2311410_1 WHERE winning_profit___aud__ = "$15,000" |
###context:CREATE TABLE table_2311410_1 (series_premiere VARCHAR, season VARCHAR)
###human: How many series premieres did the season "All-stars" have?
###assistant: SELECT COUNT(series_premiere) FROM table_2311410_1 WHERE season = "All-Stars" |
###context:CREATE TABLE table_2311410_5 (erin_and_jake VARCHAR, week VARCHAR)
###human: Name the erin and jake for week 4
###assistant: SELECT erin_and_jake FROM table_2311410_5 WHERE week = 4 |
###context:CREATE TABLE table_23117208_3 (no_in_series INTEGER, viewers__millions_ VARCHAR)
###human: when the number of spectator are 5.28 millions, which is the smallest number of the episode in series?
###assistant: SELECT MIN(no_in_series) FROM table_23117208_3 WHERE viewers__millions_ = "5.28" |
###context:CREATE TABLE table_23117208_3 (no_in_season INTEGER, no_in_series VARCHAR)
###human: which is the biggest number of episode in the season, where the number of the episode in series is 20?
###assistant: SELECT MAX(no_in_season) FROM table_23117208_3 WHERE no_in_series = 20 |
###context:CREATE TABLE table_23117208_3 (title VARCHAR, viewers__millions_ VARCHAR)
###human: what is the name of the episode when the number of spectators was 5.60 millions?
###assistant: SELECT title FROM table_23117208_3 WHERE viewers__millions_ = "5.60" |
###context:CREATE TABLE table_23117208_3 (viewers__millions_ VARCHAR, prod_code VARCHAR)
###human: how many millions of spectator did has the episode whose prod.code was rp#213?
###assistant: SELECT viewers__millions_ FROM table_23117208_3 WHERE prod_code = "RP#213" |
###context:CREATE TABLE table_23117208_3 (no_in_season INTEGER, directed_by VARCHAR)
###human: which is the biggest number of episode in the season, when the director of the episode was Constantine Makris?
###assistant: SELECT MAX(no_in_season) FROM table_23117208_3 WHERE directed_by = "Constantine Makris" |
###context:CREATE TABLE table_23117208_5 (title VARCHAR, written_by VARCHAR)
###human: What is the name of the episode that was written by Michael Rauch?
###assistant: SELECT title FROM table_23117208_5 WHERE written_by = "Michael Rauch" |
###context:CREATE TABLE table_23117208_5 (no_in_series VARCHAR, directed_by VARCHAR)
###human: For the episode directed by Matthew Penn, what is the total number in the series?
###assistant: SELECT no_in_series FROM table_23117208_5 WHERE directed_by = "Matthew Penn" |
###context:CREATE TABLE table_23117208_4 (prod_code VARCHAR, viewers__millions_ VARCHAR)
###human: Name the production code for 4.92 million viewers
###assistant: SELECT prod_code FROM table_23117208_4 WHERE viewers__millions_ = "4.92" |
###context:CREATE TABLE table_23117208_4 (no_in_season INTEGER, written_by VARCHAR)
###human: Name the least number in season for jessica ball
###assistant: SELECT MIN(no_in_season) FROM table_23117208_4 WHERE written_by = "Jessica Ball" |
###context:CREATE TABLE table_23128286_1 (flaps INTEGER, points VARCHAR)
###human: How many flaps did he have when he had 109 points?
###assistant: SELECT MAX(flaps) FROM table_23128286_1 WHERE points = 109 |
###context:CREATE TABLE table_23128286_1 (wins VARCHAR, team_name VARCHAR)
###human: How many wins did he have with carlin motorsport?
###assistant: SELECT COUNT(wins) FROM table_23128286_1 WHERE team_name = "Carlin Motorsport" |
###context:CREATE TABLE table_23128286_1 (races INTEGER)
###human: What was the most races he had in a season?
###assistant: SELECT MAX(races) FROM table_23128286_1 |
###context:CREATE TABLE table_23133482_1 (sets_w_l VARCHAR, player VARCHAR)
###human: What are Ken Rosewall's sets w-l?
###assistant: SELECT sets_w_l FROM table_23133482_1 WHERE player = "Ken Rosewall" |
###context:CREATE TABLE table_23133482_1 (games_w_l VARCHAR, player VARCHAR)
###human: What are Arthur Ashe's games w-l?
###assistant: SELECT games_w_l FROM table_23133482_1 WHERE player = "Arthur Ashe" |
###context:CREATE TABLE table_23145653_1 (games_w_l VARCHAR, player VARCHAR)
###human: Name the games w-1 for cliff richey
###assistant: SELECT games_w_l FROM table_23145653_1 WHERE player = "Cliff Richey" |
###context:CREATE TABLE table_23157997_13 (stage VARCHAR, general_classification VARCHAR)
###human: What stage number had the general classification Rory Sutherland?
###assistant: SELECT COUNT(stage) FROM table_23157997_13 WHERE general_classification = "Rory Sutherland" |
###context:CREATE TABLE table_23157997_13 (youth_classification VARCHAR, mountains_classification VARCHAR, winner VARCHAR)
###human: Who was the Youth Classification in the race with Kenneth Hanson as Mountains Classification and Lucas Sebastian Haedo as winner?
###assistant: SELECT youth_classification FROM ta... |
###context:CREATE TABLE table_23157997_13 (winner VARCHAR, mountains_classification VARCHAR, points_classification VARCHAR)
###human: Who won the race with Tom Zirbel as Mountains Classification and Thomas Soladay as Points Classification?
###assistant: SELECT winner FROM table_23157997_13 WHERE mountains_class... |
###context:CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR, points_classification VARCHAR)
###human: Who was Mountains Classification in the race with Nick Frey as Youth Classification and Tom Zirbel as Points Classification?
###assistant: SELECT mountains_classifi... |
###context:CREATE TABLE table_23157997_13 (mountains_classification VARCHAR, youth_classification VARCHAR)
###human: How many Mountains Classifications were in the race with Mike Northey as Youth Classification?
###assistant: SELECT COUNT(mountains_classification) FROM table_23157997_13 WHERE youth_classificati... |
###context:CREATE TABLE table_23143607_1 (foundation VARCHAR, television_channels VARCHAR)
###human: How many foundation dates were there when the television channels is canal nou canal nou dos canal nou 24 tvvi?
###assistant: SELECT COUNT(foundation) FROM table_23143607_1 WHERE television_channels = "Canal No... |
###context:CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
###human: If the radio stations is radio nou si radio radio nou música; what were the total number of television channels?
###assistant: SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "... |
###context:CREATE TABLE table_23143607_1 (television_channels VARCHAR, radio_stations VARCHAR)
###human: What is the total number of television channels when one of the radio stations is onda madrid?
###assistant: SELECT COUNT(television_channels) FROM table_23143607_1 WHERE radio_stations = "Onda Madrid" |
###context:CREATE TABLE table_23143607_1 (radio_stations VARCHAR, organization VARCHAR)
###human: Which of the radio stations has the organization of ente público radio televisión madrid (eprtvm)?
###assistant: SELECT radio_stations FROM table_23143607_1 WHERE organization = "Ente Público Radio Televisión Madri... |
###context:CREATE TABLE table_23143607_1 (autonomous_community VARCHAR, television_channels VARCHAR)
###human: What is the autonomous community with television channels tpa tpa2 rtpa internacional?
###assistant: SELECT autonomous_community FROM table_23143607_1 WHERE television_channels = "TPA TPA2 RTPA Intern... |
###context:CREATE TABLE table_23170118_2 (villains VARCHAR, episode_number VARCHAR)
###human: How many villains were in episode 3 (13)?
###assistant: SELECT COUNT(villains) FROM table_23170118_2 WHERE episode_number = "3 (13)" |
###context:CREATE TABLE table_23170118_2 (title VARCHAR, villains VARCHAR)
###human: What was the title of the episode where reg lacey (aka mr. b) played the villain?
###assistant: SELECT title FROM table_23170118_2 WHERE villains = "Reg Lacey (AKA Mr. B)" |
###context:CREATE TABLE table_23183195_5 (three_pointers INTEGER, player VARCHAR)
###human: Name the most three pointers for dewanna bonner
###assistant: SELECT MAX(three_pointers) FROM table_23183195_5 WHERE player = "DeWanna Bonner" |
###context:CREATE TABLE table_23183195_5 (field_goals INTEGER, player VARCHAR)
###human: Name the least field goals for chantel hilliard
###assistant: SELECT MIN(field_goals) FROM table_23183195_5 WHERE player = "Chantel Hilliard" |
###context:CREATE TABLE table_23183195_5 (minutes INTEGER, player VARCHAR)
###human: Name the most minutes for morgan jennings
###assistant: SELECT MAX(minutes) FROM table_23183195_5 WHERE player = "Morgan Jennings" |
###context:CREATE TABLE table_23183195_5 (free_throws INTEGER, steals VARCHAR)
###human: Name the most free throws for 4 steals
###assistant: SELECT MAX(free_throws) FROM table_23183195_5 WHERE steals = 4 |
###context:CREATE TABLE table_23183195_2 (road_record VARCHAR, overall_record VARCHAR)
###human: What is the road record for the team with an overall record of 22-11?
###assistant: SELECT road_record FROM table_23183195_2 WHERE overall_record = "22-11" |
###context:CREATE TABLE table_23183195_2 (road_record VARCHAR, team VARCHAR)
###human: What is the road record for Vanderbilt?
###assistant: SELECT COUNT(road_record) FROM table_23183195_2 WHERE team = "Vanderbilt" |
###context:CREATE TABLE table_23183195_2 (team VARCHAR, overall_record VARCHAR)
###human: What team's overal record is 22-11?
###assistant: SELECT team FROM table_23183195_2 WHERE overall_record = "22-11" |
###context:CREATE TABLE table_23183195_2 (percentage VARCHAR, road_record VARCHAR, home_record VARCHAR)
###human: What is the percentage for the team with a road record of 3-4 and a home record of 7-0?
###assistant: SELECT percentage FROM table_23183195_2 WHERE road_record = "3-4" AND home_record = "7-0" |
###context:CREATE TABLE table_23184448_4 (three_pointers VARCHAR, points VARCHAR)
###human: Name the number of three pointers for 67
###assistant: SELECT COUNT(three_pointers) FROM table_23184448_4 WHERE points = 67 |
###context:CREATE TABLE table_23184448_4 (field_goals INTEGER, player VARCHAR)
###human: Name the field goals for alexis yackley
###assistant: SELECT MAX(field_goals) FROM table_23184448_4 WHERE player = "Alexis Yackley" |
###context:CREATE TABLE table_23184448_4 (assists VARCHAR, minutes VARCHAR)
###human: Name the number of assists for 321 minutes
###assistant: SELECT COUNT(assists) FROM table_23184448_4 WHERE minutes = 321 |
###context:CREATE TABLE table_23184448_4 (player VARCHAR, field_goals VARCHAR, blocks VARCHAR)
###human: Name the number of players for field goals being 25 and blocks is 6
###assistant: SELECT COUNT(player) FROM table_23184448_4 WHERE field_goals = 25 AND blocks = 6 |
###context:CREATE TABLE table_23186738_6 (location_attendance VARCHAR, record VARCHAR)
###human: Name the location attendance of 5-15
###assistant: SELECT location_attendance FROM table_23186738_6 WHERE record = "5-15" |
###context:CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
###human: Name the record for golden state
###assistant: SELECT record FROM table_23186738_6 WHERE team = "Golden State" |
###context:CREATE TABLE table_23186738_6 (high_points VARCHAR, record VARCHAR)
###human: Name the number of high points for record 5-17
###assistant: SELECT COUNT(high_points) FROM table_23186738_6 WHERE record = "5-17" |
###context:CREATE TABLE table_23186738_6 (record VARCHAR, team VARCHAR)
###human: Name the record for houston
###assistant: SELECT record FROM table_23186738_6 WHERE team = "Houston" |
###context:CREATE TABLE table_23192661_3 (cardinal_points INTEGER, record VARCHAR)
###human: Name the cardinal points for 19-4 record
###assistant: SELECT MIN(cardinal_points) FROM table_23192661_3 WHERE record = "19-4" |
###context:CREATE TABLE table_23192661_3 (location VARCHAR, record VARCHAR)
###human: Name the location for 2-1 record
###assistant: SELECT location FROM table_23192661_3 WHERE record = "2-1" |
###context:CREATE TABLE table_2319437_1 (step_6 VARCHAR, gs_grade VARCHAR)
###human: Name the total number of step 6 for 11 gs grade
###assistant: SELECT COUNT(step_6) FROM table_2319437_1 WHERE gs_grade = 11 |
###context:CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
###human: such as are entire the rating of closing where championship is moscow
###assistant: SELECT score_in_final FROM table_23197088_4 WHERE championship = "Moscow" |
###context:CREATE TABLE table_23197088_4 (score_in_final VARCHAR, opponents_in_final VARCHAR)
###human: as is the quantity variety of score between ultimate the place opponents between remaining is alexandra fusai nathalie tauziat
###assistant: SELECT COUNT(score_in_final) FROM table_23197088_4 WHERE opponents_... |
###context:CREATE TABLE table_23197088_4 (opponents_in_final VARCHAR, championship VARCHAR)
###human: what are every one of the rivals in conclusive where title is zürich
###assistant: SELECT opponents_in_final FROM table_23197088_4 WHERE championship = "Zürich" |
###context:CREATE TABLE table_23197088_4 (score_in_final VARCHAR, championship VARCHAR)
###human: what are all the score in conclusive where title is rome
###assistant: SELECT score_in_final FROM table_23197088_4 WHERE championship = "Rome" |
###context:CREATE TABLE table_23195_5 (present_share VARCHAR)
###human: Name the most 10 3 bbl/d (2008) for present share being 1.7%
###assistant: SELECT MAX(10 AS _3_bbl_d__2008_) FROM table_23195_5 WHERE present_share = "1.7%" |
###context:CREATE TABLE table_23195_5 (present_share VARCHAR, producing_nation VARCHAR)
###human: Name the present share for australia
###assistant: SELECT present_share FROM table_23195_5 WHERE producing_nation = "Australia" |
###context:CREATE TABLE table_23211041_10 (location_attendance VARCHAR, team VARCHAR)
###human: Name the location attendance for utah
###assistant: SELECT location_attendance FROM table_23211041_10 WHERE team = "Utah" |
###context:CREATE TABLE table_23211041_5 (game VARCHAR, team VARCHAR)
###human: How many games were played against houston?
###assistant: SELECT COUNT(game) FROM table_23211041_5 WHERE team = "Houston" |
###context:CREATE TABLE table_23211041_5 (team VARCHAR, date VARCHAR)
###human: What team was played on november 24?
###assistant: SELECT team FROM table_23211041_5 WHERE date = "November 24" |
###context:CREATE TABLE table_23211041_5 (high_points VARCHAR, game VARCHAR)
###human: Who had the most points in game 4?
###assistant: SELECT high_points FROM table_23211041_5 WHERE game = 4 |
###context:CREATE TABLE table_23211041_5 (high_points VARCHAR, team VARCHAR)
###human: Who had the highest points against new york?
###assistant: SELECT high_points FROM table_23211041_5 WHERE team = "New York" |
###context:CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
###human: Name the syrian christians for thiruvananthapuram
###assistant: SELECT syrian_christians FROM table_23214055_2 WHERE district = "Thiruvananthapuram" |
###context:CREATE TABLE table_23214055_2 (ezhavas VARCHAR, muslims VARCHAR)
###human: Name the ezhavas for muslims being 5.4
###assistant: SELECT ezhavas FROM table_23214055_2 WHERE muslims = "5.4" |
###context:CREATE TABLE table_23214055_2 (ezhavas VARCHAR, syrian_christians VARCHAR)
###human: Name the ezhavas and syrian christians being 26.2
###assistant: SELECT ezhavas FROM table_23214055_2 WHERE syrian_christians = "26.2" |
###context:CREATE TABLE table_23214055_2 (syrian_christians VARCHAR, district VARCHAR)
###human: Name the syrian christians for kollam
###assistant: SELECT syrian_christians FROM table_23214055_2 WHERE district = "Kollam" |
###context:CREATE TABLE table_23214055_2 (district VARCHAR, others VARCHAR)
###human: Name the district for others being 18.3
###assistant: SELECT district FROM table_23214055_2 WHERE others = "18.3" |
###context:CREATE TABLE table_23214055_2 (district VARCHAR, nairs VARCHAR)
###human: Name the district for nairs 8.2
###assistant: SELECT district FROM table_23214055_2 WHERE nairs = "8.2" |
###context:CREATE TABLE table_23215145_2 (total_points VARCHAR)
###human: If the total points is 5, what is the 2005-2006 points total number?
###assistant: SELECT COUNT(2005 AS _06_points) FROM table_23215145_2 WHERE total_points = 5 |
###context:CREATE TABLE table_23215145_2 (team VARCHAR)
###human: What is the 2006-2007 points minimum is the team is Overmach Parma?
###assistant: SELECT MIN(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Overmach Parma" |
###context:CREATE TABLE table_23215145_2 (team VARCHAR)
###human: If the team is Worcester, what is the 2005-2006 points?
###assistant: SELECT 2005 AS _06_points FROM table_23215145_2 WHERE team = "Worcester" |
###context:CREATE TABLE table_23215145_2 (team VARCHAR)
###human: What is the 2006-2007 points total number if the team is Saracens?
###assistant: SELECT COUNT(2006 AS _07_points) FROM table_23215145_2 WHERE team = "Saracens" |
###context:CREATE TABLE table_23224961_1 (season VARCHAR, oberpfalz VARCHAR)
###human: When spvgg vohenstrauß is the oberpfalz what is the season?
###assistant: SELECT season FROM table_23224961_1 WHERE oberpfalz = "SpVgg Vohenstrauß" |
###context:CREATE TABLE table_23224961_1 (niederbayern VARCHAR, oberbayern_b VARCHAR)
###human: When esv ingolstadt is the oberbayern b what is the niederbayern?
###assistant: SELECT niederbayern FROM table_23224961_1 WHERE oberbayern_b = "ESV Ingolstadt" |
###context:CREATE TABLE table_23224961_1 (schwaben VARCHAR, oberbayern_a VARCHAR)
###human: When wacker burghausen is the oberbayern a what is the schwaben?
###assistant: SELECT schwaben FROM table_23224961_1 WHERE oberbayern_a = "Wacker Burghausen" |
###context:CREATE TABLE table_23224961_1 (oberpfalz VARCHAR, oberbayern_a VARCHAR)
###human: When fc oberau is the oberbayern a what is the oberpfalz?
###assistant: SELECT oberpfalz FROM table_23224961_1 WHERE oberbayern_a = "FC Oberau" |
###context:CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
###human: When tus rosenberg is the oberpfalz what is the oberbayern b?
###assistant: SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "TuS Rosenberg" |
###context:CREATE TABLE table_23224961_1 (oberbayern_b VARCHAR, oberpfalz VARCHAR)
###human: When fc schwandorf is the oberpfalz what is the oberbayern b?
###assistant: SELECT oberbayern_b FROM table_23224961_1 WHERE oberpfalz = "FC Schwandorf" |
###context:CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, outcome VARCHAR, year VARCHAR)
###human: What was the score in the final when the outcome was winner in 1989?
###assistant: SELECT score_in_the_final FROM table_23235546_1 WHERE outcome = "Winner" AND year = 1989 |
###context:CREATE TABLE table_23235546_1 (score_in_the_final VARCHAR, championship VARCHAR, opponent_in_the_final VARCHAR)
###human: What was the score in the final when Mats Wilander was the opponent in the Australian Open?
###assistant: SELECT score_in_the_final FROM table_23235546_1 WHERE championship = "Aus... |
###context:CREATE TABLE table_23225927_1 (original_air_date VARCHAR, no_in_season VARCHAR)
###human: If the number in the season is 22, what is the original air date?
###assistant: SELECT original_air_date FROM table_23225927_1 WHERE no_in_season = 22 |
###context:CREATE TABLE table_23225927_1 (no_in_season INTEGER, written_by VARCHAR)
###human: What is the maximum season number for the episode written by Jonathan Greene?
###assistant: SELECT MAX(no_in_season) FROM table_23225927_1 WHERE written_by = "Jonathan Greene" |
###context:CREATE TABLE table_2322716_2 (original_air_dates VARCHAR, prod_code VARCHAR)
###human: Name the original air date for prod code 201
###assistant: SELECT original_air_dates FROM table_2322716_2 WHERE prod_code = 201 |
###context:CREATE TABLE table_2322716_2 (written_by VARCHAR, prod_code VARCHAR)
###human: Name the written by for prod code being 206
###assistant: SELECT written_by FROM table_2322716_2 WHERE prod_code = 206 |
###context:CREATE TABLE table_23239946_3 (position INTEGER)
###human: How many positions are there in Canadian Nascar?
###assistant: SELECT MAX(position) FROM table_23239946_3 |
###context:CREATE TABLE table_23239946_3 (driver VARCHAR, points VARCHAR)
###human: How many drivers have 1942 points?
###assistant: SELECT COUNT(driver) FROM table_23239946_3 WHERE points = 1942 |
###context:CREATE TABLE table_23239946_3 (starts INTEGER)
###human: How many starts are there?
###assistant: SELECT MIN(starts) FROM table_23239946_3 |
###context:CREATE TABLE table_23239946_3 (wins VARCHAR, driver VARCHAR)
###human: How many wins did Andrew Ranger have?
###assistant: SELECT COUNT(wins) FROM table_23239946_3 WHERE driver = "Andrew Ranger" |
###context:CREATE TABLE table_23239946_3 (winnings__ INTEGER, position VARCHAR)
###human: What are the winnings for position 7?
###assistant: SELECT MAX(winnings__) AS $_ FROM table_23239946_3 WHERE position = 7 |
###context:CREATE TABLE table_23242958_1 (no_in_series VARCHAR, written_by VARCHAR)
###human: What number episode in the series was written by David Zuckerman?
###assistant: SELECT no_in_series FROM table_23242958_1 WHERE written_by = "David Zuckerman" |
###context:CREATE TABLE table_23242958_1 (original_air_date VARCHAR, written_by VARCHAR)
###human: What is the original air date of the episode written by David Zuckerman?
###assistant: SELECT original_air_date FROM table_23242958_1 WHERE written_by = "David Zuckerman" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.