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