question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
What 2011 has 4r as the 2008?
CREATE TABLE table_name_68 (Id VARCHAR)
SELECT 2011 FROM table_name_68 WHERE 2008 = "4r"
### Context: CREATE TABLE table_name_68 (Id VARCHAR) ### Question: What 2011 has 4r as the 2008? ### Answer: SELECT 2011 FROM table_name_68 WHERE 2008 = "4r"
What 2007 has wimbledon as the tournament?
CREATE TABLE table_name_88 (tournament VARCHAR)
SELECT 2007 FROM table_name_88 WHERE tournament = "wimbledon"
### Context: CREATE TABLE table_name_88 (tournament VARCHAR) ### Question: What 2007 has wimbledon as the tournament? ### Answer: SELECT 2007 FROM table_name_88 WHERE tournament = "wimbledon"
What 2006 has 1r as the 2007?
CREATE TABLE table_name_74 (Id VARCHAR)
SELECT 2006 FROM table_name_74 WHERE 2007 = "1r"
### Context: CREATE TABLE table_name_74 (Id VARCHAR) ### Question: What 2006 has 1r as the 2007? ### Answer: SELECT 2006 FROM table_name_74 WHERE 2007 = "1r"
What tournament has q2 as the 2004?
CREATE TABLE table_name_66 (tournament VARCHAR)
SELECT tournament FROM table_name_66 WHERE 2004 = "q2"
### Context: CREATE TABLE table_name_66 (tournament VARCHAR) ### Question: What tournament has q2 as the 2004? ### Answer: SELECT tournament FROM table_name_66 WHERE 2004 = "q2"
What 2009 has grand slam tournaments of 2008?
CREATE TABLE table_name_43 (Id VARCHAR)
SELECT 2009 FROM table_name_43 WHERE 2008 = "grand slam tournaments"
### Context: CREATE TABLE table_name_43 (Id VARCHAR) ### Question: What 2009 has grand slam tournaments of 2008? ### Answer: SELECT 2009 FROM table_name_43 WHERE 2008 = "grand slam tournaments"
What 2006 has 0-0 as the 2011?
CREATE TABLE table_name_29 (Id VARCHAR)
SELECT 2006 FROM table_name_29 WHERE 2011 = "0-0"
### Context: CREATE TABLE table_name_29 (Id VARCHAR) ### Question: What 2006 has 0-0 as the 2011? ### Answer: SELECT 2006 FROM table_name_29 WHERE 2011 = "0-0"
What is the Lineup from a Match that is 27?
CREATE TABLE table_name_12 (lineup VARCHAR, match VARCHAR)
SELECT lineup FROM table_name_12 WHERE match = "27"
### Context: CREATE TABLE table_name_12 (lineup VARCHAR, match VARCHAR) ### Question: What is the Lineup from a Match that is 27? ### Answer: SELECT lineup FROM table_name_12 WHERE match = "27"
What is the date for Orangeville?
CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR)
SELECT date FROM table_name_56 WHERE name = "orangeville"
### Context: CREATE TABLE table_name_56 (date VARCHAR, name VARCHAR) ### Question: What is the date for Orangeville? ### Answer: SELECT date FROM table_name_56 WHERE name = "orangeville"
Who is the builder with a works number of 2534?
CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR)
SELECT builder FROM table_name_16 WHERE works_number = "2534"
### Context: CREATE TABLE table_name_16 (builder VARCHAR, works_number VARCHAR) ### Question: Who is the builder with a works number of 2534? ### Answer: SELECT builder FROM table_name_16 WHERE works_number = "2534"
Who is the name with a works number of 809?
CREATE TABLE table_name_49 (name VARCHAR, works_number VARCHAR)
SELECT name FROM table_name_49 WHERE works_number = "809"
### Context: CREATE TABLE table_name_49 (name VARCHAR, works_number VARCHAR) ### Question: Who is the name with a works number of 809? ### Answer: SELECT name FROM table_name_49 WHERE works_number = "809"
In early 1873, Owen sound had what works number?
CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, name VARCHAR)
SELECT works_number FROM table_name_39 WHERE date = "early 1873" AND name = "owen sound"
### Context: CREATE TABLE table_name_39 (works_number VARCHAR, date VARCHAR, name VARCHAR) ### Question: In early 1873, Owen sound had what works number? ### Answer: SELECT works_number FROM table_name_39 WHERE date = "early 1873" AND name = "owen sound"
What was the name for the locomotive with a type of 2-8-0 and a number of 20?
CREATE TABLE table_name_23 (name VARCHAR, type VARCHAR, number VARCHAR)
SELECT name FROM table_name_23 WHERE type = "2-8-0" AND number = 20
### Context: CREATE TABLE table_name_23 (name VARCHAR, type VARCHAR, number VARCHAR) ### Question: What was the name for the locomotive with a type of 2-8-0 and a number of 20? ### Answer: SELECT name FROM table_name_23 WHERE type = "2-8-0" AND number = 20
What is the Year won for the player with a larger than 4 To par and less the 157 Total?
CREATE TABLE table_name_4 (year_won VARCHAR, to_par VARCHAR, total VARCHAR)
SELECT year_won FROM table_name_4 WHERE to_par > 4 AND total < 157
### Context: CREATE TABLE table_name_4 (year_won VARCHAR, to_par VARCHAR, total VARCHAR) ### Question: What is the Year won for the player with a larger than 4 To par and less the 157 Total? ### Answer: SELECT year_won FROM table_name_4 WHERE to_par > 4 AND total < 157
What is the Total for the Player who won after 1983 with less than 4 To par?
CREATE TABLE table_name_66 (total INTEGER, to_par VARCHAR, year_won VARCHAR)
SELECT AVG(total) FROM table_name_66 WHERE to_par < 4 AND year_won > 1983
### Context: CREATE TABLE table_name_66 (total INTEGER, to_par VARCHAR, year_won VARCHAR) ### Question: What is the Total for the Player who won after 1983 with less than 4 To par? ### Answer: SELECT AVG(total) FROM table_name_66 WHERE to_par < 4 AND year_won > 1983
What is the Total of the player who won before 1983 with a smaller than 4 To par?
CREATE TABLE table_name_46 (total VARCHAR, to_par VARCHAR, year_won VARCHAR)
SELECT COUNT(total) FROM table_name_46 WHERE to_par < 4 AND year_won < 1983
### Context: CREATE TABLE table_name_46 (total VARCHAR, to_par VARCHAR, year_won VARCHAR) ### Question: What is the Total of the player who won before 1983 with a smaller than 4 To par? ### Answer: SELECT COUNT(total) FROM table_name_46 WHERE to_par < 4 AND year_won < 1983
Which venue led to a draw?
CREATE TABLE table_name_93 (venue VARCHAR, result VARCHAR)
SELECT venue FROM table_name_93 WHERE result = "draw"
### Context: CREATE TABLE table_name_93 (venue VARCHAR, result VARCHAR) ### Question: Which venue led to a draw? ### Answer: SELECT venue FROM table_name_93 WHERE result = "draw"
What is the highest Stolen Ends when ludmila privivkova shows for skip?
CREATE TABLE table_name_54 (stolen_ends INTEGER, skip VARCHAR)
SELECT MAX(stolen_ends) FROM table_name_54 WHERE skip = "ludmila privivkova"
### Context: CREATE TABLE table_name_54 (stolen_ends INTEGER, skip VARCHAR) ### Question: What is the highest Stolen Ends when ludmila privivkova shows for skip? ### Answer: SELECT MAX(stolen_ends) FROM table_name_54 WHERE skip = "ludmila privivkova"
What is the sum of Blank Ends for Denmark when less than 42 is the ends lost?
CREATE TABLE table_name_39 (blank_ends INTEGER, nation VARCHAR, ends_lost VARCHAR)
SELECT SUM(blank_ends) FROM table_name_39 WHERE nation = "denmark" AND ends_lost < 42
### Context: CREATE TABLE table_name_39 (blank_ends INTEGER, nation VARCHAR, ends_lost VARCHAR) ### Question: What is the sum of Blank Ends for Denmark when less than 42 is the ends lost? ### Answer: SELECT SUM(blank_ends) FROM table_name_39 WHERE nation = "denmark" AND ends_lost < 42
What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends.
CREATE TABLE table_name_88 (blank_ends VARCHAR, stolen_ends VARCHAR, ends_won VARCHAR, ends_lost VARCHAR)
SELECT blank_ends FROM table_name_88 WHERE ends_won < 39 AND ends_lost > 35 AND stolen_ends = 4
### Context: CREATE TABLE table_name_88 (blank_ends VARCHAR, stolen_ends VARCHAR, ends_won VARCHAR, ends_lost VARCHAR) ### Question: What is the Blank Ends when there are less than 39 ends won and, more than 35 ends lost, and 4 stolen ends. ### Answer: SELECT blank_ends FROM table_name_88 WHERE ends_won < 39 AND ends_lost > 35 AND stolen_ends = 4
Who was the 20 Questions section aimed at when the Interview Subject was Camille Paglia?
CREATE TABLE table_name_97 (interview_subject VARCHAR)
SELECT 20 AS _questions FROM table_name_97 WHERE interview_subject = "camille paglia"
### Context: CREATE TABLE table_name_97 (interview_subject VARCHAR) ### Question: Who was the 20 Questions section aimed at when the Interview Subject was Camille Paglia? ### Answer: SELECT 20 AS _questions FROM table_name_97 WHERE interview_subject = "camille paglia"
Who was the Centerfold Model on 5-95?
CREATE TABLE table_name_32 (centerfold_model VARCHAR, date VARCHAR)
SELECT centerfold_model FROM table_name_32 WHERE date = "5-95"
### Context: CREATE TABLE table_name_32 (centerfold_model VARCHAR, date VARCHAR) ### Question: Who was the Centerfold Model on 5-95? ### Answer: SELECT centerfold_model FROM table_name_32 WHERE date = "5-95"
Who was the 20 Questions section aimed at when Cover Model was Kimberley Conrad Hefner?
CREATE TABLE table_name_21 (cover_model VARCHAR)
SELECT 20 AS _questions FROM table_name_21 WHERE cover_model = "kimberley conrad hefner"
### Context: CREATE TABLE table_name_21 (cover_model VARCHAR) ### Question: Who was the 20 Questions section aimed at when Cover Model was Kimberley Conrad Hefner? ### Answer: SELECT 20 AS _questions FROM table_name_21 WHERE cover_model = "kimberley conrad hefner"
Who was the Centerfold Model when the Cover Model was Julie Lynn Cialini?
CREATE TABLE table_name_56 (centerfold_model VARCHAR, cover_model VARCHAR)
SELECT centerfold_model FROM table_name_56 WHERE cover_model = "julie lynn cialini"
### Context: CREATE TABLE table_name_56 (centerfold_model VARCHAR, cover_model VARCHAR) ### Question: Who was the Centerfold Model when the Cover Model was Julie Lynn Cialini? ### Answer: SELECT centerfold_model FROM table_name_56 WHERE cover_model = "julie lynn cialini"
Who was the Interview Subject when the Centerfold Model was Melissa Deanne Holliday?
CREATE TABLE table_name_3 (interview_subject VARCHAR, centerfold_model VARCHAR)
SELECT interview_subject FROM table_name_3 WHERE centerfold_model = "melissa deanne holliday"
### Context: CREATE TABLE table_name_3 (interview_subject VARCHAR, centerfold_model VARCHAR) ### Question: Who was the Interview Subject when the Centerfold Model was Melissa Deanne Holliday? ### Answer: SELECT interview_subject FROM table_name_3 WHERE centerfold_model = "melissa deanne holliday"
Who was the 20 Questions section aimed at when Centerfold Model was Rachel Jeán Marteen?
CREATE TABLE table_name_46 (centerfold_model VARCHAR)
SELECT 20 AS _questions FROM table_name_46 WHERE centerfold_model = "rachel jeán marteen"
### Context: CREATE TABLE table_name_46 (centerfold_model VARCHAR) ### Question: Who was the 20 Questions section aimed at when Centerfold Model was Rachel Jeán Marteen? ### Answer: SELECT 20 AS _questions FROM table_name_46 WHERE centerfold_model = "rachel jeán marteen"
What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84?
CREATE TABLE table_name_71 (jersey__number INTEGER, name VARCHAR, weight__kg_ VARCHAR)
SELECT AVG(jersey__number) FROM table_name_71 WHERE name = "steve griffith" AND weight__kg_ < 84
### Context: CREATE TABLE table_name_71 (jersey__number INTEGER, name VARCHAR, weight__kg_ VARCHAR) ### Question: What was the average Jersey # of Steve Griffith, when his Weight (kg) was less than 84? ### Answer: SELECT AVG(jersey__number) FROM table_name_71 WHERE name = "steve griffith" AND weight__kg_ < 84
What was the lowest Weight (kg) for a player that had Jersey #10?
CREATE TABLE table_name_67 (weight__kg_ INTEGER, jersey__number VARCHAR)
SELECT MIN(weight__kg_) FROM table_name_67 WHERE jersey__number = 10
### Context: CREATE TABLE table_name_67 (weight__kg_ INTEGER, jersey__number VARCHAR) ### Question: What was the lowest Weight (kg) for a player that had Jersey #10? ### Answer: SELECT MIN(weight__kg_) FROM table_name_67 WHERE jersey__number = 10
How many different Heights (cm) did Mark Fusco have, when his Jersey # was less than 16?
CREATE TABLE table_name_19 (height__cm_ VARCHAR, jersey__number VARCHAR, name VARCHAR)
SELECT COUNT(height__cm_) FROM table_name_19 WHERE jersey__number < 16 AND name = "mark fusco"
### Context: CREATE TABLE table_name_19 (height__cm_ VARCHAR, jersey__number VARCHAR, name VARCHAR) ### Question: How many different Heights (cm) did Mark Fusco have, when his Jersey # was less than 16? ### Answer: SELECT COUNT(height__cm_) FROM table_name_19 WHERE jersey__number < 16 AND name = "mark fusco"
What was the title of the episode that martin worth wrote the story for?
CREATE TABLE table_name_55 (title VARCHAR, story VARCHAR)
SELECT title FROM table_name_55 WHERE story = "martin worth"
### Context: CREATE TABLE table_name_55 (title VARCHAR, story VARCHAR) ### Question: What was the title of the episode that martin worth wrote the story for? ### Answer: SELECT title FROM table_name_55 WHERE story = "martin worth"
In what year was Xavier Malisse the runner-up with scores of 4–6, 6–4, [8–10]?
CREATE TABLE table_name_65 (year VARCHAR, outcome VARCHAR, score VARCHAR)
SELECT year FROM table_name_65 WHERE outcome = "runner-up" AND score = "4–6, 6–4, [8–10]"
### Context: CREATE TABLE table_name_65 (year VARCHAR, outcome VARCHAR, score VARCHAR) ### Question: In what year was Xavier Malisse the runner-up with scores of 4–6, 6–4, [8–10]? ### Answer: SELECT year FROM table_name_65 WHERE outcome = "runner-up" AND score = "4–6, 6–4, [8–10]"
On what surface was the game played that had a score of 4–6, 6–4, [8–10]?
CREATE TABLE table_name_51 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_51 WHERE score = "4–6, 6–4, [8–10]"
### Context: CREATE TABLE table_name_51 (surface VARCHAR, score VARCHAR) ### Question: On what surface was the game played that had a score of 4–6, 6–4, [8–10]? ### Answer: SELECT surface FROM table_name_51 WHERE score = "4–6, 6–4, [8–10]"
What is Caps, when Province / Club is Example, when Position is Prop, and when Player is Sam Walters?
CREATE TABLE table_name_96 (caps VARCHAR, player VARCHAR, province___club VARCHAR, position VARCHAR)
SELECT caps FROM table_name_96 WHERE province___club = "example" AND position = "prop" AND player = "sam walters"
### Context: CREATE TABLE table_name_96 (caps VARCHAR, player VARCHAR, province___club VARCHAR, position VARCHAR) ### Question: What is Caps, when Province / Club is Example, when Position is Prop, and when Player is Sam Walters? ### Answer: SELECT caps FROM table_name_96 WHERE province___club = "example" AND position = "prop" AND player = "sam walters"
What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer?
CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR)
SELECT position FROM table_name_59 WHERE date_of_birth__age_ = "example" AND player = "mark spencer"
### Context: CREATE TABLE table_name_59 (position VARCHAR, date_of_birth__age_ VARCHAR, player VARCHAR) ### Question: What is Postition, when Date of Birth (Age) is Example, and when Player is Mark Spencer? ### Answer: SELECT position FROM table_name_59 WHERE date_of_birth__age_ = "example" AND player = "mark spencer"
What is Player, when Caps is Example, and when Position is Center?
CREATE TABLE table_name_66 (player VARCHAR, caps VARCHAR, position VARCHAR)
SELECT player FROM table_name_66 WHERE caps = "example" AND position = "center"
### Context: CREATE TABLE table_name_66 (player VARCHAR, caps VARCHAR, position VARCHAR) ### Question: What is Player, when Caps is Example, and when Position is Center? ### Answer: SELECT player FROM table_name_66 WHERE caps = "example" AND position = "center"
What is Caps, when Province / Club is DRFC, and when Position is Center?
CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR)
SELECT caps FROM table_name_49 WHERE province___club = "drfc" AND position = "center"
### Context: CREATE TABLE table_name_49 (caps VARCHAR, province___club VARCHAR, position VARCHAR) ### Question: What is Caps, when Province / Club is DRFC, and when Position is Center? ### Answer: SELECT caps FROM table_name_49 WHERE province___club = "drfc" AND position = "center"
What is Position, when Caps is Example, and When Player is Shane Kelly?
CREATE TABLE table_name_66 (position VARCHAR, caps VARCHAR, player VARCHAR)
SELECT position FROM table_name_66 WHERE caps = "example" AND player = "shane kelly"
### Context: CREATE TABLE table_name_66 (position VARCHAR, caps VARCHAR, player VARCHAR) ### Question: What is Position, when Caps is Example, and When Player is Shane Kelly? ### Answer: SELECT position FROM table_name_66 WHERE caps = "example" AND player = "shane kelly"
What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze?
CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR)
SELECT position FROM table_name_52 WHERE province___club = "example" AND date_of_birth__age_ = "example" AND player = "michael elumeze"
### Context: CREATE TABLE table_name_52 (position VARCHAR, player VARCHAR, province___club VARCHAR, date_of_birth__age_ VARCHAR) ### Question: What is Position, when Province / Club is Example, when Date of Birth (Age) is Example, and when Player is Michael Elumeze? ### Answer: SELECT position FROM table_name_52 WHERE province___club = "example" AND date_of_birth__age_ = "example" AND player = "michael elumeze"
What is the average number played of the team with 1 drawn and 24 against?
CREATE TABLE table_name_79 (played INTEGER, drawn VARCHAR, against VARCHAR)
SELECT AVG(played) FROM table_name_79 WHERE drawn = 1 AND against = 24
### Context: CREATE TABLE table_name_79 (played INTEGER, drawn VARCHAR, against VARCHAR) ### Question: What is the average number played of the team with 1 drawn and 24 against? ### Answer: SELECT AVG(played) FROM table_name_79 WHERE drawn = 1 AND against = 24
What is the highest lost number of the team with less than 14 points and less than 18 played?
CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR)
SELECT MAX(lost) FROM table_name_65 WHERE points < 14 AND played < 18
### Context: CREATE TABLE table_name_65 (lost INTEGER, points VARCHAR, played VARCHAR) ### Question: What is the highest lost number of the team with less than 14 points and less than 18 played? ### Answer: SELECT MAX(lost) FROM table_name_65 WHERE points < 14 AND played < 18
Which team had 1 position?
CREATE TABLE table_name_65 (team VARCHAR, position VARCHAR)
SELECT team FROM table_name_65 WHERE position = 1
### Context: CREATE TABLE table_name_65 (team VARCHAR, position VARCHAR) ### Question: Which team had 1 position? ### Answer: SELECT team FROM table_name_65 WHERE position = 1
What is the lowest number of played of the team with 18 points and a position greater than 5?
CREATE TABLE table_name_74 (played INTEGER, points VARCHAR, position VARCHAR)
SELECT MIN(played) FROM table_name_74 WHERE points = 18 AND position > 5
### Context: CREATE TABLE table_name_74 (played INTEGER, points VARCHAR, position VARCHAR) ### Question: What is the lowest number of played of the team with 18 points and a position greater than 5? ### Answer: SELECT MIN(played) FROM table_name_74 WHERE points = 18 AND position > 5
What is the total number of points of the team with less than 4 drawn and an against of 34?
CREATE TABLE table_name_24 (points VARCHAR, drawn VARCHAR, against VARCHAR)
SELECT COUNT(points) FROM table_name_24 WHERE drawn < 4 AND against = 34
### Context: CREATE TABLE table_name_24 (points VARCHAR, drawn VARCHAR, against VARCHAR) ### Question: What is the total number of points of the team with less than 4 drawn and an against of 34? ### Answer: SELECT COUNT(points) FROM table_name_24 WHERE drawn < 4 AND against = 34
What is the average number of drawn with a difference of 17 and 22 points?
CREATE TABLE table_name_64 (drawn INTEGER, difference VARCHAR, points VARCHAR)
SELECT AVG(drawn) FROM table_name_64 WHERE difference = "17" AND points = 22
### Context: CREATE TABLE table_name_64 (drawn INTEGER, difference VARCHAR, points VARCHAR) ### Question: What is the average number of drawn with a difference of 17 and 22 points? ### Answer: SELECT AVG(drawn) FROM table_name_64 WHERE difference = "17" AND points = 22
What is the team that has forward-center as a position?
CREATE TABLE table_name_24 (school_club_team VARCHAR, position VARCHAR)
SELECT school_club_team FROM table_name_24 WHERE position = "forward-center"
### Context: CREATE TABLE table_name_24 (school_club_team VARCHAR, position VARCHAR) ### Question: What is the team that has forward-center as a position? ### Answer: SELECT school_club_team FROM table_name_24 WHERE position = "forward-center"
What team does Kenny Smith play for?
CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_25 WHERE player = "kenny smith"
### Context: CREATE TABLE table_name_25 (school_club_team VARCHAR, player VARCHAR) ### Question: What team does Kenny Smith play for? ### Answer: SELECT school_club_team FROM table_name_25 WHERE player = "kenny smith"
What years was Lebanon the nationality?
CREATE TABLE table_name_82 (years_in_orlando VARCHAR, nationality VARCHAR)
SELECT years_in_orlando FROM table_name_82 WHERE nationality = "lebanon"
### Context: CREATE TABLE table_name_82 (years_in_orlando VARCHAR, nationality VARCHAR) ### Question: What years was Lebanon the nationality? ### Answer: SELECT years_in_orlando FROM table_name_82 WHERE nationality = "lebanon"
Which margin of victory has cyber agent ladies as the tournament?
CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_78 WHERE tournament = "cyber agent ladies"
### Context: CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: Which margin of victory has cyber agent ladies as the tournament? ### Answer: SELECT margin_of_victory FROM table_name_78 WHERE tournament = "cyber agent ladies"
What date has yani tseng as the runner (s)-up?
CREATE TABLE table_name_91 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_91 WHERE runner_s__up = "yani tseng"
### Context: CREATE TABLE table_name_91 (date VARCHAR, runner_s__up VARCHAR) ### Question: What date has yani tseng as the runner (s)-up? ### Answer: SELECT date FROM table_name_91 WHERE runner_s__up = "yani tseng"
What is the margin of victory that has masters gc ladies as the tournament?
CREATE TABLE table_name_45 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_45 WHERE tournament = "masters gc ladies"
### Context: CREATE TABLE table_name_45 (margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the margin of victory that has masters gc ladies as the tournament? ### Answer: SELECT margin_of_victory FROM table_name_45 WHERE tournament = "masters gc ladies"
What is the date that has yani tseng as the runner (s)-up?
CREATE TABLE table_name_97 (date VARCHAR, runner_s__up VARCHAR)
SELECT date FROM table_name_97 WHERE runner_s__up = "yani tseng"
### Context: CREATE TABLE table_name_97 (date VARCHAR, runner_s__up VARCHAR) ### Question: What is the date that has yani tseng as the runner (s)-up? ### Answer: SELECT date FROM table_name_97 WHERE runner_s__up = "yani tseng"
What is the winning score that has victory of 2 strokes for the margin, and cyber agent ladies for the tournament?
CREATE TABLE table_name_30 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_30 WHERE margin_of_victory = "2 strokes" AND tournament = "cyber agent ladies"
### Context: CREATE TABLE table_name_30 (winning_score VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR) ### Question: What is the winning score that has victory of 2 strokes for the margin, and cyber agent ladies for the tournament? ### Answer: SELECT winning_score FROM table_name_30 WHERE margin_of_victory = "2 strokes" AND tournament = "cyber agent ladies"
What is the highest Poles with a win that is smaller than 0?
CREATE TABLE table_name_74 (poles INTEGER, wins INTEGER)
SELECT MAX(poles) FROM table_name_74 WHERE wins < 0
### Context: CREATE TABLE table_name_74 (poles INTEGER, wins INTEGER) ### Question: What is the highest Poles with a win that is smaller than 0? ### Answer: SELECT MAX(poles) FROM table_name_74 WHERE wins < 0
What is the headphone model with a plastic construction and a prestige headphone class?
CREATE TABLE table_name_28 (headphone_model VARCHAR, construction VARCHAR, headphone_class VARCHAR)
SELECT headphone_model FROM table_name_28 WHERE construction = "plastic" AND headphone_class = "prestige"
### Context: CREATE TABLE table_name_28 (headphone_model VARCHAR, construction VARCHAR, headphone_class VARCHAR) ### Question: What is the headphone model with a plastic construction and a prestige headphone class? ### Answer: SELECT headphone_model FROM table_name_28 WHERE construction = "plastic" AND headphone_class = "prestige"
What earpads does the headphone with plastic contruction and was succeeded by igrado have?
CREATE TABLE table_name_67 (earpads VARCHAR, construction VARCHAR, succeeded_by VARCHAR)
SELECT earpads FROM table_name_67 WHERE construction = "plastic" AND succeeded_by = "igrado"
### Context: CREATE TABLE table_name_67 (earpads VARCHAR, construction VARCHAR, succeeded_by VARCHAR) ### Question: What earpads does the headphone with plastic contruction and was succeeded by igrado have? ### Answer: SELECT earpads FROM table_name_67 WHERE construction = "plastic" AND succeeded_by = "igrado"
What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325?
CREATE TABLE table_name_43 (earpads VARCHAR, succeeded_by VARCHAR, construction VARCHAR, sensitivity__db_ VARCHAR)
SELECT earpads FROM table_name_43 WHERE construction = "plastic" AND sensitivity__db_ = "unknown" AND succeeded_by = "sr325"
### Context: CREATE TABLE table_name_43 (earpads VARCHAR, succeeded_by VARCHAR, construction VARCHAR, sensitivity__db_ VARCHAR) ### Question: What are the earpads of the headphone with a plastic construction, an unknown sensitivity, and was succeeded by sr325? ### Answer: SELECT earpads FROM table_name_43 WHERE construction = "plastic" AND sensitivity__db_ = "unknown" AND succeeded_by = "sr325"
What is the headphone model which was succeeded by sr325?
CREATE TABLE table_name_59 (headphone_model VARCHAR, succeeded_by VARCHAR)
SELECT headphone_model FROM table_name_59 WHERE succeeded_by = "sr325"
### Context: CREATE TABLE table_name_59 (headphone_model VARCHAR, succeeded_by VARCHAR) ### Question: What is the headphone model which was succeeded by sr325? ### Answer: SELECT headphone_model FROM table_name_59 WHERE succeeded_by = "sr325"
What regulations have hudson as the winning constructor?
CREATE TABLE table_name_84 (regulations VARCHAR, winning_constructor VARCHAR)
SELECT regulations FROM table_name_84 WHERE winning_constructor = "hudson"
### Context: CREATE TABLE table_name_84 (regulations VARCHAR, winning_constructor VARCHAR) ### Question: What regulations have hudson as the winning constructor? ### Answer: SELECT regulations FROM table_name_84 WHERE winning_constructor = "hudson"
What regulations have carlos arzani as the winning driver?
CREATE TABLE table_name_13 (regulations VARCHAR, winning_drivers VARCHAR)
SELECT regulations FROM table_name_13 WHERE winning_drivers = "carlos arzani"
### Context: CREATE TABLE table_name_13 (regulations VARCHAR, winning_drivers VARCHAR) ### Question: What regulations have carlos arzani as the winning driver? ### Answer: SELECT regulations FROM table_name_13 WHERE winning_drivers = "carlos arzani"
What is the latest year that has ferrari 166 fl as the winning constructor?
CREATE TABLE table_name_7 (year INTEGER, winning_constructor VARCHAR)
SELECT MAX(year) FROM table_name_7 WHERE winning_constructor = "ferrari 166 fl"
### Context: CREATE TABLE table_name_7 (year INTEGER, winning_constructor VARCHAR) ### Question: What is the latest year that has ferrari 166 fl as the winning constructor? ### Answer: SELECT MAX(year) FROM table_name_7 WHERE winning_constructor = "ferrari 166 fl"
What is the city of license that has lp as the class?
CREATE TABLE table_name_40 (city_of_license VARCHAR, class VARCHAR)
SELECT city_of_license FROM table_name_40 WHERE class = "lp"
### Context: CREATE TABLE table_name_40 (city_of_license VARCHAR, class VARCHAR) ### Question: What is the city of license that has lp as the class? ### Answer: SELECT city_of_license FROM table_name_40 WHERE class = "lp"
What is the identifier that has 50,000 watts of power?
CREATE TABLE table_name_45 (identifier VARCHAR, power VARCHAR)
SELECT identifier FROM table_name_45 WHERE power = "50,000 watts"
### Context: CREATE TABLE table_name_45 (identifier VARCHAR, power VARCHAR) ### Question: What is the identifier that has 50,000 watts of power? ### Answer: SELECT identifier FROM table_name_45 WHERE power = "50,000 watts"
What RECNet has 40 watts of power and temagami as the city of license?
CREATE TABLE table_name_20 (recnet VARCHAR, power VARCHAR, city_of_license VARCHAR)
SELECT recnet FROM table_name_20 WHERE power = "40 watts" AND city_of_license = "temagami"
### Context: CREATE TABLE table_name_20 (recnet VARCHAR, power VARCHAR, city_of_license VARCHAR) ### Question: What RECNet has 40 watts of power and temagami as the city of license? ### Answer: SELECT recnet FROM table_name_20 WHERE power = "40 watts" AND city_of_license = "temagami"
What city of license has A as a class, and cbec-fm as the identifier?
CREATE TABLE table_name_86 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR)
SELECT city_of_license FROM table_name_86 WHERE class = "a" AND identifier = "cbec-fm"
### Context: CREATE TABLE table_name_86 (city_of_license VARCHAR, class VARCHAR, identifier VARCHAR) ### Question: What city of license has A as a class, and cbec-fm as the identifier? ### Answer: SELECT city_of_license FROM table_name_86 WHERE class = "a" AND identifier = "cbec-fm"
What RECNet has elk lake as the city of license?
CREATE TABLE table_name_57 (recnet VARCHAR, city_of_license VARCHAR)
SELECT recnet FROM table_name_57 WHERE city_of_license = "elk lake"
### Context: CREATE TABLE table_name_57 (recnet VARCHAR, city_of_license VARCHAR) ### Question: What RECNet has elk lake as the city of license? ### Answer: SELECT recnet FROM table_name_57 WHERE city_of_license = "elk lake"
What frequency has temagami as the city of license?
CREATE TABLE table_name_92 (frequency VARCHAR, city_of_license VARCHAR)
SELECT frequency FROM table_name_92 WHERE city_of_license = "temagami"
### Context: CREATE TABLE table_name_92 (frequency VARCHAR, city_of_license VARCHAR) ### Question: What frequency has temagami as the city of license? ### Answer: SELECT frequency FROM table_name_92 WHERE city_of_license = "temagami"
What is the highest Current Branch Opened, when Neighborhood is W. Portland Park?
CREATE TABLE table_name_79 (current_branch_opened INTEGER, neighborhood VARCHAR)
SELECT MAX(current_branch_opened) FROM table_name_79 WHERE neighborhood = "w. portland park"
### Context: CREATE TABLE table_name_79 (current_branch_opened INTEGER, neighborhood VARCHAR) ### Question: What is the highest Current Branch Opened, when Neighborhood is W. Portland Park? ### Answer: SELECT MAX(current_branch_opened) FROM table_name_79 WHERE neighborhood = "w. portland park"
What is the First Branch Opened, when Branch is Belmont Library?
CREATE TABLE table_name_21 (first_branch_opened VARCHAR, branch VARCHAR)
SELECT first_branch_opened FROM table_name_21 WHERE branch = "belmont library"
### Context: CREATE TABLE table_name_21 (first_branch_opened VARCHAR, branch VARCHAR) ### Question: What is the First Branch Opened, when Branch is Belmont Library? ### Answer: SELECT first_branch_opened FROM table_name_21 WHERE branch = "belmont library"
What is Neighborhood, when Branch is Hollywood Library?
CREATE TABLE table_name_92 (neighborhood VARCHAR, branch VARCHAR)
SELECT neighborhood FROM table_name_92 WHERE branch = "hollywood library"
### Context: CREATE TABLE table_name_92 (neighborhood VARCHAR, branch VARCHAR) ### Question: What is Neighborhood, when Branch is Hollywood Library? ### Answer: SELECT neighborhood FROM table_name_92 WHERE branch = "hollywood library"
What is Current Branch Opened, when Branch is Midland Library?
CREATE TABLE table_name_22 (current_branch_opened VARCHAR, branch VARCHAR)
SELECT current_branch_opened FROM table_name_22 WHERE branch = "midland library"
### Context: CREATE TABLE table_name_22 (current_branch_opened VARCHAR, branch VARCHAR) ### Question: What is Current Branch Opened, when Branch is Midland Library? ### Answer: SELECT current_branch_opened FROM table_name_22 WHERE branch = "midland library"
Which player has the fewest assists and played 2 games or fewer?
CREATE TABLE table_name_72 (assists INTEGER, games INTEGER)
SELECT MIN(assists) FROM table_name_72 WHERE games < 2
### Context: CREATE TABLE table_name_72 (assists INTEGER, games INTEGER) ### Question: Which player has the fewest assists and played 2 games or fewer? ### Answer: SELECT MIN(assists) FROM table_name_72 WHERE games < 2
What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004?
CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR)
SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004
### Context: CREATE TABLE table_name_83 (march VARCHAR, year VARCHAR, average_monthly_additions_in_millions_ VARCHAR, january VARCHAR, december VARCHAR) ### Question: What was the total number for March with less than 8.77 in January, more than 1.69 in December, an average monthly addition less than 5.35, and before 2004? ### Answer: SELECT COUNT(march) FROM table_name_83 WHERE january < 8.77 AND december > 1.69 AND average_monthly_additions_in_millions_ < 5.35 AND year < 2004
What is the total number for November, larger than 8.53 in February, 20.21 in March, and less than 7.9 in September?
CREATE TABLE table_name_50 (november VARCHAR, september VARCHAR, february VARCHAR, march VARCHAR)
SELECT COUNT(november) FROM table_name_50 WHERE february > 8.53 AND march = 20.21 AND september < 7.9
### Context: CREATE TABLE table_name_50 (november VARCHAR, september VARCHAR, february VARCHAR, march VARCHAR) ### Question: What is the total number for November, larger than 8.53 in February, 20.21 in March, and less than 7.9 in September? ### Answer: SELECT COUNT(november) FROM table_name_50 WHERE february > 8.53 AND march = 20.21 AND september < 7.9
What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February?
CREATE TABLE table_name_95 (december INTEGER, july VARCHAR, february VARCHAR)
SELECT SUM(december) FROM table_name_95 WHERE july = 0.36 AND february > 0.35000000000000003
### Context: CREATE TABLE table_name_95 (december INTEGER, july VARCHAR, february VARCHAR) ### Question: What is the sum for December that has 0.36 in July, and lager than 0.35000000000000003 in February? ### Answer: SELECT SUM(december) FROM table_name_95 WHERE july = 0.36 AND february > 0.35000000000000003
What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November?
CREATE TABLE table_name_12 (july VARCHAR, november VARCHAR, october VARCHAR, december VARCHAR)
SELECT COUNT(july) FROM table_name_12 WHERE october < 8.05 AND december > 4.46 AND november > 6.79
### Context: CREATE TABLE table_name_12 (july VARCHAR, november VARCHAR, october VARCHAR, december VARCHAR) ### Question: What is the total number for July with less than 8.05 in October, more than 4.46 in December, and more than 6.79 in November? ### Answer: SELECT COUNT(july) FROM table_name_12 WHERE october < 8.05 AND december > 4.46 AND november > 6.79
What is the total number in October with less than 2.48 in September, after 2002, more than 1.42 in June, and smaller than 7.44 in February?
CREATE TABLE table_name_41 (october VARCHAR, february VARCHAR, june VARCHAR, september VARCHAR, year VARCHAR)
SELECT COUNT(october) FROM table_name_41 WHERE september < 2.48 AND year > 2002 AND june > 1.42 AND february < 7.44
### Context: CREATE TABLE table_name_41 (october VARCHAR, february VARCHAR, june VARCHAR, september VARCHAR, year VARCHAR) ### Question: What is the total number in October with less than 2.48 in September, after 2002, more than 1.42 in June, and smaller than 7.44 in February? ### Answer: SELECT COUNT(october) FROM table_name_41 WHERE september < 2.48 AND year > 2002 AND june > 1.42 AND february < 7.44
What is the Catalog with a Region that is europe?
CREATE TABLE table_name_56 (catalog VARCHAR, region VARCHAR)
SELECT catalog FROM table_name_56 WHERE region = "europe"
### Context: CREATE TABLE table_name_56 (catalog VARCHAR, region VARCHAR) ### Question: What is the Catalog with a Region that is europe? ### Answer: SELECT catalog FROM table_name_56 WHERE region = "europe"
What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)?
CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf·h_ VARCHAR)
SELECT MAX(sfc_in_g__kn) AS ·s_ FROM table_name_12 WHERE engine_type = "rolls-royce/snecma olympus 593" AND sfc_in_lb__lbf·h_ < 1.195
### Context: CREATE TABLE table_name_12 (sfc_in_g__kn INTEGER, engine_type VARCHAR, sfc_in_lb__lbf·h_ VARCHAR) ### Question: What is the highest SFC in g/(kN*s) for Rolls-Royce/Snecma Olympus 593 engines and SFCs under 1.195 lb/(lbf*h)? ### Answer: SELECT MAX(sfc_in_g__kn) AS ·s_ FROM table_name_12 WHERE engine_type = "rolls-royce/snecma olympus 593" AND sfc_in_lb__lbf·h_ < 1.195
What is Winner, when Week is 8 May, when Semi Finalists is Helena Suková Mary Pierce, and when Runner-Up is Conchita Martínez Patricia Tarabini?
CREATE TABLE table_name_70 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR)
SELECT winner FROM table_name_70 WHERE week_of = "8 may" AND semi_finalists = "helena suková mary pierce" AND runner_up = "conchita martínez patricia tarabini"
### Context: CREATE TABLE table_name_70 (winner VARCHAR, runner_up VARCHAR, week_of VARCHAR, semi_finalists VARCHAR) ### Question: What is Winner, when Week is 8 May, when Semi Finalists is Helena Suková Mary Pierce, and when Runner-Up is Conchita Martínez Patricia Tarabini? ### Answer: SELECT winner FROM table_name_70 WHERE week_of = "8 may" AND semi_finalists = "helena suková mary pierce" AND runner_up = "conchita martínez patricia tarabini"
What is Week, when Semi Finalists is Sandrine Testud Yone Kamio?
CREATE TABLE table_name_53 (week_of VARCHAR, semi_finalists VARCHAR)
SELECT week_of FROM table_name_53 WHERE semi_finalists = "sandrine testud yone kamio"
### Context: CREATE TABLE table_name_53 (week_of VARCHAR, semi_finalists VARCHAR) ### Question: What is Week, when Semi Finalists is Sandrine Testud Yone Kamio? ### Answer: SELECT week_of FROM table_name_53 WHERE semi_finalists = "sandrine testud yone kamio"
In what Season was Colin Miller (TAS) the Player?
CREATE TABLE table_name_34 (season VARCHAR, player VARCHAR)
SELECT season FROM table_name_34 WHERE player = "colin miller (tas)"
### Context: CREATE TABLE table_name_34 (season VARCHAR, player VARCHAR) ### Question: In what Season was Colin Miller (TAS) the Player? ### Answer: SELECT season FROM table_name_34 WHERE player = "colin miller (tas)"
What Rank has a 65 s Wicket?
CREATE TABLE table_name_25 (rank VARCHAR, s_wicket VARCHAR)
SELECT rank FROM table_name_25 WHERE s_wicket = "65"
### Context: CREATE TABLE table_name_25 (rank VARCHAR, s_wicket VARCHAR) ### Question: What Rank has a 65 s Wicket? ### Answer: SELECT rank FROM table_name_25 WHERE s_wicket = "65"
Which result featured the Indianapolis Colts as opponents?
CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_72 WHERE opponent = "indianapolis colts"
### Context: CREATE TABLE table_name_72 (result VARCHAR, opponent VARCHAR) ### Question: Which result featured the Indianapolis Colts as opponents? ### Answer: SELECT result FROM table_name_72 WHERE opponent = "indianapolis colts"
Whose Name has a Date of reclassification of 2003-04-01 (merge into shizuoka )?
CREATE TABLE table_name_52 (name VARCHAR, date_of_reclassification VARCHAR)
SELECT name FROM table_name_52 WHERE date_of_reclassification = "2003-04-01 (merge into shizuoka )"
### Context: CREATE TABLE table_name_52 (name VARCHAR, date_of_reclassification VARCHAR) ### Question: Whose Name has a Date of reclassification of 2003-04-01 (merge into shizuoka )? ### Answer: SELECT name FROM table_name_52 WHERE date_of_reclassification = "2003-04-01 (merge into shizuoka )"
WHich Japanese has a Prefecture of iwate?
CREATE TABLE table_name_99 (japanese VARCHAR, prefecture VARCHAR)
SELECT japanese FROM table_name_99 WHERE prefecture = "iwate"
### Context: CREATE TABLE table_name_99 (japanese VARCHAR, prefecture VARCHAR) ### Question: WHich Japanese has a Prefecture of iwate? ### Answer: SELECT japanese FROM table_name_99 WHERE prefecture = "iwate"
Which Date of designation has a Name of kurume?
CREATE TABLE table_name_36 (date_of_designation VARCHAR, name VARCHAR)
SELECT date_of_designation FROM table_name_36 WHERE name = "kurume"
### Context: CREATE TABLE table_name_36 (date_of_designation VARCHAR, name VARCHAR) ### Question: Which Date of designation has a Name of kurume? ### Answer: SELECT date_of_designation FROM table_name_36 WHERE name = "kurume"
What kind of Japanese has a Region of tōhoku?
CREATE TABLE table_name_71 (japanese VARCHAR, region VARCHAR)
SELECT japanese FROM table_name_71 WHERE region = "tōhoku"
### Context: CREATE TABLE table_name_71 (japanese VARCHAR, region VARCHAR) ### Question: What kind of Japanese has a Region of tōhoku? ### Answer: SELECT japanese FROM table_name_71 WHERE region = "tōhoku"
WHose Name has a Region of kansai on 2012-04-01 ( core city )?
CREATE TABLE table_name_63 (name VARCHAR, region VARCHAR, date_of_reclassification VARCHAR)
SELECT name FROM table_name_63 WHERE region = "kansai" AND date_of_reclassification = "2012-04-01 ( core city )"
### Context: CREATE TABLE table_name_63 (name VARCHAR, region VARCHAR, date_of_reclassification VARCHAR) ### Question: WHose Name has a Region of kansai on 2012-04-01 ( core city )? ### Answer: SELECT name FROM table_name_63 WHERE region = "kansai" AND date_of_reclassification = "2012-04-01 ( core city )"
What is the Position with a Birthdate that is august 17, 1980?
CREATE TABLE table_name_92 (position VARCHAR, birthdate VARCHAR)
SELECT position FROM table_name_92 WHERE birthdate = "august 17, 1980"
### Context: CREATE TABLE table_name_92 (position VARCHAR, birthdate VARCHAR) ### Question: What is the Position with a Birthdate that is august 17, 1980? ### Answer: SELECT position FROM table_name_92 WHERE birthdate = "august 17, 1980"
Which capacity has a purple and white colors?
CREATE TABLE table_name_77 (capacity VARCHAR, colors VARCHAR)
SELECT capacity FROM table_name_77 WHERE colors = "purple and white"
### Context: CREATE TABLE table_name_77 (capacity VARCHAR, colors VARCHAR) ### Question: Which capacity has a purple and white colors? ### Answer: SELECT capacity FROM table_name_77 WHERE colors = "purple and white"
How many households have a median family income of $60,400?
CREATE TABLE table_name_15 (number_of_households VARCHAR, median_family_income VARCHAR)
SELECT number_of_households FROM table_name_15 WHERE median_family_income = "$60,400"
### Context: CREATE TABLE table_name_15 (number_of_households VARCHAR, median_family_income VARCHAR) ### Question: How many households have a median family income of $60,400? ### Answer: SELECT number_of_households FROM table_name_15 WHERE median_family_income = "$60,400"
What is the average weight of the player with a height of 180 cm and plays the d position?
CREATE TABLE table_name_53 (weight__kg_ INTEGER, height__cm_ VARCHAR, position VARCHAR)
SELECT AVG(weight__kg_) FROM table_name_53 WHERE height__cm_ = 180 AND position = "d"
### Context: CREATE TABLE table_name_53 (weight__kg_ INTEGER, height__cm_ VARCHAR, position VARCHAR) ### Question: What is the average weight of the player with a height of 180 cm and plays the d position? ### Answer: SELECT AVG(weight__kg_) FROM table_name_53 WHERE height__cm_ = 180 AND position = "d"
What was the resting potential with an AP duration of 1.0 and a median giant fiber cell type?
CREATE TABLE table_name_69 (resting_potential__mv_ VARCHAR, ap_duration__ms_ VARCHAR, cell_type VARCHAR)
SELECT resting_potential__mv_ FROM table_name_69 WHERE ap_duration__ms_ = "1.0" AND cell_type = "median giant fiber"
### Context: CREATE TABLE table_name_69 (resting_potential__mv_ VARCHAR, ap_duration__ms_ VARCHAR, cell_type VARCHAR) ### Question: What was the resting potential with an AP duration of 1.0 and a median giant fiber cell type? ### Answer: SELECT resting_potential__mv_ FROM table_name_69 WHERE ap_duration__ms_ = "1.0" AND cell_type = "median giant fiber"
Which animal has a resting potential of −60?
CREATE TABLE table_name_75 (animal VARCHAR, resting_potential__mv_ VARCHAR)
SELECT animal FROM table_name_75 WHERE resting_potential__mv_ = "−60"
### Context: CREATE TABLE table_name_75 (animal VARCHAR, resting_potential__mv_ VARCHAR) ### Question: Which animal has a resting potential of −60? ### Answer: SELECT animal FROM table_name_75 WHERE resting_potential__mv_ = "−60"
Which animal has an AP duration of 1.0 and a conduction speed of 7–30?
CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR)
SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = "1.0" AND conduction_speed__m_s_ = "7–30"
### Context: CREATE TABLE table_name_11 (animal VARCHAR, ap_duration__ms_ VARCHAR, conduction_speed__m_s_ VARCHAR) ### Question: Which animal has an AP duration of 1.0 and a conduction speed of 7–30? ### Answer: SELECT animal FROM table_name_11 WHERE ap_duration__ms_ = "1.0" AND conduction_speed__m_s_ = "7–30"
What AP increase has an AP duration of 0.75?
CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR)
SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = "0.75"
### Context: CREATE TABLE table_name_68 (ap_increase__mv_ VARCHAR, ap_duration__ms_ VARCHAR) ### Question: What AP increase has an AP duration of 0.75? ### Answer: SELECT ap_increase__mv_ FROM table_name_68 WHERE ap_duration__ms_ = "0.75"
Which cell type has a conduction speed of 35?
CREATE TABLE table_name_15 (cell_type VARCHAR, conduction_speed__m_s_ VARCHAR)
SELECT cell_type FROM table_name_15 WHERE conduction_speed__m_s_ = "35"
### Context: CREATE TABLE table_name_15 (cell_type VARCHAR, conduction_speed__m_s_ VARCHAR) ### Question: Which cell type has a conduction speed of 35? ### Answer: SELECT cell_type FROM table_name_15 WHERE conduction_speed__m_s_ = "35"
What was the total matches that ranked above 10?
CREATE TABLE table_name_9 (matches INTEGER, rank INTEGER)
SELECT SUM(matches) FROM table_name_9 WHERE rank > 10
### Context: CREATE TABLE table_name_9 (matches INTEGER, rank INTEGER) ### Question: What was the total matches that ranked above 10? ### Answer: SELECT SUM(matches) FROM table_name_9 WHERE rank > 10
What was the total amount of matches for Alan Shearer?
CREATE TABLE table_name_81 (matches VARCHAR, name VARCHAR)
SELECT COUNT(matches) FROM table_name_81 WHERE name = "alan shearer"
### Context: CREATE TABLE table_name_81 (matches VARCHAR, name VARCHAR) ### Question: What was the total amount of matches for Alan Shearer? ### Answer: SELECT COUNT(matches) FROM table_name_81 WHERE name = "alan shearer"
What is the average goals for Jimmy Greaves, and matches more than 516?
CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR)
SELECT AVG(goals) FROM table_name_91 WHERE name = "jimmy greaves" AND matches > 516
### Context: CREATE TABLE table_name_91 (goals INTEGER, name VARCHAR, matches VARCHAR) ### Question: What is the average goals for Jimmy Greaves, and matches more than 516? ### Answer: SELECT AVG(goals) FROM table_name_91 WHERE name = "jimmy greaves" AND matches > 516
What was the total number of matches for Nat Lofthouse, ranking higher than 7?
CREATE TABLE table_name_55 (matches VARCHAR, name VARCHAR, rank VARCHAR)
SELECT COUNT(matches) FROM table_name_55 WHERE name = "nat lofthouse" AND rank > 7
### Context: CREATE TABLE table_name_55 (matches VARCHAR, name VARCHAR, rank VARCHAR) ### Question: What was the total number of matches for Nat Lofthouse, ranking higher than 7? ### Answer: SELECT COUNT(matches) FROM table_name_55 WHERE name = "nat lofthouse" AND rank > 7