question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
Which Date has a Partner of daniella dominikovic? | CREATE TABLE table_name_66 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_66 WHERE partner = "daniella dominikovic" | ### Context: CREATE TABLE table_name_66 (date VARCHAR, partner VARCHAR) ### Question: Which Date has a Partner of daniella dominikovic? ### Answer: SELECT date FROM table_name_66 WHERE partner = "daniella dominikovic" |
Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn? | CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR) | SELECT MIN(drawn) FROM table_name_5 WHERE nationality = "england" AND matches < 510 AND lost = 4 AND win__percentage < 28.6 | ### Context: CREATE TABLE table_name_5 (drawn INTEGER, win__percentage VARCHAR, lost VARCHAR, nationality VARCHAR, matches VARCHAR) ### Question: Nationality of england, and a Matches smaller than 510, and a Lost of 4, and a Win % smaller than 28.6 had what lowest drawn? ### Answer: SELECT MIN(drawn) FROM table_name_5 WHERE nationality = "england" AND matches < 510 AND lost = 4 AND win__percentage < 28.6 |
Win % larger than 47.1, and a Matches smaller than 145 had what lowest lost? | CREATE TABLE table_name_47 (lost INTEGER, win__percentage VARCHAR, matches VARCHAR) | SELECT MIN(lost) FROM table_name_47 WHERE win__percentage > 47.1 AND matches < 145 | ### Context: CREATE TABLE table_name_47 (lost INTEGER, win__percentage VARCHAR, matches VARCHAR) ### Question: Win % larger than 47.1, and a Matches smaller than 145 had what lowest lost? ### Answer: SELECT MIN(lost) FROM table_name_47 WHERE win__percentage > 47.1 AND matches < 145 |
Matches of 15, and a Win % smaller than 20 had what highest lost? | CREATE TABLE table_name_83 (lost INTEGER, matches VARCHAR, win__percentage VARCHAR) | SELECT MAX(lost) FROM table_name_83 WHERE matches = 15 AND win__percentage < 20 | ### Context: CREATE TABLE table_name_83 (lost INTEGER, matches VARCHAR, win__percentage VARCHAR) ### Question: Matches of 15, and a Win % smaller than 20 had what highest lost? ### Answer: SELECT MAX(lost) FROM table_name_83 WHERE matches = 15 AND win__percentage < 20 |
Nationality of england, and a Lost larger than 39, and a Win % of 28.7, and a Drawn smaller than 37 had what sum of matches? | CREATE TABLE table_name_1 (matches INTEGER, drawn VARCHAR, win__percentage VARCHAR, nationality VARCHAR, lost VARCHAR) | SELECT SUM(matches) FROM table_name_1 WHERE nationality = "england" AND lost > 39 AND win__percentage = 28.7 AND drawn < 37 | ### Context: CREATE TABLE table_name_1 (matches INTEGER, drawn VARCHAR, win__percentage VARCHAR, nationality VARCHAR, lost VARCHAR) ### Question: Nationality of england, and a Lost larger than 39, and a Win % of 28.7, and a Drawn smaller than 37 had what sum of matches? ### Answer: SELECT SUM(matches) FROM table_name_1 WHERE nationality = "england" AND lost > 39 AND win__percentage = 28.7 AND drawn < 37 |
Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches? | CREATE TABLE table_name_5 (matches VARCHAR, win__percentage VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT COUNT(matches) FROM table_name_5 WHERE drawn < 24 AND lost < 17 AND win__percentage < 31.25 | ### Context: CREATE TABLE table_name_5 (matches VARCHAR, win__percentage VARCHAR, drawn VARCHAR, lost VARCHAR) ### Question: Drawn smaller than 24, and a Lost smaller than 17, and a Win % smaller than 31.25 had how many total number of matches? ### Answer: SELECT COUNT(matches) FROM table_name_5 WHERE drawn < 24 AND lost < 17 AND win__percentage < 31.25 |
Lost of 18 had what sum of win %? | CREATE TABLE table_name_52 (win__percentage INTEGER, lost VARCHAR) | SELECT SUM(win__percentage) FROM table_name_52 WHERE lost = 18 | ### Context: CREATE TABLE table_name_52 (win__percentage INTEGER, lost VARCHAR) ### Question: Lost of 18 had what sum of win %? ### Answer: SELECT SUM(win__percentage) FROM table_name_52 WHERE lost = 18 |
When was the score 5-31? | CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_20 WHERE record = "5-31" | ### Context: CREATE TABLE table_name_20 (date VARCHAR, record VARCHAR) ### Question: When was the score 5-31? ### Answer: SELECT date FROM table_name_20 WHERE record = "5-31" |
What is the second leg that has kk bosna? | CREATE TABLE table_name_49 (team__number1 VARCHAR) | SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna" | ### Context: CREATE TABLE table_name_49 (team__number1 VARCHAR) ### Question: What is the second leg that has kk bosna? ### Answer: SELECT 2 AS nd_leg FROM table_name_49 WHERE team__number1 = "kk bosna" |
What is the 1st leg that has hapoel jerusalem? | CREATE TABLE table_name_75 (team__number1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_75 WHERE team__number1 = "hapoel jerusalem" | ### Context: CREATE TABLE table_name_75 (team__number1 VARCHAR) ### Question: What is the 1st leg that has hapoel jerusalem? ### Answer: SELECT 1 AS st_leg FROM table_name_75 WHERE team__number1 = "hapoel jerusalem" |
Which 1st leg that has hemofarm? | CREATE TABLE table_name_12 (team__number1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = "hemofarm" | ### Context: CREATE TABLE table_name_12 (team__number1 VARCHAR) ### Question: Which 1st leg that has hemofarm? ### Answer: SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = "hemofarm" |
Who averaged 201.3 yards passing per game? | CREATE TABLE table_name_6 (name VARCHAR, avg_g VARCHAR) | SELECT name FROM table_name_6 WHERE avg_g = 201.3 | ### Context: CREATE TABLE table_name_6 (name VARCHAR, avg_g VARCHAR) ### Question: Who averaged 201.3 yards passing per game? ### Answer: SELECT name FROM table_name_6 WHERE avg_g = 201.3 |
How many players had an Att-Cmp-Int of 143β269β16, and an efficiency of less than 116.9? | CREATE TABLE table_name_88 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR) | SELECT COUNT(avg_g) FROM table_name_88 WHERE att_cmp_int = "143β269β16" AND effic < 116.9 | ### Context: CREATE TABLE table_name_88 (avg_g VARCHAR, att_cmp_int VARCHAR, effic VARCHAR) ### Question: How many players had an Att-Cmp-Int of 143β269β16, and an efficiency of less than 116.9? ### Answer: SELECT COUNT(avg_g) FROM table_name_88 WHERE att_cmp_int = "143β269β16" AND effic < 116.9 |
What is the Att-Cmp-Int for the player with a efficiency of 117.4? | CREATE TABLE table_name_72 (att_cmp_int VARCHAR, effic VARCHAR) | SELECT att_cmp_int FROM table_name_72 WHERE effic = 117.4 | ### Context: CREATE TABLE table_name_72 (att_cmp_int VARCHAR, effic VARCHAR) ### Question: What is the Att-Cmp-Int for the player with a efficiency of 117.4? ### Answer: SELECT att_cmp_int FROM table_name_72 WHERE effic = 117.4 |
What is the total number of legs lost of the player with a high checkout less than 76 and less than 3 played? | CREATE TABLE table_name_1 (legs_lost VARCHAR, high_checkout VARCHAR, played VARCHAR) | SELECT COUNT(legs_lost) FROM table_name_1 WHERE high_checkout < 76 AND played < 3 | ### Context: CREATE TABLE table_name_1 (legs_lost VARCHAR, high_checkout VARCHAR, played VARCHAR) ### Question: What is the total number of legs lost of the player with a high checkout less than 76 and less than 3 played? ### Answer: SELECT COUNT(legs_lost) FROM table_name_1 WHERE high_checkout < 76 AND played < 3 |
What is the Ch1 in the region served by Central Tablelands? | CREATE TABLE table_name_73 (ch_1 VARCHAR, region_served VARCHAR) | SELECT ch_1 FROM table_name_73 WHERE region_served = "central tablelands" | ### Context: CREATE TABLE table_name_73 (ch_1 VARCHAR, region_served VARCHAR) ### Question: What is the Ch1 in the region served by Central Tablelands? ### Answer: SELECT ch_1 FROM table_name_73 WHERE region_served = "central tablelands" |
What transmitter location has digital power of 570kw? | CREATE TABLE table_name_62 (transmitter_location VARCHAR, digital_power VARCHAR) | SELECT transmitter_location FROM table_name_62 WHERE digital_power = "570kw" | ### Context: CREATE TABLE table_name_62 (transmitter_location VARCHAR, digital_power VARCHAR) ### Question: What transmitter location has digital power of 570kw? ### Answer: SELECT transmitter_location FROM table_name_62 WHERE digital_power = "570kw" |
What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points? | CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR) | SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22 | ### Context: CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCHAR) ### Question: What year did team Yamaha have 0 wins, a rank of 8th, and more than 22 points? ### Answer: SELECT COUNT(year) FROM table_name_96 WHERE team = "yamaha" AND wins = 0 AND rank = "8th" AND points > 22 |
Name the total number of rounds for gina carano | CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR) | SELECT COUNT(round) FROM table_name_6 WHERE opponent = "gina carano" | ### Context: CREATE TABLE table_name_6 (round VARCHAR, opponent VARCHAR) ### Question: Name the total number of rounds for gina carano ### Answer: SELECT COUNT(round) FROM table_name_6 WHERE opponent = "gina carano" |
What is the difference related to 2 losses and fewer than 10 points? | CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) | SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10 | ### Context: CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR) ### Question: What is the difference related to 2 losses and fewer than 10 points? ### Answer: SELECT points_difference FROM table_name_51 WHERE lost = 2 AND points < 10 |
Where did the game(s) against Iowa take place? | CREATE TABLE table_name_94 (site VARCHAR, opponent VARCHAR) | SELECT site FROM table_name_94 WHERE opponent = "iowa" | ### Context: CREATE TABLE table_name_94 (site VARCHAR, opponent VARCHAR) ### Question: Where did the game(s) against Iowa take place? ### Answer: SELECT site FROM table_name_94 WHERE opponent = "iowa" |
What is the Outcome of the Doubles played on Carpet? | CREATE TABLE table_name_35 (outcome VARCHAR, surface VARCHAR) | SELECT outcome FROM table_name_35 WHERE surface = "carpet" | ### Context: CREATE TABLE table_name_35 (outcome VARCHAR, surface VARCHAR) ### Question: What is the Outcome of the Doubles played on Carpet? ### Answer: SELECT outcome FROM table_name_35 WHERE surface = "carpet" |
What was the Surface during the match with Partner Debbie Graham? | CREATE TABLE table_name_26 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_26 WHERE partner = "debbie graham" | ### Context: CREATE TABLE table_name_26 (surface VARCHAR, partner VARCHAR) ### Question: What was the Surface during the match with Partner Debbie Graham? ### Answer: SELECT surface FROM table_name_26 WHERE partner = "debbie graham" |
What was the Partner on February 23, 1997? | CREATE TABLE table_name_91 (partner VARCHAR, date VARCHAR) | SELECT partner FROM table_name_91 WHERE date = "february 23, 1997" | ### Context: CREATE TABLE table_name_91 (partner VARCHAR, date VARCHAR) ### Question: What was the Partner on February 23, 1997? ### Answer: SELECT partner FROM table_name_91 WHERE date = "february 23, 1997" |
What was the Tournament on May 24, 1992 played on a Clay Surface? | CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, date VARCHAR) | SELECT tournament FROM table_name_64 WHERE surface = "clay" AND date = "may 24, 1992" | ### Context: CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, date VARCHAR) ### Question: What was the Tournament on May 24, 1992 played on a Clay Surface? ### Answer: SELECT tournament FROM table_name_64 WHERE surface = "clay" AND date = "may 24, 1992" |
What was the Surface in the match with a Score of 7β5, 6β7, 4β6? | CREATE TABLE table_name_40 (surface VARCHAR, score VARCHAR) | SELECT surface FROM table_name_40 WHERE score = "7β5, 6β7, 4β6" | ### Context: CREATE TABLE table_name_40 (surface VARCHAR, score VARCHAR) ### Question: What was the Surface in the match with a Score of 7β5, 6β7, 4β6? ### Answer: SELECT surface FROM table_name_40 WHERE score = "7β5, 6β7, 4β6" |
What is the frequency MHz in tremonton, utah with a ERP W larger than 30? | CREATE TABLE table_name_50 (frequency_mhz VARCHAR, erp_w VARCHAR, city_of_license VARCHAR) | SELECT frequency_mhz FROM table_name_50 WHERE erp_w > 30 AND city_of_license = "tremonton, utah" | ### Context: CREATE TABLE table_name_50 (frequency_mhz VARCHAR, erp_w VARCHAR, city_of_license VARCHAR) ### Question: What is the frequency MHz in tremonton, utah with a ERP W larger than 30? ### Answer: SELECT frequency_mhz FROM table_name_50 WHERE erp_w > 30 AND city_of_license = "tremonton, utah" |
What is k275av call sign's highest erp w? | CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR) | SELECT MAX(erp_w) FROM table_name_59 WHERE call_sign = "k275av" | ### Context: CREATE TABLE table_name_59 (erp_w INTEGER, call_sign VARCHAR) ### Question: What is k275av call sign's highest erp w? ### Answer: SELECT MAX(erp_w) FROM table_name_59 WHERE call_sign = "k275av" |
Name the year for american conference semifinals | CREATE TABLE table_name_96 (year VARCHAR, playoffs VARCHAR) | SELECT year FROM table_name_96 WHERE playoffs = "american conference semifinals" | ### Context: CREATE TABLE table_name_96 (year VARCHAR, playoffs VARCHAR) ### Question: Name the year for american conference semifinals ### Answer: SELECT year FROM table_name_96 WHERE playoffs = "american conference semifinals" |
Name the total number of years for quarterfinals | CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR) | SELECT COUNT(year) FROM table_name_35 WHERE playoffs = "quarterfinals" | ### Context: CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR) ### Question: Name the total number of years for quarterfinals ### Answer: SELECT COUNT(year) FROM table_name_35 WHERE playoffs = "quarterfinals" |
Who is the Runner-up that has a Season less than 2005? | CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER) | SELECT runner_up FROM table_name_54 WHERE season < 2005 | ### Context: CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER) ### Question: Who is the Runner-up that has a Season less than 2005? ### Answer: SELECT runner_up FROM table_name_54 WHERE season < 2005 |
Which Seasonhas a Score of 3 β 3 aet , 4β3 pen? | CREATE TABLE table_name_52 (season INTEGER, score VARCHAR) | SELECT MAX(season) FROM table_name_52 WHERE score = "3 β 3 aet , 4β3 pen" | ### Context: CREATE TABLE table_name_52 (season INTEGER, score VARCHAR) ### Question: Which Seasonhas a Score of 3 β 3 aet , 4β3 pen? ### Answer: SELECT MAX(season) FROM table_name_52 WHERE score = "3 β 3 aet , 4β3 pen" |
Which Season has a Score of 3 β 3 aet , 4β3 pen | CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR) | SELECT season FROM table_name_31 WHERE score = "3 β 3 aet , 4β3 pen" | ### Context: CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR) ### Question: Which Season has a Score of 3 β 3 aet , 4β3 pen ### Answer: SELECT season FROM table_name_31 WHERE score = "3 β 3 aet , 4β3 pen" |
How many rounds had an overall of 211? | CREATE TABLE table_name_24 (round VARCHAR, overall VARCHAR) | SELECT COUNT(round) FROM table_name_24 WHERE overall = 211 | ### Context: CREATE TABLE table_name_24 (round VARCHAR, overall VARCHAR) ### Question: How many rounds had an overall of 211? ### Answer: SELECT COUNT(round) FROM table_name_24 WHERE overall = 211 |
What is the mean pick number for the cornerback position when the overall is less than 134? | CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR) | SELECT AVG(pick__number) FROM table_name_60 WHERE position = "cornerback" AND overall < 134 | ### Context: CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall VARCHAR) ### Question: What is the mean pick number for the cornerback position when the overall is less than 134? ### Answer: SELECT AVG(pick__number) FROM table_name_60 WHERE position = "cornerback" AND overall < 134 |
Which 1956 has a County of vΓ’lcea, and a 2011 smaller than 371714? | CREATE TABLE table_name_40 (county VARCHAR) | SELECT SUM(1956) FROM table_name_40 WHERE county = "vΓ’lcea" AND 2011 < 371714 | ### Context: CREATE TABLE table_name_40 (county VARCHAR) ### Question: Which 1956 has a County of vΓ’lcea, and a 2011 smaller than 371714? ### Answer: SELECT SUM(1956) FROM table_name_40 WHERE county = "vΓ’lcea" AND 2011 < 371714 |
Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308? | CREATE TABLE table_name_81 (Id VARCHAR) | SELECT MIN(2011) FROM table_name_81 WHERE 1948 < 15872624 AND 1966 = 263103 AND 1992 > 266308 | ### Context: CREATE TABLE table_name_81 (Id VARCHAR) ### Question: Which 2011 is the lowest one that has a 1948 smaller than 15872624, and a 1966 of 263103, and a 1992 larger than 266308? ### Answer: SELECT MIN(2011) FROM table_name_81 WHERE 1948 < 15872624 AND 1966 = 263103 AND 1992 > 266308 |
Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524? | CREATE TABLE table_name_12 (Id VARCHAR) | SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524 | ### Context: CREATE TABLE table_name_12 (Id VARCHAR) ### Question: Which 1992 is the lowest one that has a 1977 smaller than 385577, and a 2011 larger than 340310, and a 2002 larger than 300123, and a 1948 larger than 280524? ### Answer: SELECT MIN(1992) FROM table_name_12 WHERE 1977 < 385577 AND 2011 > 340310 AND 2002 > 300123 AND 1948 > 280524 |
Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425? | CREATE TABLE table_name_23 (county VARCHAR) | SELECT MIN(1977) FROM table_name_23 WHERE county = "zzz bucharest" AND 2011 < 1883425 | ### Context: CREATE TABLE table_name_23 (county VARCHAR) ### Question: Which 1977 is the lowest one that has a County of zzz bucharest, and a 2011 smaller than 1883425? ### Answer: SELECT MIN(1977) FROM table_name_23 WHERE county = "zzz bucharest" AND 2011 < 1883425 |
What is the site of the game that had an attendance of 54,040? | CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR) | SELECT game_site FROM table_name_23 WHERE attendance = "54,040" | ### Context: CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR) ### Question: What is the site of the game that had an attendance of 54,040? ### Answer: SELECT game_site FROM table_name_23 WHERE attendance = "54,040" |
What is the attendance of the game against the houston oilers? | CREATE TABLE table_name_6 (attendance VARCHAR, opponent VARCHAR) | SELECT attendance FROM table_name_6 WHERE opponent = "houston oilers" | ### Context: CREATE TABLE table_name_6 (attendance VARCHAR, opponent VARCHAR) ### Question: What is the attendance of the game against the houston oilers? ### Answer: SELECT attendance FROM table_name_6 WHERE opponent = "houston oilers" |
What was the date of the game on week 7? | CREATE TABLE table_name_49 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_49 WHERE week = 7 | ### Context: CREATE TABLE table_name_49 (date VARCHAR, week VARCHAR) ### Question: What was the date of the game on week 7? ### Answer: SELECT date FROM table_name_49 WHERE week = 7 |
How many fans attended the game at Bye? | CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR) | SELECT attendance FROM table_name_53 WHERE game_site = "bye" | ### Context: CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR) ### Question: How many fans attended the game at Bye? ### Answer: SELECT attendance FROM table_name_53 WHERE game_site = "bye" |
Which winner had a location of Iowa? | CREATE TABLE table_name_12 (winner VARCHAR, location VARCHAR) | SELECT winner FROM table_name_12 WHERE location = "iowa" | ### Context: CREATE TABLE table_name_12 (winner VARCHAR, location VARCHAR) ### Question: Which winner had a location of Iowa? ### Answer: SELECT winner FROM table_name_12 WHERE location = "iowa" |
Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)? | CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR) | SELECT opponents_in_the_final FROM table_name_63 WHERE partner = "katarina srebotnik" AND championship = "wimbledon (4)" | ### Context: CREATE TABLE table_name_63 (opponents_in_the_final VARCHAR, partner VARCHAR, championship VARCHAR) ### Question: Which opponent in the final had a partner of Katarina Srebotnik and a championship of wimbledon (4)? ### Answer: SELECT opponents_in_the_final FROM table_name_63 WHERE partner = "katarina srebotnik" AND championship = "wimbledon (4)" |
Who was the partner when the championship was us open on a hard surface? | CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR) | SELECT partner FROM table_name_30 WHERE surface = "hard" AND championship = "us open" | ### Context: CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship VARCHAR) ### Question: Who was the partner when the championship was us open on a hard surface? ### Answer: SELECT partner FROM table_name_30 WHERE surface = "hard" AND championship = "us open" |
What was the surface for Julie Halard when the final score was 6β3, 6β2? | CREATE TABLE table_name_55 (surface VARCHAR, partner VARCHAR, score_in_the_final VARCHAR) | SELECT surface FROM table_name_55 WHERE partner = "julie halard" AND score_in_the_final = "6β3, 6β2" | ### Context: CREATE TABLE table_name_55 (surface VARCHAR, partner VARCHAR, score_in_the_final VARCHAR) ### Question: What was the surface for Julie Halard when the final score was 6β3, 6β2? ### Answer: SELECT surface FROM table_name_55 WHERE partner = "julie halard" AND score_in_the_final = "6β3, 6β2" |
What was the outcome when the oppenent was serena williams venus williams and had a hard surface? | CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR) | SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "serena williams venus williams" AND surface = "hard" | ### Context: CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR, surface VARCHAR) ### Question: What was the outcome when the oppenent was serena williams venus williams and had a hard surface? ### Answer: SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "serena williams venus williams" AND surface = "hard" |
How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10? | CREATE TABLE table_name_1 (played VARCHAR, points VARCHAR, drawn VARCHAR, position VARCHAR) | SELECT COUNT(played) FROM table_name_1 WHERE drawn = 2 AND position > 3 AND points < 10 | ### Context: CREATE TABLE table_name_1 (played VARCHAR, points VARCHAR, drawn VARCHAR, position VARCHAR) ### Question: How much Played has Drawn of 2, and a Position larger than 3, and Points smaller than 10? ### Answer: SELECT COUNT(played) FROM table_name_1 WHERE drawn = 2 AND position > 3 AND points < 10 |
Which average Against has a Difference of 10, and a Lost smaller than 2? | CREATE TABLE table_name_24 (against INTEGER, difference VARCHAR, lost VARCHAR) | SELECT AVG(against) FROM table_name_24 WHERE difference = "10" AND lost < 2 | ### Context: CREATE TABLE table_name_24 (against INTEGER, difference VARCHAR, lost VARCHAR) ### Question: Which average Against has a Difference of 10, and a Lost smaller than 2? ### Answer: SELECT AVG(against) FROM table_name_24 WHERE difference = "10" AND lost < 2 |
How many Attendances have a Result F β A of 0 β 2, and a Date of 31 january 1903? | CREATE TABLE table_name_71 (attendance INTEGER, result_f___a VARCHAR, date VARCHAR) | SELECT AVG(attendance) FROM table_name_71 WHERE result_f___a = "0 β 2" AND date = "31 january 1903" | ### Context: CREATE TABLE table_name_71 (attendance INTEGER, result_f___a VARCHAR, date VARCHAR) ### Question: How many Attendances have a Result F β A of 0 β 2, and a Date of 31 january 1903? ### Answer: SELECT AVG(attendance) FROM table_name_71 WHERE result_f___a = "0 β 2" AND date = "31 january 1903" |
How many Attendances on 13 april 1903? | CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_37 WHERE date = "13 april 1903" | ### Context: CREATE TABLE table_name_37 (attendance VARCHAR, date VARCHAR) ### Question: How many Attendances on 13 april 1903? ### Answer: SELECT attendance FROM table_name_37 WHERE date = "13 april 1903" |
How many Attendances have a H / A of h on 7 march 1903? | CREATE TABLE table_name_47 (attendance INTEGER, h___a VARCHAR, date VARCHAR) | SELECT MIN(attendance) FROM table_name_47 WHERE h___a = "h" AND date = "7 march 1903" | ### Context: CREATE TABLE table_name_47 (attendance INTEGER, h___a VARCHAR, date VARCHAR) ### Question: How many Attendances have a H / A of h on 7 march 1903? ### Answer: SELECT MIN(attendance) FROM table_name_47 WHERE h___a = "h" AND date = "7 march 1903" |
Which Opponent has a H / A of a, and a Result F β A of 2 β 0, and a Attendance larger than 30,000? | CREATE TABLE table_name_50 (opponents VARCHAR, attendance VARCHAR, h___a VARCHAR, result_f___a VARCHAR) | SELECT opponents FROM table_name_50 WHERE h___a = "a" AND result_f___a = "2 β 0" AND attendance > 30 OFFSET 000 | ### Context: CREATE TABLE table_name_50 (opponents VARCHAR, attendance VARCHAR, h___a VARCHAR, result_f___a VARCHAR) ### Question: Which Opponent has a H / A of a, and a Result F β A of 2 β 0, and a Attendance larger than 30,000? ### Answer: SELECT opponents FROM table_name_50 WHERE h___a = "a" AND result_f___a = "2 β 0" AND attendance > 30 OFFSET 000 |
When is The Opponents of lincoln city and a H / A of a? | CREATE TABLE table_name_31 (date VARCHAR, opponents VARCHAR, h___a VARCHAR) | SELECT date FROM table_name_31 WHERE opponents = "lincoln city" AND h___a = "a" | ### Context: CREATE TABLE table_name_31 (date VARCHAR, opponents VARCHAR, h___a VARCHAR) ### Question: When is The Opponents of lincoln city and a H / A of a? ### Answer: SELECT date FROM table_name_31 WHERE opponents = "lincoln city" AND h___a = "a" |
What is the score for the Dec 11 game? | CREATE TABLE table_name_83 (score VARCHAR, december VARCHAR) | SELECT score FROM table_name_83 WHERE december = 11 | ### Context: CREATE TABLE table_name_83 (score VARCHAR, december VARCHAR) ### Question: What is the score for the Dec 11 game? ### Answer: SELECT score FROM table_name_83 WHERE december = 11 |
Which game has an opponent of Phoenix Coyotes and was before Dec 9? | CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR, december VARCHAR) | SELECT AVG(game) FROM table_name_96 WHERE opponent = "phoenix coyotes" AND december < 9 | ### Context: CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR, december VARCHAR) ### Question: Which game has an opponent of Phoenix Coyotes and was before Dec 9? ### Answer: SELECT AVG(game) FROM table_name_96 WHERE opponent = "phoenix coyotes" AND december < 9 |
What is the December game that led to an 11-13-5 record? | CREATE TABLE table_name_9 (december INTEGER, record VARCHAR) | SELECT MAX(december) FROM table_name_9 WHERE record = "11-13-5" | ### Context: CREATE TABLE table_name_9 (december INTEGER, record VARCHAR) ### Question: What is the December game that led to an 11-13-5 record? ### Answer: SELECT MAX(december) FROM table_name_9 WHERE record = "11-13-5" |
What was the record after game 41? | CREATE TABLE table_name_1 (record VARCHAR, game VARCHAR) | SELECT record FROM table_name_1 WHERE game = 41 | ### Context: CREATE TABLE table_name_1 (record VARCHAR, game VARCHAR) ### Question: What was the record after game 41? ### Answer: SELECT record FROM table_name_1 WHERE game = 41 |
Which Overall has a College of florida state, and a Round larger than 2? | CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR) | SELECT SUM(overall) FROM table_name_76 WHERE college = "florida state" AND round > 2 | ### Context: CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round VARCHAR) ### Question: Which Overall has a College of florida state, and a Round larger than 2? ### Answer: SELECT SUM(overall) FROM table_name_76 WHERE college = "florida state" AND round > 2 |
How many Picks have a Position of kicker, and an Overall smaller than 137? | CREATE TABLE table_name_59 (pick__number INTEGER, position VARCHAR, overall VARCHAR) | SELECT SUM(pick__number) FROM table_name_59 WHERE position = "kicker" AND overall < 137 | ### Context: CREATE TABLE table_name_59 (pick__number INTEGER, position VARCHAR, overall VARCHAR) ### Question: How many Picks have a Position of kicker, and an Overall smaller than 137? ### Answer: SELECT SUM(pick__number) FROM table_name_59 WHERE position = "kicker" AND overall < 137 |
Which Position has a Pick # of 18? | CREATE TABLE table_name_99 (position VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_99 WHERE pick__number = 18 | ### Context: CREATE TABLE table_name_99 (position VARCHAR, pick__number VARCHAR) ### Question: Which Position has a Pick # of 18? ### Answer: SELECT position FROM table_name_99 WHERE pick__number = 18 |
Which College has a Round smaller than 7, and a Pick # smaller than 27, and a Name of anthony maddox? | CREATE TABLE table_name_37 (college VARCHAR, name VARCHAR, round VARCHAR, pick__number VARCHAR) | SELECT college FROM table_name_37 WHERE round < 7 AND pick__number < 27 AND name = "anthony maddox" | ### Context: CREATE TABLE table_name_37 (college VARCHAR, name VARCHAR, round VARCHAR, pick__number VARCHAR) ### Question: Which College has a Round smaller than 7, and a Pick # smaller than 27, and a Name of anthony maddox? ### Answer: SELECT college FROM table_name_37 WHERE round < 7 AND pick__number < 27 AND name = "anthony maddox" |
How much Overall has a Pick # larger than 9, and a Round larger than 5? | CREATE TABLE table_name_53 (overall VARCHAR, pick__number VARCHAR, round VARCHAR) | SELECT COUNT(overall) FROM table_name_53 WHERE pick__number > 9 AND round > 5 | ### Context: CREATE TABLE table_name_53 (overall VARCHAR, pick__number VARCHAR, round VARCHAR) ### Question: How much Overall has a Pick # larger than 9, and a Round larger than 5? ### Answer: SELECT COUNT(overall) FROM table_name_53 WHERE pick__number > 9 AND round > 5 |
Which score was for the Spurs as visitors with record of 35β16? | CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR) | SELECT score FROM table_name_60 WHERE visitor = "spurs" AND record = "35β16" | ### Context: CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR) ### Question: Which score was for the Spurs as visitors with record of 35β16? ### Answer: SELECT score FROM table_name_60 WHERE visitor = "spurs" AND record = "35β16" |
Which record was for Warriors at home? | CREATE TABLE table_name_67 (record VARCHAR, home VARCHAR) | SELECT record FROM table_name_67 WHERE home = "warriors" | ### Context: CREATE TABLE table_name_67 (record VARCHAR, home VARCHAR) ### Question: Which record was for Warriors at home? ### Answer: SELECT record FROM table_name_67 WHERE home = "warriors" |
English title of malèna had what original title? | CREATE TABLE table_name_9 (original_title VARCHAR, english_title VARCHAR) | SELECT original_title FROM table_name_9 WHERE english_title = "malèna" | ### Context: CREATE TABLE table_name_9 (original_title VARCHAR, english_title VARCHAR) ### Question: English title of malèna had what original title? ### Answer: SELECT original_title FROM table_name_9 WHERE english_title = "malèna" |
Original title of Π²ΠΎΠ·Π²ΡΠ°ΡΠ΅Π½ΠΈΠ΅ / vozvrashcheniye had what English title? | CREATE TABLE table_name_79 (english_title VARCHAR, original_title VARCHAR) | SELECT english_title FROM table_name_79 WHERE original_title = "Π²ΠΎΠ·Π²ΡΠ°ΡΠ΅Π½ΠΈΠ΅ / vozvrashcheniye" | ### Context: CREATE TABLE table_name_79 (english_title VARCHAR, original_title VARCHAR) ### Question: Original title of Π²ΠΎΠ·Π²ΡΠ°ΡΠ΅Π½ΠΈΠ΅ / vozvrashcheniye had what English title? ### Answer: SELECT english_title FROM table_name_79 WHERE original_title = "Π²ΠΎΠ·Π²ΡΠ°ΡΠ΅Π½ΠΈΠ΅ / vozvrashcheniye" |
Director of christophe barratier had what highest year? | CREATE TABLE table_name_3 (year INTEGER, director VARCHAR) | SELECT MAX(year) FROM table_name_3 WHERE director = "christophe barratier" | ### Context: CREATE TABLE table_name_3 (year INTEGER, director VARCHAR) ### Question: Director of christophe barratier had what highest year? ### Answer: SELECT MAX(year) FROM table_name_3 WHERE director = "christophe barratier" |
English title of amΓ©lie had what year? | CREATE TABLE table_name_87 (year VARCHAR, english_title VARCHAR) | SELECT year FROM table_name_87 WHERE english_title = "amΓ©lie" | ### Context: CREATE TABLE table_name_87 (year VARCHAR, english_title VARCHAR) ### Question: English title of amΓ©lie had what year? ### Answer: SELECT year FROM table_name_87 WHERE english_title = "amΓ©lie" |
Original title of das leben der anderen had what director? | CREATE TABLE table_name_28 (director VARCHAR, original_title VARCHAR) | SELECT director FROM table_name_28 WHERE original_title = "das leben der anderen" | ### Context: CREATE TABLE table_name_28 (director VARCHAR, original_title VARCHAR) ### Question: Original title of das leben der anderen had what director? ### Answer: SELECT director FROM table_name_28 WHERE original_title = "das leben der anderen" |
Who was the director where the role was Fred Ayres? | CREATE TABLE table_name_13 (director VARCHAR, role VARCHAR) | SELECT director FROM table_name_13 WHERE role = "fred ayres" | ### Context: CREATE TABLE table_name_13 (director VARCHAR, role VARCHAR) ### Question: Who was the director where the role was Fred Ayres? ### Answer: SELECT director FROM table_name_13 WHERE role = "fred ayres" |
What was the theatre where Peter P. Peters is the role? | CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR) | SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = "peter p. peters" | ### Context: CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role VARCHAR) ### Question: What was the theatre where Peter P. Peters is the role? ### Answer: SELECT theatre, _studio, _or_network FROM table_name_8 WHERE role = "peter p. peters" |
Who are the Runner(s)-up with a Margin of 1 stroke? | CREATE TABLE table_name_12 (runner_s__up VARCHAR, margin VARCHAR) | SELECT runner_s__up FROM table_name_12 WHERE margin = "1 stroke" | ### Context: CREATE TABLE table_name_12 (runner_s__up VARCHAR, margin VARCHAR) ### Question: Who are the Runner(s)-up with a Margin of 1 stroke? ### Answer: SELECT runner_s__up FROM table_name_12 WHERE margin = "1 stroke" |
Who are the Runner(s)-up with a Margin of 3 strokes? | CREATE TABLE table_name_49 (runner_s__up VARCHAR, margin VARCHAR) | SELECT runner_s__up FROM table_name_49 WHERE margin = "3 strokes" | ### Context: CREATE TABLE table_name_49 (runner_s__up VARCHAR, margin VARCHAR) ### Question: Who are the Runner(s)-up with a Margin of 3 strokes? ### Answer: SELECT runner_s__up FROM table_name_49 WHERE margin = "3 strokes" |
What is the highest Year with of the open championship? | CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR) | SELECT MAX(year) FROM table_name_14 WHERE championship = "the open championship" | ### Context: CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR) ### Question: What is the highest Year with of the open championship? ### Answer: SELECT MAX(year) FROM table_name_14 WHERE championship = "the open championship" |
What is the Winning score in 1956? | CREATE TABLE table_name_57 (winning_score VARCHAR, year VARCHAR) | SELECT winning_score FROM table_name_57 WHERE year = 1956 | ### Context: CREATE TABLE table_name_57 (winning_score VARCHAR, year VARCHAR) ### Question: What is the Winning score in 1956? ### Answer: SELECT winning_score FROM table_name_57 WHERE year = 1956 |
What is the Winning score in 1965? | CREATE TABLE table_name_90 (winning_score VARCHAR, year VARCHAR) | SELECT winning_score FROM table_name_90 WHERE year = 1965 | ### Context: CREATE TABLE table_name_90 (winning_score VARCHAR, year VARCHAR) ### Question: What is the Winning score in 1965? ### Answer: SELECT winning_score FROM table_name_90 WHERE year = 1965 |
What Year had a Runner(s)-up of flory van donck? | CREATE TABLE table_name_64 (year VARCHAR, runner_s__up VARCHAR) | SELECT year FROM table_name_64 WHERE runner_s__up = "flory van donck" | ### Context: CREATE TABLE table_name_64 (year VARCHAR, runner_s__up VARCHAR) ### Question: What Year had a Runner(s)-up of flory van donck? ### Answer: SELECT year FROM table_name_64 WHERE runner_s__up = "flory van donck" |
What is the release Date for the Region in New Zealand ? | CREATE TABLE table_name_72 (date VARCHAR, region VARCHAR) | SELECT date FROM table_name_72 WHERE region = "new zealand" | ### Context: CREATE TABLE table_name_72 (date VARCHAR, region VARCHAR) ### Question: What is the release Date for the Region in New Zealand ? ### Answer: SELECT date FROM table_name_72 WHERE region = "new zealand" |
What is the release Date for the New Zealand Region? | CREATE TABLE table_name_16 (date VARCHAR, region VARCHAR) | SELECT date FROM table_name_16 WHERE region = "new zealand" | ### Context: CREATE TABLE table_name_16 (date VARCHAR, region VARCHAR) ### Question: What is the release Date for the New Zealand Region? ### Answer: SELECT date FROM table_name_16 WHERE region = "new zealand" |
What is the Date of Catalogue number 602517739468? | CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR) | SELECT date FROM table_name_90 WHERE catalogue = "602517739468" | ### Context: CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR) ### Question: What is the Date of Catalogue number 602517739468? ### Answer: SELECT date FROM table_name_90 WHERE catalogue = "602517739468" |
In what Region was the Catalogue number 1785089 released? | CREATE TABLE table_name_16 (region VARCHAR, catalogue VARCHAR) | SELECT region FROM table_name_16 WHERE catalogue = "1785089" | ### Context: CREATE TABLE table_name_16 (region VARCHAR, catalogue VARCHAR) ### Question: In what Region was the Catalogue number 1785089 released? ### Answer: SELECT region FROM table_name_16 WHERE catalogue = "1785089" |
Which city of license has a frequency less than 100.1? | CREATE TABLE table_name_5 (city_of_license VARCHAR, frequency_mhz INTEGER) | SELECT city_of_license FROM table_name_5 WHERE frequency_mhz < 100.1 | ### Context: CREATE TABLE table_name_5 (city_of_license VARCHAR, frequency_mhz INTEGER) ### Question: Which city of license has a frequency less than 100.1? ### Answer: SELECT city_of_license FROM table_name_5 WHERE frequency_mhz < 100.1 |
What is the ERP W with a call sign at w261cq? | CREATE TABLE table_name_19 (erp_w VARCHAR, call_sign VARCHAR) | SELECT erp_w FROM table_name_19 WHERE call_sign = "w261cq" | ### Context: CREATE TABLE table_name_19 (erp_w VARCHAR, call_sign VARCHAR) ### Question: What is the ERP W with a call sign at w261cq? ### Answer: SELECT erp_w FROM table_name_19 WHERE call_sign = "w261cq" |
What is the average value for ERP W when frequency is more than 100.1? | CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER) | SELECT AVG(erp_w) FROM table_name_6 WHERE frequency_mhz > 100.1 | ### Context: CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER) ### Question: What is the average value for ERP W when frequency is more than 100.1? ### Answer: SELECT AVG(erp_w) FROM table_name_6 WHERE frequency_mhz > 100.1 |
What frequency has call sign w228bg? | CREATE TABLE table_name_45 (frequency_mhz VARCHAR, call_sign VARCHAR) | SELECT frequency_mhz FROM table_name_45 WHERE call_sign = "w228bg" | ### Context: CREATE TABLE table_name_45 (frequency_mhz VARCHAR, call_sign VARCHAR) ### Question: What frequency has call sign w228bg? ### Answer: SELECT frequency_mhz FROM table_name_45 WHERE call_sign = "w228bg" |
What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5? | CREATE TABLE table_name_70 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR) | SELECT AVG(erp_w) FROM table_name_70 WHERE city_of_license = "beardstown, illinois" AND frequency_mhz > 93.5 | ### Context: CREATE TABLE table_name_70 (erp_w INTEGER, city_of_license VARCHAR, frequency_mhz VARCHAR) ### Question: What is the average value of ERP W in Beardstown, Illinois for a frequency greater than 93.5? ### Answer: SELECT AVG(erp_w) FROM table_name_70 WHERE city_of_license = "beardstown, illinois" AND frequency_mhz > 93.5 |
What was the winning score in 2000? | CREATE TABLE table_name_30 (score VARCHAR, year VARCHAR) | SELECT score FROM table_name_30 WHERE year = 2000 | ### Context: CREATE TABLE table_name_30 (score VARCHAR, year VARCHAR) ### Question: What was the winning score in 2000? ### Answer: SELECT score FROM table_name_30 WHERE year = 2000 |
Name the weekly rank for sunday, june 14, 2009 | CREATE TABLE table_name_43 (weekly_rank VARCHAR, airdate VARCHAR) | SELECT weekly_rank FROM table_name_43 WHERE airdate = "sunday, june 14, 2009" | ### Context: CREATE TABLE table_name_43 (weekly_rank VARCHAR, airdate VARCHAR) ### Question: Name the weekly rank for sunday, june 14, 2009 ### Answer: SELECT weekly_rank FROM table_name_43 WHERE airdate = "sunday, june 14, 2009" |
Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6? | CREATE TABLE table_name_25 (pick__number INTEGER, overall VARCHAR, round VARCHAR) | SELECT MAX(pick__number) FROM table_name_25 WHERE overall = 184 AND round > 6 | ### Context: CREATE TABLE table_name_25 (pick__number INTEGER, overall VARCHAR, round VARCHAR) ### Question: Which Pick # is the highest one that has an Overall of 184, and a Round larger than 6? ### Answer: SELECT MAX(pick__number) FROM table_name_25 WHERE overall = 184 AND round > 6 |
How many picks have an Overall of 114? | CREATE TABLE table_name_75 (pick__number VARCHAR, overall VARCHAR) | SELECT COUNT(pick__number) FROM table_name_75 WHERE overall = 114 | ### Context: CREATE TABLE table_name_75 (pick__number VARCHAR, overall VARCHAR) ### Question: How many picks have an Overall of 114? ### Answer: SELECT COUNT(pick__number) FROM table_name_75 WHERE overall = 114 |
Which Overall is the highest one that has a Name of daimon shelton, and a Round larger than 6? | CREATE TABLE table_name_26 (overall INTEGER, name VARCHAR, round VARCHAR) | SELECT MAX(overall) FROM table_name_26 WHERE name = "daimon shelton" AND round > 6 | ### Context: CREATE TABLE table_name_26 (overall INTEGER, name VARCHAR, round VARCHAR) ### Question: Which Overall is the highest one that has a Name of daimon shelton, and a Round larger than 6? ### Answer: SELECT MAX(overall) FROM table_name_26 WHERE name = "daimon shelton" AND round > 6 |
Which Pick # is the highest one that has an Overall larger than 21, and a College of north carolina, and a Round smaller than 3? | CREATE TABLE table_name_14 (pick__number INTEGER, round VARCHAR, overall VARCHAR, college VARCHAR) | SELECT MAX(pick__number) FROM table_name_14 WHERE overall > 21 AND college = "north carolina" AND round < 3 | ### Context: CREATE TABLE table_name_14 (pick__number INTEGER, round VARCHAR, overall VARCHAR, college VARCHAR) ### Question: Which Pick # is the highest one that has an Overall larger than 21, and a College of north carolina, and a Round smaller than 3? ### Answer: SELECT MAX(pick__number) FROM table_name_14 WHERE overall > 21 AND college = "north carolina" AND round < 3 |
Which Position has an Overall larger than 147, and a Pick # of 21? | CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, pick__number VARCHAR) | SELECT position FROM table_name_45 WHERE overall > 147 AND pick__number = 21 | ### Context: CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, pick__number VARCHAR) ### Question: Which Position has an Overall larger than 147, and a Pick # of 21? ### Answer: SELECT position FROM table_name_45 WHERE overall > 147 AND pick__number = 21 |
What is cornell's lowest pick number? | CREATE TABLE table_name_13 (pick__number INTEGER, college VARCHAR) | SELECT MIN(pick__number) FROM table_name_13 WHERE college = "cornell" | ### Context: CREATE TABLE table_name_13 (pick__number INTEGER, college VARCHAR) ### Question: What is cornell's lowest pick number? ### Answer: SELECT MIN(pick__number) FROM table_name_13 WHERE college = "cornell" |
Which Eviction result has a Net vote of 31.86%? | CREATE TABLE table_name_10 (eviction_result VARCHAR, net_vote VARCHAR) | SELECT eviction_result FROM table_name_10 WHERE net_vote = "31.86%" | ### Context: CREATE TABLE table_name_10 (eviction_result VARCHAR, net_vote VARCHAR) ### Question: Which Eviction result has a Net vote of 31.86%? ### Answer: SELECT eviction_result FROM table_name_10 WHERE net_vote = "31.86%" |
Which Nominee has a Vote to Save of 1.98%? | CREATE TABLE table_name_36 (nominee VARCHAR, vote_to_save VARCHAR) | SELECT nominee FROM table_name_36 WHERE vote_to_save = "1.98%" | ### Context: CREATE TABLE table_name_36 (nominee VARCHAR, vote_to_save VARCHAR) ### Question: Which Nominee has a Vote to Save of 1.98%? ### Answer: SELECT nominee FROM table_name_36 WHERE vote_to_save = "1.98%" |
Which Vote to Evict has a Vote to Save of 21.22%? | CREATE TABLE table_name_27 (vote_to_evict VARCHAR, vote_to_save VARCHAR) | SELECT vote_to_evict FROM table_name_27 WHERE vote_to_save = "21.22%" | ### Context: CREATE TABLE table_name_27 (vote_to_evict VARCHAR, vote_to_save VARCHAR) ### Question: Which Vote to Evict has a Vote to Save of 21.22%? ### Answer: SELECT vote_to_evict FROM table_name_27 WHERE vote_to_save = "21.22%" |
Which Vote to Save has an Eviction # smaller than 14, and a Vote to Evict of 5.42%? | CREATE TABLE table_name_3 (vote_to_save VARCHAR, eviction_no VARCHAR, vote_to_evict VARCHAR) | SELECT vote_to_save FROM table_name_3 WHERE eviction_no < 14 AND vote_to_evict = "5.42%" | ### Context: CREATE TABLE table_name_3 (vote_to_save VARCHAR, eviction_no VARCHAR, vote_to_evict VARCHAR) ### Question: Which Vote to Save has an Eviction # smaller than 14, and a Vote to Evict of 5.42%? ### Answer: SELECT vote_to_save FROM table_name_3 WHERE eviction_no < 14 AND vote_to_evict = "5.42%" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.