training_input
stringlengths 118
1.06k
|
---|
###context:CREATE TABLE table_name_88 (county VARCHAR, precincts VARCHAR)
###human: Which County has a Precincts of 33/33?
###assistant: SELECT county FROM table_name_88 WHERE precincts = "33/33" |
###context:CREATE TABLE table_name_1 (t_wyka VARCHAR, precincts VARCHAR)
###human: Name the T. Wyka has a Precincts of 51/55?
###assistant: SELECT t_wyka FROM table_name_1 WHERE precincts = "51/55" |
###context:CREATE TABLE table_name_88 (precincts VARCHAR, g_hager VARCHAR)
###human: Which Precincts has a G. Hager of 2,260 (15%)?
###assistant: SELECT precincts FROM table_name_88 WHERE g_hager = "2,260 (15%)" |
###context:CREATE TABLE table_name_49 (g_hager VARCHAR, e_greenberg VARCHAR)
###human: Name the G. Hager of E. Greenberg of 266 (14%)?
###assistant: SELECT g_hager FROM table_name_49 WHERE e_greenberg = "266 (14%)" |
###context:CREATE TABLE table_name_86 (precincts VARCHAR, county VARCHAR)
###human: Which Precincts has a County of passaic?
###assistant: SELECT precincts FROM table_name_86 WHERE county = "passaic" |
###context:CREATE TABLE table_name_34 (e_greenberg VARCHAR, t_wyka VARCHAR)
###human: Which E. Greenberg has a T. Wyka of 10,793 (70%)?
###assistant: SELECT e_greenberg FROM table_name_34 WHERE t_wyka = "10,793 (70%)" |
###context:CREATE TABLE table_name_43 (player VARCHAR, finish VARCHAR, country VARCHAR)
###human: Which player from England finished in T41?
###assistant: SELECT player FROM table_name_43 WHERE finish = "t41" AND country = "england" |
###context:CREATE TABLE table_name_78 (country VARCHAR, year_s__won VARCHAR)
###human: From which country is the player that won in 1998?
###assistant: SELECT country FROM table_name_78 WHERE year_s__won = "1998" |
###context:CREATE TABLE table_name_57 (total VARCHAR, year_s__won VARCHAR)
###human: In 1997, what was the final total?
###assistant: SELECT total FROM table_name_57 WHERE year_s__won = "1997" |
###context:CREATE TABLE table_name_14 (to_par VARCHAR, player VARCHAR)
###human: What was the To Par score for player Justin Leonard?
###assistant: SELECT to_par FROM table_name_14 WHERE player = "justin leonard" |
###context:CREATE TABLE table_name_30 (points VARCHAR, games VARCHAR)
###human: How many points were scored by the player who played 348 games?
###assistant: SELECT points FROM table_name_30 WHERE games = "348" |
###context:CREATE TABLE table_name_86 (points VARCHAR, games VARCHAR)
###human: How many points were scored by the player who played 363 games?
###assistant: SELECT points FROM table_name_86 WHERE games = "363" |
###context:CREATE TABLE table_name_49 (replaced_by VARCHAR, manner_of_departure VARCHAR, date_of_appointment VARCHAR)
###human: What kind of Replaced has a Manner of departure of end of contract on dec. 16, 2008?
###assistant: SELECT replaced_by FROM table_name_49 WHERE manner_of_departure = "end of contract" AND date_of_appointment = "dec. 16, 2008" |
###context:CREATE TABLE table_name_95 (replaced_by VARCHAR, outgoing_manager VARCHAR)
###human: What kind of Replaced has a Outgoing manager of guillermo sanguinetti?
###assistant: SELECT replaced_by FROM table_name_95 WHERE outgoing_manager = "guillermo sanguinetti" |
###context:CREATE TABLE table_name_71 (replaced_by VARCHAR, team VARCHAR)
###human: What kind of Replaced has a Team of gimnasia y esgrima (lp)?
###assistant: SELECT replaced_by FROM table_name_71 WHERE team = "gimnasia y esgrima (lp)" |
###context:CREATE TABLE table_name_75 (team VARCHAR, position_in_table VARCHAR)
###human: Which Team has a Position in table of 15th (c)?
###assistant: SELECT team FROM table_name_75 WHERE position_in_table = "15th (c)" |
###context:CREATE TABLE table_name_55 (team VARCHAR, position_in_table VARCHAR, outgoing_manager VARCHAR)
###human: Which Team that has a Position in table of 15th (a) and a Outgoing manager of claudio borghi?
###assistant: SELECT team FROM table_name_55 WHERE position_in_table = "15th (a)" AND outgoing_manager = "claudio borghi" |
###context:CREATE TABLE table_name_14 (team VARCHAR, date_of_appointment VARCHAR)
###human: Which Team has a Date of appointment on sep. 20, 2008?
###assistant: SELECT team FROM table_name_14 WHERE date_of_appointment = "sep. 20, 2008" |
###context:CREATE TABLE table_name_59 (losses INTEGER, played VARCHAR, points VARCHAR, position VARCHAR, wins VARCHAR)
###human: What was the highest number of losses for a position less than 6, with more than 11 wins and 36 points, with a played entry of more than 30?
###assistant: SELECT MAX(losses) FROM table_name_59 WHERE position < 6 AND wins > 11 AND points = 36 AND played > 30 |
###context:CREATE TABLE table_name_51 (wins VARCHAR, points VARCHAR, goals_for VARCHAR, goals_against VARCHAR, draws VARCHAR)
###human: What is the total number of wins for the entry that has fewer than 49 goals against, 39 goals for, 9 draws, and fewer than 31 points?
###assistant: SELECT COUNT(wins) FROM table_name_51 WHERE goals_against < 49 AND draws = 9 AND goals_for = 39 AND points < 31 |
###context:CREATE TABLE table_name_99 (goals_for INTEGER, draws VARCHAR, points VARCHAR, losses VARCHAR, wins VARCHAR)
###human: What is the average number of goals for entries with more than 12 losses, more than 10 wins, more than 3 draws, and fewer than 29 points?
###assistant: SELECT AVG(goals_for) FROM table_name_99 WHERE losses > 12 AND wins > 10 AND points < 29 AND draws > 3 |
###context:CREATE TABLE table_name_82 (wins INTEGER, points VARCHAR, draws VARCHAR, club VARCHAR)
###human: What is the highest number of wins for club Cd Orense, with points greater than 36 and more than 4 draws?
###assistant: SELECT MAX(wins) FROM table_name_82 WHERE draws > 4 AND club = "cd orense" AND points > 36 |
###context:CREATE TABLE table_name_65 (played INTEGER, position INTEGER)
###human: What is the total number of played for the entry with a position of less than 1?
###assistant: SELECT SUM(played) FROM table_name_65 WHERE position < 1 |
###context:CREATE TABLE table_name_99 (record VARCHAR, time VARCHAR)
###human: For the match that lasted 3:53 minutes, what was the final record?
###assistant: SELECT record FROM table_name_99 WHERE time = "3:53" |
###context:CREATE TABLE table_name_18 (location VARCHAR, event VARCHAR)
###human: Where was the UFC 154 match held?
###assistant: SELECT location FROM table_name_18 WHERE event = "ufc 154" |
###context:CREATE TABLE table_name_40 (team_1 VARCHAR)
###human: What is the 1st leg that has a Rc Cannes Team 1?
###assistant: SELECT 1 AS st_leg FROM table_name_40 WHERE team_1 = "rc cannes" |
###context:CREATE TABLE table_name_45 (position INTEGER, loses VARCHAR, points VARCHAR, wins VARCHAR)
###human: What is the lowest positioned club with points greater than 40, 16 wins and losses less than 3?
###assistant: SELECT MIN(position) FROM table_name_45 WHERE points > 40 AND wins = 16 AND loses < 3 |
###context:CREATE TABLE table_name_84 (position INTEGER, wins VARCHAR, loses VARCHAR)
###human: What is the lowest positioned team with 2 wins and losses greater than 13?
###assistant: SELECT MIN(position) FROM table_name_84 WHERE wins = 2 AND loses > 13 |
###context:CREATE TABLE table_name_88 (wins INTEGER, goals_scored VARCHAR, goals_conceded VARCHAR, draws VARCHAR)
###human: What is the smallest number of wins where goals conceded are below 26, draws are 1 and goals scored are below 74?
###assistant: SELECT MIN(wins) FROM table_name_88 WHERE goals_conceded < 26 AND draws = 1 AND goals_scored < 74 |
###context:CREATE TABLE table_name_60 (wins INTEGER, goals_conceded VARCHAR, club VARCHAR, points VARCHAR, goals_scored VARCHAR)
###human: For the club Minija Kretinga, what's the lowest number of wins with points smaller than 25, goals at 22 and goals conceded below 39?
###assistant: SELECT MIN(wins) FROM table_name_60 WHERE points < 25 AND goals_scored = 22 AND club = "minija kretinga" AND goals_conceded < 39 |
###context:CREATE TABLE table_name_50 (place VARCHAR, bronze VARCHAR, silver VARCHAR, year VARCHAR)
###human: In which Place was the Silver won by valeri postoianov ( urs ) later than 1969 and the Bronze won by alexander gazov ( urs )?
###assistant: SELECT place FROM table_name_50 WHERE silver = "valeri postoianov ( urs )" AND year > 1969 AND bronze = "alexander gazov ( urs )" |
###context:CREATE TABLE table_name_59 (bronze VARCHAR, place VARCHAR)
###human: Who won the Bronze at Melbourne?
###assistant: SELECT bronze FROM table_name_59 WHERE place = "melbourne" |
###context:CREATE TABLE table_name_3 (place VARCHAR, silver VARCHAR)
###human: In what Place was the Silver won by vladimir vesselov ( urs )?
###assistant: SELECT place FROM table_name_3 WHERE silver = "vladimir vesselov ( urs )" |
###context:CREATE TABLE table_name_66 (award VARCHAR, result VARCHAR, film VARCHAR)
###human: What is Award, when Result is "Nominated", and when Film is "Sankranthi"?
###assistant: SELECT award FROM table_name_66 WHERE result = "nominated" AND film = "sankranthi" |
###context:CREATE TABLE table_name_35 (award VARCHAR, category VARCHAR, year VARCHAR)
###human: What is Award, when Category is "Best Actor", and when Year is less than 1988?
###assistant: SELECT award FROM table_name_35 WHERE category = "best actor" AND year < 1988 |
###context:CREATE TABLE table_name_18 (year VARCHAR, award VARCHAR, category VARCHAR)
###human: What is the total number of Year, when Award is "Vamsi Berkley Award", and when Category is "Best Actor"?
###assistant: SELECT COUNT(year) FROM table_name_18 WHERE award = "vamsi berkley award" AND category = "best actor" |
###context:CREATE TABLE table_name_87 (result VARCHAR, film VARCHAR, award VARCHAR)
###human: What is Result, when Film is "Dharma Chakram", and when Award is "Nandi Award for Best Actor"?
###assistant: SELECT result FROM table_name_87 WHERE film = "dharma chakram" AND award = "nandi award for best actor" |
###context:CREATE TABLE table_name_11 (opponent VARCHAR, date VARCHAR)
###human: What is Opponent, when Date is "Dec 8"?
###assistant: SELECT opponent FROM table_name_11 WHERE date = "dec 8" |
###context:CREATE TABLE table_name_30 (score VARCHAR, date VARCHAR)
###human: What is Score, when Date is "Nov 28"?
###assistant: SELECT score FROM table_name_30 WHERE date = "nov 28" |
###context:CREATE TABLE table_name_8 (date VARCHAR, score VARCHAR)
###human: What is Date, when Score is "80-79"?
###assistant: SELECT date FROM table_name_8 WHERE score = "80-79" |
###context:CREATE TABLE table_name_11 (record VARCHAR, opponent VARCHAR)
###human: What is Record, when Opponent is "New York Knicks"?
###assistant: SELECT record FROM table_name_11 WHERE opponent = "new york knicks" |
###context:CREATE TABLE table_name_9 (score VARCHAR, opponent VARCHAR)
###human: What is Score, when Opponent is "@ New York Knicks"?
###assistant: SELECT score FROM table_name_9 WHERE opponent = "@ new york knicks" |
###context:CREATE TABLE table_name_19 (result VARCHAR, opponent VARCHAR)
###human: What is Result, when Opponent is "Rochester Royals"?
###assistant: SELECT result FROM table_name_19 WHERE opponent = "rochester royals" |
###context:CREATE TABLE table_name_59 (result VARCHAR, venue VARCHAR)
###human: What was the Result at Strathclyde Homes Stadium?
###assistant: SELECT result FROM table_name_59 WHERE venue = "strathclyde homes stadium" |
###context:CREATE TABLE table_name_99 (score VARCHAR, country VARCHAR)
###human: Name the Score of spain?
###assistant: SELECT score FROM table_name_99 WHERE country = "spain" |
###context:CREATE TABLE table_name_20 (country VARCHAR, to_par VARCHAR)
###human: Which Country has a To par of −2? Question 2
###assistant: SELECT country FROM table_name_20 WHERE to_par = "−2" |
###context:CREATE TABLE table_name_1 (place VARCHAR, to_par VARCHAR, player VARCHAR)
###human: Which Place has a To par of −1 and don pooley?
###assistant: SELECT place FROM table_name_1 WHERE to_par = "−1" AND player = "don pooley" |
###context:CREATE TABLE table_name_24 (result VARCHAR, week VARCHAR)
###human: What is week 15's result?
###assistant: SELECT result FROM table_name_24 WHERE week = 15 |
###context:CREATE TABLE table_name_31 (week INTEGER, opponent VARCHAR)
###human: What week did Cleveland Browns played?
###assistant: SELECT AVG(week) FROM table_name_31 WHERE opponent = "cleveland browns" |
###context:CREATE TABLE table_name_43 (goals INTEGER, name VARCHAR)
###human: What is the Highest Goals for Grella?
###assistant: SELECT MAX(goals) FROM table_name_43 WHERE name = "grella" |
###context:CREATE TABLE table_name_67 (notes VARCHAR, name VARCHAR)
###human: What is in the Notes for Player Name Grella?
###assistant: SELECT notes FROM table_name_67 WHERE name = "grella" |
###context:CREATE TABLE table_name_24 (position VARCHAR, round VARCHAR, player VARCHAR)
###human: Who position did matthew tassone who was drafted after round 5 play?
###assistant: SELECT position FROM table_name_24 WHERE round > 5 AND player = "matthew tassone" |
###context:CREATE TABLE table_name_80 (_percentage_hydropower INTEGER, _percentage_nuclear_power VARCHAR, _percentage_oil VARCHAR, country VARCHAR)
###human: what is the highest % hydropower when the % oil is less than 24.5, country is united arab emirates and the % nuclear power is 0?
###assistant: SELECT MAX(_percentage_hydropower) FROM table_name_80 WHERE _percentage_oil < 24.5 AND country = "united arab emirates" AND _percentage_nuclear_power < 0 |
###context:CREATE TABLE table_name_59 (_percentage_hydropower INTEGER, _percentage_coal VARCHAR, _percentage_nuclear_power VARCHAR)
###human: what is the highest % hydropower when % coal is 4.9 and % nuclear power is more than 0?
###assistant: SELECT MAX(_percentage_hydropower) FROM table_name_59 WHERE _percentage_coal = 4.9 AND _percentage_nuclear_power > 0 |
###context:CREATE TABLE table_name_19 (_billion_ VARCHAR, electricity_production__kw_h INTEGER, _percentage_hydropower VARCHAR, _percentage_other_renewable VARCHAR, _percentage_coal VARCHAR)
###human: what is the highest electricity production (kw/h, billion) when the % other renewable is 0.4, % coal is 0 and % hydropower is more than 99?
###assistant: SELECT MAX(electricity_production__kw_h), _billion_ FROM table_name_19 WHERE _percentage_other_renewable = 0.4 AND _percentage_coal = 0 AND _percentage_hydropower > 99 |
###context:CREATE TABLE table_name_94 (player VARCHAR, round VARCHAR)
###human: Who is the player in round 6?
###assistant: SELECT player FROM table_name_94 WHERE round = 6 |
###context:CREATE TABLE table_name_66 (college_junior_club_team__league_ VARCHAR, player VARCHAR)
###human: What college did Louis LeBlanc attend?
###assistant: SELECT college_junior_club_team__league_ FROM table_name_66 WHERE player = "louis leblanc" |
###context:CREATE TABLE table_name_41 (goals_against INTEGER, goals_for VARCHAR, losses VARCHAR)
###human: How many goals against total did the team with more than 52 goals and fewer than 10 losses have?
###assistant: SELECT SUM(goals_against) FROM table_name_41 WHERE goals_for > 52 AND losses < 10 |
###context:CREATE TABLE table_name_14 (draws INTEGER, club VARCHAR, goal_difference VARCHAR)
###human: What was the low number of draws for Levante Ud when their goal difference was smaller than 6?
###assistant: SELECT MIN(draws) FROM table_name_14 WHERE club = "levante ud" AND goal_difference < 6 |
###context:CREATE TABLE table_name_80 (against INTEGER, draws INTEGER)
###human: What is the average entry in the against column with draws smaller than 0?
###assistant: SELECT AVG(against) FROM table_name_80 WHERE draws < 0 |
###context:CREATE TABLE table_name_75 (losses INTEGER, portland_dfl VARCHAR, draws VARCHAR)
###human: What is the total number of losses that has draws larger than 1 and a Portland DFL of westerns?
###assistant: SELECT SUM(losses) FROM table_name_75 WHERE portland_dfl = "westerns" AND draws > 1 |
###context:CREATE TABLE table_name_94 (draws INTEGER, byes INTEGER)
###human: What is the sum of draws for all byes larger than 0?
###assistant: SELECT SUM(draws) FROM table_name_94 WHERE byes > 0 |
###context:CREATE TABLE table_name_11 (byes INTEGER, portland_dfl VARCHAR, losses VARCHAR)
###human: What is the sum of byes for losses larger than 14 for a Portland DFL of westerns?
###assistant: SELECT SUM(byes) FROM table_name_11 WHERE portland_dfl = "westerns" AND losses > 14 |
###context:CREATE TABLE table_name_85 (result VARCHAR, opponent_number VARCHAR)
###human: What was the result when the opponent was at 2 usc?
###assistant: SELECT result FROM table_name_85 WHERE opponent_number = "at 2 usc" |
###context:CREATE TABLE table_name_52 (result VARCHAR, date VARCHAR)
###human: What was the result on 10/08/1988?
###assistant: SELECT result FROM table_name_52 WHERE date = "10/08/1988" |
###context:CREATE TABLE table_name_53 (rank__number VARCHAR, result VARCHAR)
###human: What was the rank# of the opponent when the result of the game was w42-14?
###assistant: SELECT rank__number FROM table_name_53 WHERE result = "w42-14" |
###context:CREATE TABLE table_name_15 (result VARCHAR, attendance VARCHAR)
###human: What was the result of the game that had 56,500 in attendance?
###assistant: SELECT result FROM table_name_15 WHERE attendance = "56,500" |
###context:CREATE TABLE table_name_57 (rank__number VARCHAR, attendance VARCHAR)
###human: What was the rank# of the opponent when there was 93,829 in attendance?
###assistant: SELECT rank__number FROM table_name_57 WHERE attendance = "93,829" |
###context:CREATE TABLE table_name_24 (date VARCHAR, rank__number VARCHAR, opponent_number VARCHAR)
###human: On what date was the game played where the opponent was Stanford, ranked #5?
###assistant: SELECT date FROM table_name_24 WHERE rank__number = "5" AND opponent_number = "stanford" |
###context:CREATE TABLE table_name_21 (number_of_electorates__2009_ VARCHAR, reserved_for___sc___st__none_ VARCHAR)
###human: Which Number of electorates (2009) has a Reserved for (SC / ST /None) of total:?
###assistant: SELECT number_of_electorates__2009_ FROM table_name_21 WHERE reserved_for___sc___st__none_ = "total:" |
###context:CREATE TABLE table_name_37 (tournament VARCHAR, year INTEGER)
###human: What tournament took place after 1973?
###assistant: SELECT tournament FROM table_name_37 WHERE year > 1973 |
###context:CREATE TABLE table_name_14 (tournament VARCHAR, extra VARCHAR, year VARCHAR)
###human: What tournament took place before 1972 with an extra of 200 m?
###assistant: SELECT tournament FROM table_name_14 WHERE extra = "200 m" AND year < 1972 |
###context:CREATE TABLE table_name_20 (current_code VARCHAR, type VARCHAR, years VARCHAR)
###human: What is the current code for the club trophy, in 1867 only?
###assistant: SELECT current_code FROM table_name_20 WHERE type = "club trophy" AND years = "1867 only" |
###context:CREATE TABLE table_name_64 (location VARCHAR, original_code VARCHAR)
###human: What is the location of the original code for victorian rules?
###assistant: SELECT location FROM table_name_64 WHERE original_code = "victorian rules" |
###context:CREATE TABLE table_name_69 (location VARCHAR, type VARCHAR)
###human: What is the location for the club trophy?
###assistant: SELECT location FROM table_name_69 WHERE type = "club trophy" |
###context:CREATE TABLE table_name_52 (location VARCHAR, type VARCHAR, years VARCHAR)
###human: What is the location for the club trophy from the year 1867 only?
###assistant: SELECT location FROM table_name_52 WHERE type = "club trophy" AND years = "1867 only" |
###context:CREATE TABLE table_name_24 (score VARCHAR, tournament VARCHAR)
###human: What is Score, when Tournament is "Tampere , Finland"?
###assistant: SELECT score FROM table_name_24 WHERE tournament = "tampere , finland" |
###context:CREATE TABLE table_name_31 (surface VARCHAR, opponent VARCHAR)
###human: What is Surface, when Opponent is "Jiří Vaněk"?
###assistant: SELECT surface FROM table_name_31 WHERE opponent = "jiří vaněk" |
###context:CREATE TABLE table_name_52 (score VARCHAR, opponent VARCHAR)
###human: What is Score, when Opponent is "Ivo Minář"?
###assistant: SELECT score FROM table_name_52 WHERE opponent = "ivo minář" |
###context:CREATE TABLE table_name_38 (score VARCHAR, opponent VARCHAR)
###human: What is Score, when Opponent is "Daniel Gimeno-Traver"?
###assistant: SELECT score FROM table_name_38 WHERE opponent = "daniel gimeno-traver" |
###context:CREATE TABLE table_name_50 (tournament VARCHAR, moves VARCHAR, result VARCHAR)
###human: What is Tournament, when Moves is "37", and when Result is "½–½"?
###assistant: SELECT tournament FROM table_name_50 WHERE moves = 37 AND result = "½–½" |
###context:CREATE TABLE table_name_77 (result VARCHAR, tournament VARCHAR, year VARCHAR, white VARCHAR)
###human: What is Result, when Year is greater than 1999, when White is "Kramnik", and when Tournament is "Mainz CC Champions Duel (5)"?
###assistant: SELECT result FROM table_name_77 WHERE year > 1999 AND white = "kramnik" AND tournament = "mainz cc champions duel (5)" |
###context:CREATE TABLE table_name_77 (opening VARCHAR, tournament VARCHAR, white VARCHAR, year VARCHAR)
###human: What is Opening, when White is Kramnik, when Year is less than 2001, and when Tournament is "Siemens Giants"?
###assistant: SELECT opening FROM table_name_77 WHERE white = "kramnik" AND year < 2001 AND tournament = "siemens giants" |
###context:CREATE TABLE table_name_46 (tournament VARCHAR, moves VARCHAR, black VARCHAR, result VARCHAR)
###human: What is Tournament, when Black is "Kramnik", when Result is "½–½", and when Moves is "40"?
###assistant: SELECT tournament FROM table_name_46 WHERE black = "kramnik" AND result = "½–½" AND moves = 40 |
###context:CREATE TABLE table_name_9 (location VARCHAR, opponent VARCHAR)
###human: What was the location where the opponent was Jae Young Kim?
###assistant: SELECT location FROM table_name_9 WHERE opponent = "jae young kim" |
###context:CREATE TABLE table_name_46 (event VARCHAR, opponent VARCHAR)
###human: Which event was the opponent jose carlos oliveira?
###assistant: SELECT event FROM table_name_46 WHERE opponent = "jose carlos oliveira" |
###context:CREATE TABLE table_name_87 (round VARCHAR, opponent VARCHAR)
###human: How many rounds was the bout against bobby rehman?
###assistant: SELECT round FROM table_name_87 WHERE opponent = "bobby rehman" |
###context:CREATE TABLE table_name_89 (location VARCHAR, record VARCHAR)
###human: Where was the location when the record was 12-5?
###assistant: SELECT location FROM table_name_89 WHERE record = "12-5" |
###context:CREATE TABLE table_name_57 (dvd_title VARCHAR, region_1 VARCHAR, no_of_discs VARCHAR)
###human: Which DVD Title has a Region 1 of n/a and greater than 3 in No. of Discs?
###assistant: SELECT dvd_title FROM table_name_57 WHERE region_1 = "n/a" AND no_of_discs > 3 |
###context:CREATE TABLE table_name_83 (region_1 VARCHAR, no_of_episodes VARCHAR, region_2 VARCHAR)
###human: Which region 1 has 12 Episodes and a Region 2 of 18 August 2008?
###assistant: SELECT region_1 FROM table_name_83 WHERE no_of_episodes = 12 AND region_2 = "18 august 2008" |
###context:CREATE TABLE table_name_14 (tries_for VARCHAR, tries_against VARCHAR)
###human: WHAT TRIES HAVE TRIES AGAINST AT 140?
###assistant: SELECT tries_for FROM table_name_14 WHERE tries_against = "140" |
###context:CREATE TABLE table_name_1 (tries_against VARCHAR, played VARCHAR, points_against VARCHAR)
###human: WHAT IS THE TRIES AGAINST WITH PLAYED 22, POINTS AGAINST 784?
###assistant: SELECT tries_against FROM table_name_1 WHERE played = "22" AND points_against = "784" |
###context:CREATE TABLE table_name_36 (tries_for VARCHAR, points_for VARCHAR)
###human: WHAT IS THE TRIES WITH POINTS 190?
###assistant: SELECT tries_for FROM table_name_36 WHERE points_for = "190" |
###context:CREATE TABLE table_name_89 (points VARCHAR, tries_for VARCHAR)
###human: WHAT IS THE POINTS WITH 55 TRIES?
###assistant: SELECT points FROM table_name_89 WHERE tries_for = "55" |
###context:CREATE TABLE table_name_32 (lost VARCHAR, losing_bonus VARCHAR, points_for VARCHAR)
###human: WHAT IS THE LOST WITH 1 LOSING BONUS, 148 POINTS?
###assistant: SELECT lost FROM table_name_32 WHERE losing_bonus = "1" AND points_for = "148" |
###context:CREATE TABLE table_name_31 (losing_bonus VARCHAR, points_for VARCHAR)
###human: WHAT IS THE LOSING BONUS WITH 190 POINTS?
###assistant: SELECT losing_bonus FROM table_name_31 WHERE points_for = "190" |
###context:CREATE TABLE table_name_99 (pick INTEGER, position VARCHAR)
###human: What is the sum of the pick of the guard position player?
###assistant: SELECT SUM(pick) FROM table_name_99 WHERE position = "guard" |
###context:CREATE TABLE table_name_60 (nfl_club VARCHAR, pick VARCHAR)
###human: What is the NFL club with pick # 153?
###assistant: SELECT nfl_club FROM table_name_60 WHERE pick = 153 |
###context:CREATE TABLE table_name_58 (player VARCHAR, round VARCHAR, pick VARCHAR)
###human: Who is the player from a round less than 13 and has a pick of 74?
###assistant: SELECT player FROM table_name_58 WHERE round < 13 AND pick = 74 |
###context:CREATE TABLE table_name_47 (player VARCHAR, round VARCHAR, position VARCHAR)
###human: Who is the player from round 13 that plays center?
###assistant: SELECT player FROM table_name_47 WHERE round = 13 AND position = "center" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.