question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3?
CREATE TABLE table_name_6 (Id VARCHAR)
SELECT AVG(1940) FROM table_name_6 WHERE 1929 = 101.4 AND 1933 > 68.3
### Context: CREATE TABLE table_name_6 (Id VARCHAR) ### Question: What is the average 1940 value where 1929 values are 101.4 and 1933 values are over 68.3? ### Answer: SELECT AVG(1940) FROM table_name_6 WHERE 1929 = 101.4 AND 1933 > 68.3
What is the highest 1937 value that has a 1940 value over 126?
CREATE TABLE table_name_60 (Id VARCHAR)
SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126
### Context: CREATE TABLE table_name_60 (Id VARCHAR) ### Question: What is the highest 1937 value that has a 1940 value over 126? ### Answer: SELECT MAX(1937) FROM table_name_60 WHERE 1940 > 126
At what time is the ბრაზილიის უბანი shown?
CREATE TABLE table_name_43 (timeslot VARCHAR, translation VARCHAR)
SELECT timeslot FROM table_name_43 WHERE translation = "ბრაზილიის უბანი"
### Context: CREATE TABLE table_name_43 (timeslot VARCHAR, translation VARCHAR) ### Question: At what time is the ბრაზილიის უბანი shown? ### Answer: SELECT timeslot FROM table_name_43 WHERE translation = "ბრაზილიის უბანი"
What country was the series finale present and was shown Monday to Sunday at 18:45-21:00?
CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, series_finale VARCHAR, weekly_schedule VARCHAR)
SELECT country FROM table_name_70 WHERE series_finale = "present" AND weekly_schedule = "monday to sunday" AND timeslot = "18:45-21:00"
### Context: CREATE TABLE table_name_70 (country VARCHAR, timeslot VARCHAR, series_finale VARCHAR, weekly_schedule VARCHAR) ### Question: What country was the series finale present and was shown Monday to Sunday at 18:45-21:00? ### Answer: SELECT country FROM table_name_70 WHERE series_finale = "present" AND weekly_schedule = "monday to sunday" AND timeslot = "18:45-21:00"
What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო?
CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR)
SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო"
### Context: CREATE TABLE table_name_56 (series_finale VARCHAR, translation VARCHAR) ### Question: What series finale has the translation ოჰ ეს ცრემლები / პარალელური საიდუმლო? ### Answer: SELECT series_finale FROM table_name_56 WHERE translation = "ოჰ ეს ცრემლები / პარალელური საიდუმლო"
What days of the week is the show aired on that runs at 16:45?
CREATE TABLE table_name_21 (weekly_schedule VARCHAR, timeslot VARCHAR)
SELECT weekly_schedule FROM table_name_21 WHERE timeslot = "16:45"
### Context: CREATE TABLE table_name_21 (weekly_schedule VARCHAR, timeslot VARCHAR) ### Question: What days of the week is the show aired on that runs at 16:45? ### Answer: SELECT weekly_schedule FROM table_name_21 WHERE timeslot = "16:45"
Which days of the week does the telenovela play that is aired at 11:00?
CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR)
SELECT weekly_schedule FROM table_name_75 WHERE timeslot = "11:00"
### Context: CREATE TABLE table_name_75 (weekly_schedule VARCHAR, timeslot VARCHAR) ### Question: Which days of the week does the telenovela play that is aired at 11:00? ### Answer: SELECT weekly_schedule FROM table_name_75 WHERE timeslot = "11:00"
Which Tournament was on 2 October 2006?
CREATE TABLE table_name_98 (tournament VARCHAR, date VARCHAR)
SELECT tournament FROM table_name_98 WHERE date = "2 october 2006"
### Context: CREATE TABLE table_name_98 (tournament VARCHAR, date VARCHAR) ### Question: Which Tournament was on 2 October 2006? ### Answer: SELECT tournament FROM table_name_98 WHERE date = "2 october 2006"
Who is the Opponent in the final on 4 April 2011?
CREATE TABLE table_name_16 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_16 WHERE date = "4 april 2011"
### Context: CREATE TABLE table_name_16 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who is the Opponent in the final on 4 April 2011? ### Answer: SELECT opponent_in_the_final FROM table_name_16 WHERE date = "4 april 2011"
What Surface was used on 2 June 2003?
CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR)
SELECT surface FROM table_name_94 WHERE date = "2 june 2003"
### Context: CREATE TABLE table_name_94 (surface VARCHAR, date VARCHAR) ### Question: What Surface was used on 2 June 2003? ### Answer: SELECT surface FROM table_name_94 WHERE date = "2 june 2003"
Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category?
CREATE TABLE table_name_54 (award VARCHAR, category VARCHAR)
SELECT award FROM table_name_54 WHERE category = "teen pick show: comedy"
### Context: CREATE TABLE table_name_54 (award VARCHAR, category VARCHAR) ### Question: Which award show nominated The Suite Life on Deck for the Teen Pick Show: Comedy category? ### Answer: SELECT award FROM table_name_54 WHERE category = "teen pick show: comedy"
Which award show nominated Cole Sprouse for the Favorite TV Actor category?
CREATE TABLE table_name_49 (award VARCHAR, category VARCHAR, recipient VARCHAR)
SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse"
### Context: CREATE TABLE table_name_49 (award VARCHAR, category VARCHAR, recipient VARCHAR) ### Question: Which award show nominated Cole Sprouse for the Favorite TV Actor category? ### Answer: SELECT award FROM table_name_49 WHERE category = "favorite tv actor" AND recipient = "cole sprouse"
What category was The Suite Life on Deck nominated for later than 2010?
CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR)
SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010
### Context: CREATE TABLE table_name_62 (category VARCHAR, recipient VARCHAR, year VARCHAR) ### Question: What category was The Suite Life on Deck nominated for later than 2010? ### Answer: SELECT category FROM table_name_62 WHERE recipient = "the suite life on deck" AND year > 2010
Who won the 2010 Kids' Choice Awards?
CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR)
SELECT recipient FROM table_name_30 WHERE award = "2010 kids' choice awards" AND result = "won"
### Context: CREATE TABLE table_name_30 (recipient VARCHAR, award VARCHAR, result VARCHAR) ### Question: Who won the 2010 Kids' Choice Awards? ### Answer: SELECT recipient FROM table_name_30 WHERE award = "2010 kids' choice awards" AND result = "won"
What was the Rd. Time for October 3, 2009?
CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR)
SELECT rd, _time FROM table_name_86 WHERE date = "october 3, 2009"
### Context: CREATE TABLE table_name_86 (rd VARCHAR, _time VARCHAR, date VARCHAR) ### Question: What was the Rd. Time for October 3, 2009? ### Answer: SELECT rd, _time FROM table_name_86 WHERE date = "october 3, 2009"
What is the greatest lost where played is less than 9?
CREATE TABLE table_name_51 (lost INTEGER, played INTEGER)
SELECT MAX(lost) FROM table_name_51 WHERE played < 9
### Context: CREATE TABLE table_name_51 (lost INTEGER, played INTEGER) ### Question: What is the greatest lost where played is less than 9? ### Answer: SELECT MAX(lost) FROM table_name_51 WHERE played < 9
What is the greatest played with a drawn less than 1 and a position of less than 1?
CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR)
SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1
### Context: CREATE TABLE table_name_99 (played INTEGER, drawn VARCHAR, position VARCHAR) ### Question: What is the greatest played with a drawn less than 1 and a position of less than 1? ### Answer: SELECT MAX(played) FROM table_name_99 WHERE drawn < 1 AND position < 1
What is the smallest drawn when the points are less than 7 and the against greater than 31?
CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR)
SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31
### Context: CREATE TABLE table_name_79 (drawn INTEGER, points VARCHAR, against VARCHAR) ### Question: What is the smallest drawn when the points are less than 7 and the against greater than 31? ### Answer: SELECT MIN(drawn) FROM table_name_79 WHERE points < 7 AND against > 31
What is the name of the team that has 13 points?
CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR)
SELECT team FROM table_name_47 WHERE points = 13
### Context: CREATE TABLE table_name_47 (team VARCHAR, points VARCHAR) ### Question: What is the name of the team that has 13 points? ### Answer: SELECT team FROM table_name_47 WHERE points = 13
What was the Nominated Work earlier than 2003?
CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER)
SELECT nominated_work FROM table_name_85 WHERE year < 2003
### Context: CREATE TABLE table_name_85 (nominated_work VARCHAR, year INTEGER) ### Question: What was the Nominated Work earlier than 2003? ### Answer: SELECT nominated_work FROM table_name_85 WHERE year < 2003
What was the Nominated Work earlier than 2003?
CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER)
SELECT nominated_work FROM table_name_62 WHERE year < 2003
### Context: CREATE TABLE table_name_62 (nominated_work VARCHAR, year INTEGER) ### Question: What was the Nominated Work earlier than 2003? ### Answer: SELECT nominated_work FROM table_name_62 WHERE year < 2003
What was the Nominated Work earlier than 2003?
CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER)
SELECT nominated_work FROM table_name_95 WHERE year < 2003
### Context: CREATE TABLE table_name_95 (nominated_work VARCHAR, year INTEGER) ### Question: What was the Nominated Work earlier than 2003? ### Answer: SELECT nominated_work FROM table_name_95 WHERE year < 2003
Which method's event was flawless fighting championship 1: the beginning?
CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR)
SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning"
### Context: CREATE TABLE table_name_42 (method VARCHAR, event VARCHAR) ### Question: Which method's event was flawless fighting championship 1: the beginning? ### Answer: SELECT method FROM table_name_42 WHERE event = "flawless fighting championship 1: the beginning"
Which method's opponent was chris clark?
CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR)
SELECT method FROM table_name_11 WHERE opponent = "chris clark"
### Context: CREATE TABLE table_name_11 (method VARCHAR, opponent VARCHAR) ### Question: Which method's opponent was chris clark? ### Answer: SELECT method FROM table_name_11 WHERE opponent = "chris clark"
Which record's round was 3 when the event was fight festival 27?
CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR)
SELECT record FROM table_name_19 WHERE round = 3 AND event = "fight festival 27"
### Context: CREATE TABLE table_name_19 (record VARCHAR, round VARCHAR, event VARCHAR) ### Question: Which record's round was 3 when the event was fight festival 27? ### Answer: SELECT record FROM table_name_19 WHERE round = 3 AND event = "fight festival 27"
What is the Fourth place with a Year that is 1978?
CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR)
SELECT fourth_place FROM table_name_58 WHERE year = 1978
### Context: CREATE TABLE table_name_58 (fourth_place VARCHAR, year VARCHAR) ### Question: What is the Fourth place with a Year that is 1978? ### Answer: SELECT fourth_place FROM table_name_58 WHERE year = 1978
What is the Fourth place with a Year that is 1966?
CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR)
SELECT fourth_place FROM table_name_11 WHERE year = 1966
### Context: CREATE TABLE table_name_11 (fourth_place VARCHAR, year VARCHAR) ### Question: What is the Fourth place with a Year that is 1966? ### Answer: SELECT fourth_place FROM table_name_11 WHERE year = 1966
What is the Champion with a Year that is 2008?
CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR)
SELECT champion FROM table_name_65 WHERE year = 2008
### Context: CREATE TABLE table_name_65 (champion VARCHAR, year VARCHAR) ### Question: What is the Champion with a Year that is 2008? ### Answer: SELECT champion FROM table_name_65 WHERE year = 2008
Who was the opponent for the game played on September 19, 1994?
CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_15 WHERE date = "september 19, 1994"
### Context: CREATE TABLE table_name_15 (opponent VARCHAR, date VARCHAR) ### Question: Who was the opponent for the game played on September 19, 1994? ### Answer: SELECT opponent FROM table_name_15 WHERE date = "september 19, 1994"
In which week was attendance at 50,814?
CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR)
SELECT COUNT(week) FROM table_name_10 WHERE attendance = "50,814"
### Context: CREATE TABLE table_name_10 (week VARCHAR, attendance VARCHAR) ### Question: In which week was attendance at 50,814? ### Answer: SELECT COUNT(week) FROM table_name_10 WHERE attendance = "50,814"
What date after Week 6 was a Bye?
CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye"
### Context: CREATE TABLE table_name_34 (date VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: What date after Week 6 was a Bye? ### Answer: SELECT date FROM table_name_34 WHERE week > 6 AND attendance = "bye"
What subjunctive also has an inverse subjunctive of måchadns?
CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR)
SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = "måchadns"
### Context: CREATE TABLE table_name_85 (subjunctive VARCHAR, inverse_subjunctive VARCHAR) ### Question: What subjunctive also has an inverse subjunctive of måchadns? ### Answer: SELECT subjunctive FROM table_name_85 WHERE inverse_subjunctive = "måchadns"
What imperative has måcha as 3.sg?
CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR)
SELECT imperative FROM table_name_94 WHERE måcha = "3.sg"
### Context: CREATE TABLE table_name_94 (imperative VARCHAR, måcha VARCHAR) ### Question: What imperative has måcha as 3.sg? ### Answer: SELECT imperative FROM table_name_94 WHERE måcha = "3.sg"
The indicative of si måchan has what as the inverse subjunctive?
CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR)
SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = "si måchan"
### Context: CREATE TABLE table_name_8 (inverse_subjunctive VARCHAR, indicative VARCHAR) ### Question: The indicative of si måchan has what as the inverse subjunctive? ### Answer: SELECT inverse_subjunctive FROM table_name_8 WHERE indicative = "si måchan"
What inverse subjunctive has — as the imperative and a subjunctive of se måchadn?
CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR)
SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = "—" AND subjunctive = "se måchadn"
### Context: CREATE TABLE table_name_9 (inverse_subjunctive VARCHAR, imperative VARCHAR, subjunctive VARCHAR) ### Question: What inverse subjunctive has — as the imperative and a subjunctive of se måchadn? ### Answer: SELECT inverse_subjunctive FROM table_name_9 WHERE imperative = "—" AND subjunctive = "se måchadn"
With a subjunctive of du måchast what is the imperative?
CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR)
SELECT imperative FROM table_name_37 WHERE subjunctive = "du måchast"
### Context: CREATE TABLE table_name_37 (imperative VARCHAR, subjunctive VARCHAR) ### Question: With a subjunctive of du måchast what is the imperative? ### Answer: SELECT imperative FROM table_name_37 WHERE subjunctive = "du måchast"
What subjunctive has the indicative of se måchan(t)?
CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR)
SELECT subjunctive FROM table_name_77 WHERE indicative = "se måchan(t)"
### Context: CREATE TABLE table_name_77 (subjunctive VARCHAR, indicative VARCHAR) ### Question: What subjunctive has the indicative of se måchan(t)? ### Answer: SELECT subjunctive FROM table_name_77 WHERE indicative = "se måchan(t)"
What is the Win % in the Span of 2011–2013 with a Lost of less than 1?
CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR)
SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 1
### Context: CREATE TABLE table_name_91 (win__percentage INTEGER, span VARCHAR, lost VARCHAR) ### Question: What is the Win % in the Span of 2011–2013 with a Lost of less than 1? ### Answer: SELECT AVG(win__percentage) FROM table_name_91 WHERE span = "2011–2013" AND lost < 1
How many games were Tied during the Span of 2011–2013 with a less than 80% Win %?
CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR)
SELECT COUNT(tied) FROM table_name_57 WHERE span = "2011–2013" AND win__percentage < 80
### Context: CREATE TABLE table_name_57 (tied VARCHAR, span VARCHAR, win__percentage VARCHAR) ### Question: How many games were Tied during the Span of 2011–2013 with a less than 80% Win %? ### Answer: SELECT COUNT(tied) FROM table_name_57 WHERE span = "2011–2013" AND win__percentage < 80
On what date were sheets issued in Tallahassee, Florida?
CREATE TABLE table_name_40 (date_of_issue VARCHAR, place_of_issue VARCHAR)
SELECT date_of_issue FROM table_name_40 WHERE place_of_issue = "tallahassee, florida"
### Context: CREATE TABLE table_name_40 (date_of_issue VARCHAR, place_of_issue VARCHAR) ### Question: On what date were sheets issued in Tallahassee, Florida? ### Answer: SELECT date_of_issue FROM table_name_40 WHERE place_of_issue = "tallahassee, florida"
Which printer issued sheets on October 5, 2006?
CREATE TABLE table_name_79 (printer VARCHAR, date_of_issue VARCHAR)
SELECT printer FROM table_name_79 WHERE date_of_issue = "october 5, 2006"
### Context: CREATE TABLE table_name_79 (printer VARCHAR, date_of_issue VARCHAR) ### Question: Which printer issued sheets on October 5, 2006? ### Answer: SELECT printer FROM table_name_79 WHERE date_of_issue = "october 5, 2006"
What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won?
CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR)
SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = "total" AND "total" > 18
### Context: CREATE TABLE table_name_8 (silver INTEGER, bronze VARCHAR, nation VARCHAR) ### Question: What is the least amount of silver medals won by Total with more than 1 bronze and more than 18 total medals won? ### Answer: SELECT MIN(silver) FROM table_name_8 WHERE bronze > 1 AND nation = "total" AND "total" > 18
How many positions have points against less than 28, americano-sp as the team, with a played greater than 8?
CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, team VARCHAR)
SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = "americano-sp" AND played > 8
### Context: CREATE TABLE table_name_7 (position VARCHAR, played VARCHAR, against VARCHAR, team VARCHAR) ### Question: How many positions have points against less than 28, americano-sp as the team, with a played greater than 8? ### Answer: SELECT COUNT(position) FROM table_name_7 WHERE against < 28 AND team = "americano-sp" AND played > 8
How many losses have points against less than 15?
CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER)
SELECT COUNT(lost) FROM table_name_1 WHERE against < 15
### Context: CREATE TABLE table_name_1 (lost VARCHAR, against INTEGER) ### Question: How many losses have points against less than 15? ### Answer: SELECT COUNT(lost) FROM table_name_1 WHERE against < 15
What average played has an against less than 15?
CREATE TABLE table_name_40 (played INTEGER, against INTEGER)
SELECT AVG(played) FROM table_name_40 WHERE against < 15
### Context: CREATE TABLE table_name_40 (played INTEGER, against INTEGER) ### Question: What average played has an against less than 15? ### Answer: SELECT AVG(played) FROM table_name_40 WHERE against < 15
How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5?
CREATE TABLE table_name_60 (lost VARCHAR, position VARCHAR, played VARCHAR, team VARCHAR)
SELECT COUNT(lost) FROM table_name_60 WHERE played > 8 AND team = "ypiranga-sp" AND position > 5
### Context: CREATE TABLE table_name_60 (lost VARCHAR, position VARCHAR, played VARCHAR, team VARCHAR) ### Question: How many losses have a played greater than 8, ypiranga-sp as the team, with a position greater than 5? ### Answer: SELECT COUNT(lost) FROM table_name_60 WHERE played > 8 AND team = "ypiranga-sp" AND position > 5
What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15?
CREATE TABLE table_name_24 (lost VARCHAR, against VARCHAR, position VARCHAR, drawn VARCHAR)
SELECT lost FROM table_name_24 WHERE position > 2 AND drawn > 0 AND against > 15
### Context: CREATE TABLE table_name_24 (lost VARCHAR, against VARCHAR, position VARCHAR, drawn VARCHAR) ### Question: What lost has a position greater than 2, a drawn greater than 0, with an against greater than 15? ### Answer: SELECT lost FROM table_name_24 WHERE position > 2 AND drawn > 0 AND against > 15
What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3?
CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR)
SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = "sergipe" AND brown___percentage_ > 61 OFFSET 3
### Context: CREATE TABLE table_name_44 (asian_or_amerindian___percentage_ INTEGER, state VARCHAR, brown___percentage_ VARCHAR) ### Question: What is the sum of Asian or Amerindian (%), when State is Sergipe, and when Brown (%) is greater than 61,3? ### Answer: SELECT SUM(asian_or_amerindian___percentage_) FROM table_name_44 WHERE state = "sergipe" AND brown___percentage_ > 61 OFFSET 3
How many points were there when there more than 6 losses and less than 14 matches?
CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR)
SELECT COUNT(points) FROM table_name_16 WHERE lost > 6 AND match < 14
### Context: CREATE TABLE table_name_16 (points VARCHAR, lost VARCHAR, match VARCHAR) ### Question: How many points were there when there more than 6 losses and less than 14 matches? ### Answer: SELECT COUNT(points) FROM table_name_16 WHERE lost > 6 AND match < 14
How few losses were the least number of losses and points higher than 23?
CREATE TABLE table_name_67 (lost INTEGER, points INTEGER)
SELECT MIN(lost) FROM table_name_67 WHERE points > 23
### Context: CREATE TABLE table_name_67 (lost INTEGER, points INTEGER) ### Question: How few losses were the least number of losses and points higher than 23? ### Answer: SELECT MIN(lost) FROM table_name_67 WHERE points > 23
What is the highest number of matches with more than 18 points and more than 1 draw?
CREATE TABLE table_name_37 (match INTEGER, points VARCHAR, draw VARCHAR)
SELECT MAX(match) FROM table_name_37 WHERE points > 18 AND draw > 1
### Context: CREATE TABLE table_name_37 (match INTEGER, points VARCHAR, draw VARCHAR) ### Question: What is the highest number of matches with more than 18 points and more than 1 draw? ### Answer: SELECT MAX(match) FROM table_name_37 WHERE points > 18 AND draw > 1
Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up?
CREATE TABLE table_name_87 (champion VARCHAR, runner_up VARCHAR, venue VARCHAR)
SELECT champion FROM table_name_87 WHERE runner_up = "dick chapman" AND venue = "st. andrews links"
### Context: CREATE TABLE table_name_87 (champion VARCHAR, runner_up VARCHAR, venue VARCHAR) ### Question: Who was the champion in the game played at the St. Andrews Links with Dick Chapman as the runner-up? ### Answer: SELECT champion FROM table_name_87 WHERE runner_up = "dick chapman" AND venue = "st. andrews links"
What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club?
CREATE TABLE table_name_21 (score VARCHAR, venue VARCHAR, champion VARCHAR)
SELECT score FROM table_name_21 WHERE venue = "royal liverpool golf club" AND champion = "willie hunter"
### Context: CREATE TABLE table_name_21 (score VARCHAR, venue VARCHAR, champion VARCHAR) ### Question: What is the score of the match won by Willie Hunter at the Royal Liverpool Golf Club? ### Answer: SELECT score FROM table_name_21 WHERE venue = "royal liverpool golf club" AND champion = "willie hunter"
What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club?
CREATE TABLE table_name_83 (runner_up VARCHAR, country VARCHAR, venue VARCHAR)
SELECT runner_up FROM table_name_83 WHERE country = "england" AND venue = "royal porthcawl golf club"
### Context: CREATE TABLE table_name_83 (runner_up VARCHAR, country VARCHAR, venue VARCHAR) ### Question: What player from England was the runner-up at the match played at the Royal Porthcawl Golf Club? ### Answer: SELECT runner_up FROM table_name_83 WHERE country = "england" AND venue = "royal porthcawl golf club"
Who was the champion in the match where C.A. Palmer was the runner-up?
CREATE TABLE table_name_80 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_name_80 WHERE runner_up = "c.a. palmer"
### Context: CREATE TABLE table_name_80 (champion VARCHAR, runner_up VARCHAR) ### Question: Who was the champion in the match where C.A. Palmer was the runner-up? ### Answer: SELECT champion FROM table_name_80 WHERE runner_up = "c.a. palmer"
What player was the champion in the match where E.A. Lassen was the runner-up?
CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR)
SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen"
### Context: CREATE TABLE table_name_60 (champion VARCHAR, runner_up VARCHAR) ### Question: What player was the champion in the match where E.A. Lassen was the runner-up? ### Answer: SELECT champion FROM table_name_60 WHERE runner_up = "e.a. lassen"
What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up?
CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR)
SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar"
### Context: CREATE TABLE table_name_34 (score VARCHAR, runner_up VARCHAR, country VARCHAR, champion VARCHAR) ### Question: What is the score of the match played in England where Peter McEvoy was the champion and Paul McKellar was runner-up? ### Answer: SELECT score FROM table_name_34 WHERE country = "england" AND champion = "peter mcevoy" AND runner_up = "paul mckellar"
Which federal state has 6 representatives of national average?
CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR)
SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6"
### Context: CREATE TABLE table_name_3 (federal_state VARCHAR, representatives_of_national_average VARCHAR) ### Question: Which federal state has 6 representatives of national average? ### Answer: SELECT federal_state FROM table_name_3 WHERE representatives_of_national_average = "6"
According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits?
CREATE TABLE table_name_47 (population__on_the_census_also_called_censo_2010_ VARCHAR, deputies_required_ignoring_the_limits INTEGER)
SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6
### Context: CREATE TABLE table_name_47 (population__on_the_census_also_called_censo_2010_ VARCHAR, deputies_required_ignoring_the_limits INTEGER) ### Question: According to the 2010 census, what was the population for the federal state that had less than -6 deputies required ignoring the limits? ### Answer: SELECT population__on_the_census_also_called_censo_2010_ FROM table_name_47 WHERE deputies_required_ignoring_the_limits < -6
What is the lowest number of blocks for players with height of 206 and more than 356 spikes?
CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR)
SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356
### Context: CREATE TABLE table_name_69 (block INTEGER, height VARCHAR, spike VARCHAR) ### Question: What is the lowest number of blocks for players with height of 206 and more than 356 spikes? ### Answer: SELECT MIN(block) FROM table_name_69 WHERE height = 206 AND spike > 356
What is the number of weight values associated with 340 blocks and more than 353 spikes?
CREATE TABLE table_name_7 (weight VARCHAR, block VARCHAR, spike VARCHAR)
SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353
### Context: CREATE TABLE table_name_7 (weight VARCHAR, block VARCHAR, spike VARCHAR) ### Question: What is the number of weight values associated with 340 blocks and more than 353 spikes? ### Answer: SELECT COUNT(weight) FROM table_name_7 WHERE block = 340 AND spike > 353
What award did Forest Whitaker win in 1989?
CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR)
SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989
### Context: CREATE TABLE table_name_54 (award VARCHAR, actor VARCHAR, year VARCHAR) ### Question: What award did Forest Whitaker win in 1989? ### Answer: SELECT award FROM table_name_54 WHERE actor = "forest whitaker" AND year = 1989
For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997?
CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, award VARCHAR, actor VARCHAR)
SELECT motion_picture FROM table_name_42 WHERE award = "best supporting actor" AND actor = "samuel l. jackson" AND year < 1997
### Context: CREATE TABLE table_name_42 (motion_picture VARCHAR, year VARCHAR, award VARCHAR, actor VARCHAR) ### Question: For what motion picture did Samuel L. Jackson win the best supporting actor award before 1997? ### Answer: SELECT motion_picture FROM table_name_42 WHERE award = "best supporting actor" AND actor = "samuel l. jackson" AND year < 1997
Which actor won in 1966?
CREATE TABLE table_name_43 (actor VARCHAR, year VARCHAR)
SELECT actor FROM table_name_43 WHERE year = 1966
### Context: CREATE TABLE table_name_43 (actor VARCHAR, year VARCHAR) ### Question: Which actor won in 1966? ### Answer: SELECT actor FROM table_name_43 WHERE year = 1966
What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP?
CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR)
SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059
### Context: CREATE TABLE table_name_58 (influence INTEGER, inhabitants_per_mep VARCHAR, population_millions VARCHAR, meps VARCHAR) ### Question: What is the lowest influence with population in the millions less than 60.64, and MEPs less than 22, and 454,059 inhabitant per MEP? ### Answer: SELECT MIN(influence) FROM table_name_58 WHERE population_millions < 60.64 AND meps < 22 AND inhabitants_per_mep = 454 OFFSET 059
What is the highest population in the millions that has an influence of 1.02?
CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR)
SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02
### Context: CREATE TABLE table_name_55 (population_millions INTEGER, influence VARCHAR) ### Question: What is the highest population in the millions that has an influence of 1.02? ### Answer: SELECT MAX(population_millions) FROM table_name_55 WHERE influence = 1.02
What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP?
CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR)
SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitants_per_mep > 286 OFFSET 875
### Context: CREATE TABLE table_name_49 (population_millions INTEGER, inhabitants_per_mep VARCHAR, member_state VARCHAR, influence VARCHAR, meps VARCHAR) ### Question: What is the sum of the population in millions that has an influence less than 2.91, a MEP smaller than 13, a member of Latvia, and more than 286,875 inhabitants per MEP? ### Answer: SELECT SUM(population_millions) FROM table_name_49 WHERE influence < 2.91 AND meps < 13 AND member_state = "latvia" AND inhabitants_per_mep > 286 OFFSET 875
What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million?
CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR)
SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43
### Context: CREATE TABLE table_name_26 (inhabitants_per_mep INTEGER, population_millions VARCHAR, meps VARCHAR, member_state VARCHAR) ### Question: What is the highest number of inhabitants per MEP that has MEPs larger than 50, a member of Germany, and a population less than 82.43 million? ### Answer: SELECT MAX(inhabitants_per_mep) FROM table_name_26 WHERE meps > 50 AND member_state = "germany" AND population_millions < 82.43
Which World Rank has a Year smaller than 1977, and a Location of eugene?
CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR, location VARCHAR)
SELECT world_rank FROM table_name_81 WHERE year < 1977 AND location = "eugene"
### Context: CREATE TABLE table_name_81 (world_rank VARCHAR, year VARCHAR, location VARCHAR) ### Question: Which World Rank has a Year smaller than 1977, and a Location of eugene? ### Answer: SELECT world_rank FROM table_name_81 WHERE year < 1977 AND location = "eugene"
What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31?
CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR)
SELECT MIN(year) FROM table_name_65 WHERE world_rank = "5th" AND result > 20.31
### Context: CREATE TABLE table_name_65 (year INTEGER, world_rank VARCHAR, result VARCHAR) ### Question: What's the lowest Year with a World Rank of 5th, with a Result greater than 20.31? ### Answer: SELECT MIN(year) FROM table_name_65 WHERE world_rank = "5th" AND result > 20.31
Which Year has a Result smaller than 20.26, and a Location of eugene?
CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR)
SELECT SUM(year) FROM table_name_80 WHERE result < 20.26 AND location = "eugene"
### Context: CREATE TABLE table_name_80 (year INTEGER, result VARCHAR, location VARCHAR) ### Question: Which Year has a Result smaller than 20.26, and a Location of eugene? ### Answer: SELECT SUM(year) FROM table_name_80 WHERE result < 20.26 AND location = "eugene"
What is the Result with a Location of brussels?
CREATE TABLE table_name_96 (result VARCHAR, location VARCHAR)
SELECT COUNT(result) FROM table_name_96 WHERE location = "brussels"
### Context: CREATE TABLE table_name_96 (result VARCHAR, location VARCHAR) ### Question: What is the Result with a Location of brussels? ### Answer: SELECT COUNT(result) FROM table_name_96 WHERE location = "brussels"
What Year has a Result smaller than 20.31, and a World Rank of 5th?
CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR)
SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = "5th"
### Context: CREATE TABLE table_name_64 (year INTEGER, result VARCHAR, world_rank VARCHAR) ### Question: What Year has a Result smaller than 20.31, and a World Rank of 5th? ### Answer: SELECT AVG(year) FROM table_name_64 WHERE result < 20.31 AND world_rank = "5th"
What is the record when the Nuggets are the home team?
CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR)
SELECT record FROM table_name_33 WHERE home = "nuggets"
### Context: CREATE TABLE table_name_33 (record VARCHAR, home VARCHAR) ### Question: What is the record when the Nuggets are the home team? ### Answer: SELECT record FROM table_name_33 WHERE home = "nuggets"
What is the lowest number of points for Drivers that have raced in more than 16 Races?
CREATE TABLE table_name_35 (points INTEGER, races INTEGER)
SELECT MIN(points) FROM table_name_35 WHERE races > 16
### Context: CREATE TABLE table_name_35 (points INTEGER, races INTEGER) ### Question: What is the lowest number of points for Drivers that have raced in more than 16 Races? ### Answer: SELECT MIN(points) FROM table_name_35 WHERE races > 16
What is the least number of Races for a Racer with less than 0 Points?
CREATE TABLE table_name_31 (races INTEGER, points INTEGER)
SELECT MIN(races) FROM table_name_31 WHERE points < 0
### Context: CREATE TABLE table_name_31 (races INTEGER, points INTEGER) ### Question: What is the least number of Races for a Racer with less than 0 Points? ### Answer: SELECT MIN(races) FROM table_name_31 WHERE points < 0
What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps?
CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR)
SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs"
### Context: CREATE TABLE table_name_98 (year INTEGER, drivers VARCHAR, poles VARCHAR, fast_laps VARCHAR) ### Question: What is the average Year during which the Driver Adrian Quaife-Hobbs has fewer than 2 Poles, and 0 Fast laps? ### Answer: SELECT AVG(year) FROM table_name_98 WHERE poles < 2 AND fast_laps = 0 AND drivers = "adrian quaife-hobbs"
Which city contains the KPIX station?
CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR)
SELECT city_of_license__market FROM table_name_96 WHERE station = "kpix"
### Context: CREATE TABLE table_name_96 (city_of_license__market VARCHAR, station VARCHAR) ### Question: Which city contains the KPIX station? ### Answer: SELECT city_of_license__market FROM table_name_96 WHERE station = "kpix"
Which station has channel TV (DT) of 3 (26)?
CREATE TABLE table_name_74 (station VARCHAR, channel_tv___dt__ VARCHAR)
SELECT station FROM table_name_74 WHERE channel_tv___dt__ = "3 (26)"
### Context: CREATE TABLE table_name_74 (station VARCHAR, channel_tv___dt__ VARCHAR) ### Question: Which station has channel TV (DT) of 3 (26)? ### Answer: SELECT station FROM table_name_74 WHERE channel_tv___dt__ = "3 (26)"
What is the current affiliation when the years owned is between 1955–1995?
CREATE TABLE table_name_62 (current_affiliation VARCHAR, years_owned VARCHAR)
SELECT current_affiliation FROM table_name_62 WHERE years_owned = "1955–1995"
### Context: CREATE TABLE table_name_62 (current_affiliation VARCHAR, years_owned VARCHAR) ### Question: What is the current affiliation when the years owned is between 1955–1995? ### Answer: SELECT current_affiliation FROM table_name_62 WHERE years_owned = "1955–1995"
What is the city containing the KDKA-TV station?
CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR)
SELECT city_of_license__market FROM table_name_61 WHERE station = "kdka-tv"
### Context: CREATE TABLE table_name_61 (city_of_license__market VARCHAR, station VARCHAR) ### Question: What is the city containing the KDKA-TV station? ### Answer: SELECT city_of_license__market FROM table_name_61 WHERE station = "kdka-tv"
Which Channel TV is located in Baltimore?
CREATE TABLE table_name_88 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR)
SELECT channel_tv___dt__ FROM table_name_88 WHERE city_of_license__market = "baltimore"
### Context: CREATE TABLE table_name_88 (channel_tv___dt__ VARCHAR, city_of_license__market VARCHAR) ### Question: Which Channel TV is located in Baltimore? ### Answer: SELECT channel_tv___dt__ FROM table_name_88 WHERE city_of_license__market = "baltimore"
What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup?
CREATE TABLE table_name_43 (play_offs INTEGER, fa_cup VARCHAR)
SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 2
### Context: CREATE TABLE table_name_43 (play_offs INTEGER, fa_cup VARCHAR) ### Question: What is the least number of goals scored in the play-offs among the players that have scored 2 in the FA Cup? ### Answer: SELECT MIN(play_offs) FROM table_name_43 WHERE fa_cup = 2
What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals?
CREATE TABLE table_name_57 (fa_cup INTEGER, league VARCHAR, total VARCHAR, fa_trophy VARCHAR)
SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25
### Context: CREATE TABLE table_name_57 (fa_cup INTEGER, league VARCHAR, total VARCHAR, fa_trophy VARCHAR) ### Question: What is the average number of goals scored in the FA Cup among players that have more than 20 total goals, less than 1 FA Trophy goals, and less than 25 league goals? ### Answer: SELECT AVG(fa_cup) FROM table_name_57 WHERE total > 20 AND fa_trophy < 1 AND league < 25
What is the latitude and longitude for Surveyor 3?
CREATE TABLE table_name_87 (lat___lon VARCHAR, us_mission VARCHAR)
SELECT lat___lon FROM table_name_87 WHERE us_mission = "surveyor 3"
### Context: CREATE TABLE table_name_87 (lat___lon VARCHAR, us_mission VARCHAR) ### Question: What is the latitude and longitude for Surveyor 3? ### Answer: SELECT lat___lon FROM table_name_87 WHERE us_mission = "surveyor 3"
What is the largest mass for Tycho Crater?
CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR)
SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = "tycho crater"
### Context: CREATE TABLE table_name_59 (mass__kg_ INTEGER, landing_zone VARCHAR) ### Question: What is the largest mass for Tycho Crater? ### Answer: SELECT MAX(mass__kg_) FROM table_name_59 WHERE landing_zone = "tycho crater"
What Field was Commissioned in 1958, 2005?
CREATE TABLE table_name_24 (field VARCHAR, commissioned VARCHAR)
SELECT field FROM table_name_24 WHERE commissioned = "1958, 2005"
### Context: CREATE TABLE table_name_24 (field VARCHAR, commissioned VARCHAR) ### Question: What Field was Commissioned in 1958, 2005? ### Answer: SELECT field FROM table_name_24 WHERE commissioned = "1958, 2005"
What is the Annual Generation at Kawerau (Bope)?
CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR)
SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)"
### Context: CREATE TABLE table_name_83 (annual_generation__average_gwh_ VARCHAR, name VARCHAR) ### Question: What is the Annual Generation at Kawerau (Bope)? ### Answer: SELECT annual_generation__average_gwh_ FROM table_name_83 WHERE name = "kawerau (bope)"
What is the Name of the power station with a Capacity of 25 MW?
CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR)
SELECT name FROM table_name_9 WHERE capacity__mw_ = 25
### Context: CREATE TABLE table_name_9 (name VARCHAR, capacity__mw_ VARCHAR) ### Question: What is the Name of the power station with a Capacity of 25 MW? ### Answer: SELECT name FROM table_name_9 WHERE capacity__mw_ = 25
What is the Name of the power station in the Field of Mokai?
CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR)
SELECT name FROM table_name_22 WHERE field = "mokai"
### Context: CREATE TABLE table_name_22 (name VARCHAR, field VARCHAR) ### Question: What is the Name of the power station in the Field of Mokai? ### Answer: SELECT name FROM table_name_22 WHERE field = "mokai"
How many goals were scored in 2004 when the gp/gs was "did not play"?
CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR)
SELECT goals FROM table_name_25 WHERE gp_gs = "did not play" AND year = "2004"
### Context: CREATE TABLE table_name_25 (goals VARCHAR, gp_gs VARCHAR, year VARCHAR) ### Question: How many goals were scored in 2004 when the gp/gs was "did not play"? ### Answer: SELECT goals FROM table_name_25 WHERE gp_gs = "did not play" AND year = "2004"
How many assists were there when the total points was 2?
CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR)
SELECT assists FROM table_name_36 WHERE total_points = "2"
### Context: CREATE TABLE table_name_36 (assists VARCHAR, total_points VARCHAR) ### Question: How many assists were there when the total points was 2? ### Answer: SELECT assists FROM table_name_36 WHERE total_points = "2"
What was the total number of points when there were 7 assists?
CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR)
SELECT total_points FROM table_name_98 WHERE assists = "7"
### Context: CREATE TABLE table_name_98 (total_points VARCHAR, assists VARCHAR) ### Question: What was the total number of points when there were 7 assists? ### Answer: SELECT total_points FROM table_name_98 WHERE assists = "7"
What was the gp/gs when the assists was 1?
CREATE TABLE table_name_4 (gp_gs VARCHAR, assists VARCHAR)
SELECT gp_gs FROM table_name_4 WHERE assists = "1"
### Context: CREATE TABLE table_name_4 (gp_gs VARCHAR, assists VARCHAR) ### Question: What was the gp/gs when the assists was 1? ### Answer: SELECT gp_gs FROM table_name_4 WHERE assists = "1"
what was the gp/gs in 2003 when the total points was "did not play"?
CREATE TABLE table_name_96 (gp_gs VARCHAR, total_points VARCHAR, year VARCHAR)
SELECT gp_gs FROM table_name_96 WHERE total_points = "did not play" AND year = "2003"
### Context: CREATE TABLE table_name_96 (gp_gs VARCHAR, total_points VARCHAR, year VARCHAR) ### Question: what was the gp/gs in 2003 when the total points was "did not play"? ### Answer: SELECT gp_gs FROM table_name_96 WHERE total_points = "did not play" AND year = "2003"
What was the outcome for Jan Pisecky and his partner?
CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR)
SELECT outcome FROM table_name_32 WHERE partner = "jan pisecky"
### Context: CREATE TABLE table_name_32 (outcome VARCHAR, partner VARCHAR) ### Question: What was the outcome for Jan Pisecky and his partner? ### Answer: SELECT outcome FROM table_name_32 WHERE partner = "jan pisecky"
What player weight 235?
CREATE TABLE table_name_29 (player VARCHAR, weight VARCHAR)
SELECT player FROM table_name_29 WHERE weight = 235
### Context: CREATE TABLE table_name_29 (player VARCHAR, weight VARCHAR) ### Question: What player weight 235? ### Answer: SELECT player FROM table_name_29 WHERE weight = 235
What is the height of the F who weighs less than 195?
CREATE TABLE table_name_82 (height VARCHAR, pos VARCHAR, weight VARCHAR)
SELECT height FROM table_name_82 WHERE pos = "f" AND weight < 195
### Context: CREATE TABLE table_name_82 (height VARCHAR, pos VARCHAR, weight VARCHAR) ### Question: What is the height of the F who weighs less than 195? ### Answer: SELECT height FROM table_name_82 WHERE pos = "f" AND weight < 195
What team does F Trey Gilder play for?
CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR)
SELECT team FROM table_name_63 WHERE pos = "f" AND player = "trey gilder"
### Context: CREATE TABLE table_name_63 (team VARCHAR, pos VARCHAR, player VARCHAR) ### Question: What team does F Trey Gilder play for? ### Answer: SELECT team FROM table_name_63 WHERE pos = "f" AND player = "trey gilder"
What player plays for the Dakota Wizards?
CREATE TABLE table_name_73 (player VARCHAR, team VARCHAR)
SELECT player FROM table_name_73 WHERE team = "dakota wizards"
### Context: CREATE TABLE table_name_73 (player VARCHAR, team VARCHAR) ### Question: What player plays for the Dakota Wizards? ### Answer: SELECT player FROM table_name_73 WHERE team = "dakota wizards"