text stringlengths 114 1.06k |
|---|
### question: Which Average Cards a game has a Season of 1997/1998, and a Games larger than 38? ### answer: SELECT MAX(average_cards_a_game) FROM table_name_78 WHERE season = "1997/1998" AND games > 38 ### context: CREATE TABLE table_name_78 (average_cards_a_game INTEGER, season VARCHAR, games VARCHAR) |
### question: Which Red Cards has a Season of 1998/1999, and a Games larger than 41? ### answer: SELECT MIN(red_cards) FROM table_name_55 WHERE season = "1998/1999" AND games > 41 ### context: CREATE TABLE table_name_55 (red_cards INTEGER, season VARCHAR, games VARCHAR) |
### question: Which Games has a Season of 2003/2004, and a Red Cards smaller than 5? ### answer: SELECT AVG(games) FROM table_name_65 WHERE season = "2003/2004" AND red_cards < 5 ### context: CREATE TABLE table_name_65 (games INTEGER, season VARCHAR, red_cards VARCHAR) |
### question: Which Average Cards a game has a Season of 2004/2005, and a Red Cards larger than 3? ### answer: SELECT MIN(average_cards_a_game) FROM table_name_22 WHERE season = "2004/2005" AND red_cards > 3 ### context: CREATE TABLE table_name_22 (average_cards_a_game INTEGER, season VARCHAR, red_cards VARCHAR) |
### question: Which Yellow Cards has a Season of 1999/2000? ### answer: SELECT AVG(yellow_cards) FROM table_name_75 WHERE season = "1999/2000" ### context: CREATE TABLE table_name_75 (yellow_cards INTEGER, season VARCHAR) |
### question: Which Goals have Ends of 30 june 2010, and Since larger than 2007? ### answer: SELECT goals FROM table_name_14 WHERE ends = "30 june 2010" AND since > 2007 ### context: CREATE TABLE table_name_14 (goals VARCHAR, ends VARCHAR, since VARCHAR) |
### question: Which Name has Ends of 30 june 2010, and a Nation of eng, and Since larger than 2007? ### answer: SELECT name FROM table_name_2 WHERE ends = "30 june 2010" AND nat = "eng" AND since > 2007 ### context: CREATE TABLE table_name_2 (name VARCHAR, since VARCHAR, ends VARCHAR, nat VARCHAR) |
### question: What was Bryan Clay's react time? ### answer: SELECT MIN(react) FROM table_name_94 WHERE name = "bryan clay" ### context: CREATE TABLE table_name_94 (react INTEGER, name VARCHAR) |
### question: What country did Dmitriy Karpov represent? ### answer: SELECT country FROM table_name_92 WHERE name = "dmitriy karpov" ### context: CREATE TABLE table_name_92 (country VARCHAR, name VARCHAR) |
### question: What is Plural, when Singular is tor (your)? ### answer: SELECT plural FROM table_name_33 WHERE singular = "tor (your)" ### context: CREATE TABLE table_name_33 (plural VARCHAR, singular VARCHAR) |
### question: What is Proximity, when Honor is P, and when Singular is ẽr (his/her/its)? ### answer: SELECT proximity FROM table_name_2 WHERE honor = "p" AND singular = "ẽr (his/her/its)" ### context: CREATE TABLE table_name_2 (proximity VARCHAR, honor VARCHAR, singular VARCHAR) |
### question: What is the lowest Subject, when Plural is tãder (their)? ### answer: SELECT MIN(subject) FROM table_name_58 WHERE plural = "tãder (their)" ### context: CREATE TABLE table_name_58 (subject INTEGER, plural VARCHAR) |
### question: What is Proximity, when Plural is amader (our)? ### answer: SELECT proximity FROM table_name_67 WHERE plural = "amader (our)" ### context: CREATE TABLE table_name_67 (proximity VARCHAR, plural VARCHAR) |
### question: What is Honor, when Singular is ẽr (his/her/its)? ### answer: SELECT honor FROM table_name_97 WHERE singular = "ẽr (his/her/its)" ### context: CREATE TABLE table_name_97 (honor VARCHAR, singular VARCHAR) |
### question: what is the f/laps when the season is 2011 and races is 18? ### answer: SELECT f_laps FROM table_name_16 WHERE season = "2011" AND races = "18" ### context: CREATE TABLE table_name_16 (f_laps VARCHAR, season VARCHAR, races VARCHAR) |
### question: what is the wins when the f/laps is test driver and team is lotus racing? ### answer: SELECT wins FROM table_name_20 WHERE f_laps = "test driver" AND team = "lotus racing" ### context: CREATE TABLE table_name_20 (wins VARCHAR, f_laps VARCHAR, team VARCHAR) |
### question: what is the poles when the wins is 0 and points is 0? ### answer: SELECT poles FROM table_name_86 WHERE wins = "0" AND points = "0" ### context: CREATE TABLE table_name_86 (poles VARCHAR, wins VARCHAR, points VARCHAR) |
### question: What score won $36,090? ### answer: SELECT score FROM table_name_65 WHERE money___$__ = "36,090" ### context: CREATE TABLE table_name_65 (score VARCHAR, money___$__ VARCHAR) |
### question: What was Larry Nelson's final score? ### answer: SELECT score FROM table_name_39 WHERE player = "larry nelson" ### context: CREATE TABLE table_name_39 (score VARCHAR, player VARCHAR) |
### question: What is the average attendance of the game with 38 opponent and less than 14 Falcons points? ### answer: SELECT AVG(attendance) FROM table_name_63 WHERE opponents = 38 AND falcons_points < 14 ### context: CREATE TABLE table_name_63 (attendance INTEGER, opponents VARCHAR, falcons_points VARCHAR) |
### question: What is the total number of losses of the team with games less than 14, wins less than 3, in the Maac Conference at Fairfield School? ### answer: SELECT COUNT(losses) FROM table_name_61 WHERE games < 14 AND wins < 3 AND conference = "maac" AND school = "fairfield" ### context: CREATE TABLE table_name_61 (... |
### question: What is number 4's title? ### answer: SELECT title FROM table_name_36 WHERE number = 4 ### context: CREATE TABLE table_name_36 (title VARCHAR, number VARCHAR) |
### question: How many people were born in 1368? ### answer: SELECT COUNT(number) FROM table_name_52 WHERE born = "1368" ### context: CREATE TABLE table_name_52 (number VARCHAR, born VARCHAR) |
### question: Who was number 12's mother? ### answer: SELECT mother FROM table_name_90 WHERE number = 12 ### context: CREATE TABLE table_name_90 (mother VARCHAR, number VARCHAR) |
### question: What was the week number when they played on Dec. 19? ### answer: SELECT COUNT(week) FROM table_name_79 WHERE date = "dec. 19" ### context: CREATE TABLE table_name_79 (week VARCHAR, date VARCHAR) |
### question: What is the average number of students in East Lansing, MI? ### answer: SELECT AVG(founded) FROM table_name_70 WHERE location = "east lansing, mi" ### context: CREATE TABLE table_name_70 (founded INTEGER, location VARCHAR) |
### question: What is the lowest number of students at the community college? ### answer: SELECT MIN(founded) FROM table_name_8 WHERE affiliation = "community college" ### context: CREATE TABLE table_name_8 (founded INTEGER, affiliation VARCHAR) |
### question: What is Joanne Carner's average score in Canadian Women's Open games that she has won? ### answer: SELECT AVG(score) FROM table_name_70 WHERE champion = "joanne carner" ### context: CREATE TABLE table_name_70 (score INTEGER, champion VARCHAR) |
### question: What country does jocelyne bourassa play for? ### answer: SELECT country FROM table_name_73 WHERE champion = "jocelyne bourassa" ### context: CREATE TABLE table_name_73 (country VARCHAR, champion VARCHAR) |
### question: Which Performance has a Test Standard of bs en779, and a Particulate size approaching 100% retention of >2µm, and a Class of f6? ### answer: SELECT performance FROM table_name_39 WHERE test_standard = "bs en779" AND particulate_size_approaching_100_percentage_retention = ">2µm" AND class = "f6" ### conte... |
### question: Which Performance has a Usage of hepa and a Class of h14? ### answer: SELECT performance FROM table_name_38 WHERE usage = "hepa" AND class = "h14" ### context: CREATE TABLE table_name_38 (performance VARCHAR, usage VARCHAR, class VARCHAR) |
### question: Which Particulate size approaching 100% retention has a Usage of semi hepa and a Class of h12? ### answer: SELECT particulate_size_approaching_100_percentage_retention FROM table_name_47 WHERE usage = "semi hepa" AND class = "h12" ### context: CREATE TABLE table_name_47 (particulate_size_approaching_100_p... |
### question: Which Test Standard has a Usage of secondary filters, and a Class of f5? Question 4 ### answer: SELECT test_standard FROM table_name_28 WHERE usage = "secondary filters" AND class = "f5" ### context: CREATE TABLE table_name_28 (test_standard VARCHAR, usage VARCHAR, class VARCHAR) |
### question: Which Score has a To par of –1, and a Player of mick soli? ### answer: SELECT score FROM table_name_7 WHERE to_par = "–1" AND player = "mick soli" ### context: CREATE TABLE table_name_7 (score VARCHAR, to_par VARCHAR, player VARCHAR) |
### question: Which Score has a Place of t1, and a Player of hubert green? ### answer: SELECT AVG(score) FROM table_name_35 WHERE place = "t1" AND player = "hubert green" ### context: CREATE TABLE table_name_35 (score INTEGER, place VARCHAR, player VARCHAR) |
### question: Which Country has a Score of 69, and a Player of mick soli? ### answer: SELECT country FROM table_name_92 WHERE score = 69 AND player = "mick soli" ### context: CREATE TABLE table_name_92 (country VARCHAR, score VARCHAR, player VARCHAR) |
### question: Which Country has a Place of t1? ### answer: SELECT country FROM table_name_38 WHERE place = "t1" ### context: CREATE TABLE table_name_38 (country VARCHAR, place VARCHAR) |
### question: Where is the moving from location with a transfer window of summer and the source kerkida.net? ### answer: SELECT moving_from FROM table_name_88 WHERE transfer_window = "summer" AND source = "kerkida.net" ### context: CREATE TABLE table_name_88 (moving_from VARCHAR, transfer_window VARCHAR, source VARCHAR... |
### question: Which name has the source apoelfc.com.cy and a type of transfer? ### answer: SELECT name FROM table_name_94 WHERE source = "apoelfc.com.cy" AND type = "transfer" ### context: CREATE TABLE table_name_94 (name VARCHAR, source VARCHAR, type VARCHAR) |
### question: What is the Fate of the San Pablo ship? ### answer: SELECT fate FROM table_name_48 WHERE name = "san pablo" ### context: CREATE TABLE table_name_48 (fate VARCHAR, name VARCHAR) |
### question: What is the date of attack of the Circe Shell Ship? ### answer: SELECT date FROM table_name_55 WHERE name = "circe shell" ### context: CREATE TABLE table_name_55 (date VARCHAR, name VARCHAR) |
### question: What fuel system was used in 1960-62? ### answer: SELECT fuel_system FROM table_name_95 WHERE years = "1960-62" ### context: CREATE TABLE table_name_95 (fuel_system VARCHAR, years VARCHAR) |
### question: How much power does the 1500 model have with a displacement of 1490cc? ### answer: SELECT power FROM table_name_22 WHERE model = "1500" AND displacement = "1490cc" ### context: CREATE TABLE table_name_22 (power VARCHAR, model VARCHAR, displacement VARCHAR) |
### question: Which years have a displacement of 1816cc? ### answer: SELECT years FROM table_name_44 WHERE displacement = "1816cc" ### context: CREATE TABLE table_name_44 (years VARCHAR, displacement VARCHAR) |
### question: How much power does the fuel injection system have with a displacement of 1991cc? ### answer: SELECT power FROM table_name_47 WHERE fuel_system = "fuel injection" AND displacement = "1991cc" ### context: CREATE TABLE table_name_47 (power VARCHAR, fuel_system VARCHAR, displacement VARCHAR) |
### question: Which fuel system has a displacement of 1490cc? ### answer: SELECT fuel_system FROM table_name_68 WHERE displacement = "1490cc" ### context: CREATE TABLE table_name_68 (fuel_system VARCHAR, displacement VARCHAR) |
### question: Which fuel system has a displacement of 1500cc for the Berlina model? ### answer: SELECT fuel_system FROM table_name_71 WHERE displacement = "1500cc" AND model = "berlina" ### context: CREATE TABLE table_name_71 (fuel_system VARCHAR, displacement VARCHAR, model VARCHAR) |
### question: What is the lowest Industry, when Year is greater than 2005, and when Agriculture is greater than 11? ### answer: SELECT MIN(industry) FROM table_name_96 WHERE year > 2005 AND agriculture > 11 ### context: CREATE TABLE table_name_96 (industry INTEGER, year VARCHAR, agriculture VARCHAR) |
### question: What is the average Industry, when Agriculture is greater than 11? ### answer: SELECT AVG(industry) FROM table_name_44 WHERE agriculture > 11 ### context: CREATE TABLE table_name_44 (industry INTEGER, agriculture INTEGER) |
### question: When the points scored was over 110.25%, what's the average amount lost? ### answer: SELECT AVG(lost) FROM table_name_69 WHERE _percentage_pts > 110.25 ### context: CREATE TABLE table_name_69 (lost INTEGER, _percentage_pts INTEGER) |
### question: If the points scored were 93.45%, what's the lowest amount of games lost? ### answer: SELECT MIN(lost) FROM table_name_27 WHERE _percentage_pts = 93.45 ### context: CREATE TABLE table_name_27 (lost INTEGER, _percentage_pts VARCHAR) |
### question: What is the rank of the film directed by Kevin Costner? ### answer: SELECT COUNT(rank) FROM table_name_14 WHERE director = "kevin costner" ### context: CREATE TABLE table_name_14 (rank VARCHAR, director VARCHAR) |
### question: What director grossed $200,512,643 ### answer: SELECT director FROM table_name_96 WHERE gross = "$200,512,643" ### context: CREATE TABLE table_name_96 (director VARCHAR, gross VARCHAR) |
### question: What is the average rank of the movie from Paramount Studios that grossed $200,512,643? ### answer: SELECT AVG(rank) FROM table_name_26 WHERE studio = "paramount" AND gross = "$200,512,643" ### context: CREATE TABLE table_name_26 (rank INTEGER, studio VARCHAR, gross VARCHAR) |
### question: Who directed Teenage Mutant Ninja Turtles? ### answer: SELECT director FROM table_name_81 WHERE title = "teenage mutant ninja turtles" ### context: CREATE TABLE table_name_81 (director VARCHAR, title VARCHAR) |
### question: What director ranked higher than 1 from Universal Studios and grossed $201,957,688? ### answer: SELECT director FROM table_name_17 WHERE rank > 1 AND studio = "universal" AND gross = "$201,957,688" ### context: CREATE TABLE table_name_17 (director VARCHAR, gross VARCHAR, rank VARCHAR, studio VARCHAR) |
### question: When the rider is Garry Mccoy and the manufacturer was Kawasaki, what was the time retired? ### answer: SELECT time_retired FROM table_name_94 WHERE manufacturer = "kawasaki" AND rider = "garry mccoy" ### context: CREATE TABLE table_name_94 (time_retired VARCHAR, manufacturer VARCHAR, rider VARCHAR) |
### question: What's the highest amount of laps Garry Mccoy drove? ### answer: SELECT MAX(laps) FROM table_name_73 WHERE rider = "garry mccoy" ### context: CREATE TABLE table_name_73 (laps INTEGER, rider VARCHAR) |
### question: If the manufacturer is Proton Kr and the grid was over 10, what was the time retired? ### answer: SELECT time_retired FROM table_name_79 WHERE grid > 10 AND manufacturer = "proton kr" ### context: CREATE TABLE table_name_79 (time_retired VARCHAR, grid VARCHAR, manufacturer VARCHAR) |
### question: The year 1974 has what listed as the Height? ### answer: SELECT height FROM table_name_38 WHERE year = 1974 ### context: CREATE TABLE table_name_38 (height VARCHAR, year VARCHAR) |
### question: The OMEGA transmitter Chabrier has what country listed? ### answer: SELECT country FROM table_name_59 WHERE structure = "omega transmitter chabrier" ### context: CREATE TABLE table_name_59 (country VARCHAR, structure VARCHAR) |
### question: Listed with a continent of Africa and before 2009 this structure is called what? ### answer: SELECT structure FROM table_name_83 WHERE year < 2009 AND continent = "africa" ### context: CREATE TABLE table_name_83 (structure VARCHAR, year VARCHAR, continent VARCHAR) |
### question: The year 1972 has what written in Height column? ### answer: SELECT height FROM table_name_40 WHERE year = 1972 ### context: CREATE TABLE table_name_40 (height VARCHAR, year VARCHAR) |
### question: What is the Continent that also has the United States listed as a country? ### answer: SELECT continent FROM table_name_30 WHERE country = "united states" ### context: CREATE TABLE table_name_30 (continent VARCHAR, country VARCHAR) |
### question: What is the highest number of ends won of 47 Ends Lost and a Shot % less than 73? ### answer: SELECT MAX(ends_won) FROM table_name_4 WHERE ends_lost = 47 AND shot__percentage < 73 ### context: CREATE TABLE table_name_4 (ends_won INTEGER, ends_lost VARCHAR, shot__percentage VARCHAR) |
### question: What Poll was on April 14 of 13? ### answer: SELECT poll FROM table_name_71 WHERE april_14 = "13" ### context: CREATE TABLE table_name_71 (poll VARCHAR, april_14 VARCHAR) |
### question: What is the rank for Mar 17 when the April 21 rank is 10? ### answer: SELECT mar_17 FROM table_name_96 WHERE april_21 = "10" ### context: CREATE TABLE table_name_96 (mar_17 VARCHAR, april_21 VARCHAR) |
### question: What is the Mar 24 rank when the May 26 is 13, and the May 12 is 6? ### answer: SELECT mar_24 FROM table_name_93 WHERE may_26 = "13" AND may_12 = "6" ### context: CREATE TABLE table_name_93 (mar_24 VARCHAR, may_26 VARCHAR, may_12 VARCHAR) |
### question: What is the April 28 rank when the Mar 24 is 17? ### answer: SELECT april_28 FROM table_name_92 WHERE mar_24 = "17" ### context: CREATE TABLE table_name_92 (april_28 VARCHAR, mar_24 VARCHAR) |
### question: What is the April 14 rank when the Mar 3rd is nr, and the April 21 is 13? ### answer: SELECT april_14 FROM table_name_78 WHERE mar_3 = "nr" AND april_21 = "13" ### context: CREATE TABLE table_name_78 (april_14 VARCHAR, mar_3 VARCHAR, april_21 VARCHAR) |
### question: What is the April 28th rank when the Final is 20, and Mar 17 is 22? ### answer: SELECT april_28 FROM table_name_91 WHERE final = "20" AND mar_17 = "22" ### context: CREATE TABLE table_name_91 (april_28 VARCHAR, final VARCHAR, mar_17 VARCHAR) |
### question: What is the total number of Podiums, when Position is "2nd", when Wins is less than 6, and when Poles is greater than 0? ### answer: SELECT COUNT(podiums) FROM table_name_31 WHERE position = "2nd" AND wins < 6 AND poles > 0 ### context: CREATE TABLE table_name_31 (podiums VARCHAR, poles VARCHAR, position ... |
### question: What is the sum of Poles, when Season is greater than 2004, and when Podiums is less than 1? ### answer: SELECT SUM(poles) FROM table_name_64 WHERE season < 2004 AND podiums < 1 ### context: CREATE TABLE table_name_64 (poles INTEGER, season VARCHAR, podiums VARCHAR) |
### question: What is the average Poles, when Wins is 0, when Position is "nc", and when Season is before 2004? ### answer: SELECT AVG(poles) FROM table_name_65 WHERE wins = 0 AND position = "nc" AND season < 2004 ### context: CREATE TABLE table_name_65 (poles INTEGER, season VARCHAR, wins VARCHAR, position VARCHAR) |
### question: What is the sum of Poles, when Season is before 2005, when Position is "2nd", and when Wins is less than 6? ### answer: SELECT SUM(poles) FROM table_name_1 WHERE season < 2005 AND position = "2nd" AND wins < 6 ### context: CREATE TABLE table_name_1 (poles INTEGER, wins VARCHAR, season VARCHAR, position VA... |
### question: What is the 2012 club of the cf pos. player? ### answer: SELECT 2012 AS _club FROM table_name_85 WHERE pos = "cf" ### context: CREATE TABLE table_name_85 (pos VARCHAR) |
### question: What are the years in the ACC of an institution that was founded before 1885 and is located in College Park, Maryland? ### answer: SELECT years_in_the_acc FROM table_name_24 WHERE founded < 1885 AND location = "college park, maryland" ### context: CREATE TABLE table_name_24 (years_in_the_acc VARCHAR, foun... |
### question: Who was the partner for the tournament in Lyon, France? ### answer: SELECT partnering FROM table_name_29 WHERE tournament = "lyon, france" ### context: CREATE TABLE table_name_29 (partnering VARCHAR, tournament VARCHAR) |
### question: Who were the opponents for the event in Milan, Italy? ### answer: SELECT opponent FROM table_name_78 WHERE tournament = "milan, italy" ### context: CREATE TABLE table_name_78 (opponent VARCHAR, tournament VARCHAR) |
### question: What was the record on the date of december 1, 1968? ### answer: SELECT record FROM table_name_55 WHERE date = "december 1, 1968" ### context: CREATE TABLE table_name_55 (record VARCHAR, date VARCHAR) |
### question: What was the record on the date of september 15, 1968? ### answer: SELECT record FROM table_name_89 WHERE date = "september 15, 1968" ### context: CREATE TABLE table_name_89 (record VARCHAR, date VARCHAR) |
### question: What was the record on the date of november 10, 1968? ### answer: SELECT record FROM table_name_27 WHERE date = "november 10, 1968" ### context: CREATE TABLE table_name_27 (record VARCHAR, date VARCHAR) |
### question: What was the first game played on February 28? ### answer: SELECT MIN(game) FROM table_name_95 WHERE date = "february 28" ### context: CREATE TABLE table_name_95 (game INTEGER, date VARCHAR) |
### question: What is the sum of Altrincham's Points 2 when they had more than 52 Goals For? ### answer: SELECT SUM(points_2) FROM table_name_98 WHERE goals_for > 52 AND team = "altrincham" ### context: CREATE TABLE table_name_98 (points_2 INTEGER, goals_for VARCHAR, team VARCHAR) |
### question: What date was the team @ Detroit? ### answer: SELECT date FROM table_name_28 WHERE team = "@ detroit" ### context: CREATE TABLE table_name_28 (date VARCHAR, team VARCHAR) |
### question: What was the score of the game when Maurice Williams (7) had the high assists? ### answer: SELECT score FROM table_name_8 WHERE high_assists = "maurice williams (7)" ### context: CREATE TABLE table_name_8 (score VARCHAR, high_assists VARCHAR) |
### question: What was the record of the game when Lebron James (4) had the high assists? ### answer: SELECT record FROM table_name_43 WHERE high_assists = "lebron james (4)" ### context: CREATE TABLE table_name_43 (record VARCHAR, high_assists VARCHAR) |
### question: What is the total of the game that the team was @ new york? ### answer: SELECT COUNT(game) FROM table_name_58 WHERE team = "@ new york" ### context: CREATE TABLE table_name_58 (game VARCHAR, team VARCHAR) |
### question: Which round was Joe Taylor selected in? ### answer: SELECT SUM(round) FROM table_name_40 WHERE player = "joe taylor" ### context: CREATE TABLE table_name_40 (round INTEGER, player VARCHAR) |
### question: Which player went to Wake Forest and was selected with a pick after 145? ### answer: SELECT player FROM table_name_6 WHERE pick > 145 AND college = "wake forest" ### context: CREATE TABLE table_name_6 (player VARCHAR, pick VARCHAR, college VARCHAR) |
### question: How many picks were from round 6? ### answer: SELECT COUNT(pick) FROM table_name_84 WHERE round = 6 ### context: CREATE TABLE table_name_84 (pick VARCHAR, round VARCHAR) |
### question: What is the largest round of a pick smaller than 92 from Toledo University? ### answer: SELECT MAX(round) FROM table_name_34 WHERE college = "toledo" AND pick < 92 ### context: CREATE TABLE table_name_34 (round INTEGER, college VARCHAR, pick VARCHAR) |
### question: Which nationality is Dick Walker? ### answer: SELECT nationality FROM table_name_35 WHERE player = "dick walker" ### context: CREATE TABLE table_name_35 (nationality VARCHAR, player VARCHAR) |
### question: What college has a pick greater than 4 and an overall of 21? ### answer: SELECT college FROM table_name_9 WHERE pick > 4 AND overall = 21 ### context: CREATE TABLE table_name_9 (college VARCHAR, pick VARCHAR, overall VARCHAR) |
### question: What is the overall sum of round 3? ### answer: SELECT SUM(overall) FROM table_name_55 WHERE round = 3 ### context: CREATE TABLE table_name_55 (overall INTEGER, round VARCHAR) |
### question: What is the position of the player with a round less than 8 and an overall of 48? ### answer: SELECT position FROM table_name_81 WHERE round < 8 AND overall = 48 ### context: CREATE TABLE table_name_81 (position VARCHAR, round VARCHAR, overall VARCHAR) |
### question: What is the position of the player from the college of North Carolina with an overall less than 100? ### answer: SELECT position FROM table_name_47 WHERE overall < 100 AND college = "north carolina" ### context: CREATE TABLE table_name_47 (position VARCHAR, overall VARCHAR, college VARCHAR) |
### question: What is the sum of the pick in round 17? ### answer: SELECT SUM(pick) FROM table_name_10 WHERE round = 17 ### context: CREATE TABLE table_name_10 (pick INTEGER, round VARCHAR) |
### question: What was the 1st leg when team 2 was nov milenium? ### answer: SELECT 1 AS st_leg FROM table_name_7 WHERE team_2 = "nov milenium" ### context: CREATE TABLE table_name_7 (team_2 VARCHAR) |
### question: What was the 1st leg for a team 1 of Teteks? ### answer: SELECT 1 AS st_leg FROM table_name_25 WHERE team_1 = "teteks" ### context: CREATE TABLE table_name_25 (team_1 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.