text
stringlengths
114
1.06k
### question: Which Date has a Partner of daniella dominikovic? ### answer: SELECT date FROM table_name_66 WHERE partner = "daniella dominikovic" ### context: CREATE TABLE table_name_66 (date VARCHAR, partner 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 ### context: CREATE TABLE table_name_5 (draw...
### 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 ### context: CREATE TABLE table_name_47 (lost INTEGER, win__percentage VARCHAR, matches 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 ### context: CREATE TABLE table_name_83 (lost INTEGER, matches VARCHAR, win__percentage 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 ### context: CREATE TABLE table_name_1 (match...
### 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 ### context: CREATE TABLE table_name_5 (matches VARCHAR, win__percentage VA...
### question: Lost of 18 had what sum of win %? ### answer: SELECT SUM(win__percentage) FROM table_name_52 WHERE lost = 18 ### context: CREATE TABLE table_name_52 (win__percentage INTEGER, lost VARCHAR)
### question: When was the score 5-31? ### answer: SELECT date FROM table_name_20 WHERE record = "5-31" ### context: CREATE TABLE table_name_20 (date VARCHAR, record 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" ### context: CREATE TABLE table_name_49 (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" ### context: CREATE TABLE table_name_75 (team__number1 VARCHAR)
### question: Which 1st leg that has hemofarm? ### answer: SELECT 1 AS st_leg FROM table_name_12 WHERE team__number1 = "hemofarm" ### context: CREATE TABLE table_name_12 (team__number1 VARCHAR)
### question: Who averaged 201.3 yards passing per game? ### answer: SELECT name FROM table_name_6 WHERE avg_g = 201.3 ### context: CREATE TABLE table_name_6 (name VARCHAR, avg_g 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 ### context: CREATE TABLE table_name_88 (avg_g VARCHAR, 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 ### context: CREATE TABLE table_name_72 (att_cmp_int VARCHAR, effic 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 ### context: CREATE TABLE table_name_1 (legs_lost VARCHAR, high_checkout VARCHAR, played 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" ### context: CREATE TABLE table_name_73 (ch_1 VARCHAR, region_served VARCHAR)
### question: What transmitter location has digital power of 570kw? ### answer: 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 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 ### context: CREATE TABLE table_name_96 (year VARCHAR, points VARCHAR, rank VARCHAR, team VARCHAR, wins VARCH...
### question: Name the total number of rounds for gina carano ### answer: SELECT COUNT(round) FROM table_name_6 WHERE opponent = "gina carano" ### context: CREATE TABLE table_name_6 (round VARCHAR, opponent 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 ### context: CREATE TABLE table_name_51 (points_difference VARCHAR, lost VARCHAR, points VARCHAR)
### question: Where did the game(s) against Iowa take place? ### answer: SELECT site FROM table_name_94 WHERE opponent = "iowa" ### context: CREATE TABLE table_name_94 (site VARCHAR, opponent VARCHAR)
### question: What is the Outcome of the Doubles played on Carpet? ### answer: SELECT outcome FROM table_name_35 WHERE surface = "carpet" ### context: CREATE TABLE table_name_35 (outcome VARCHAR, surface VARCHAR)
### question: What was the Surface during the match with Partner Debbie Graham? ### answer: SELECT surface FROM table_name_26 WHERE partner = "debbie graham" ### context: CREATE TABLE table_name_26 (surface VARCHAR, partner VARCHAR)
### question: What was the Partner on February 23, 1997? ### answer: 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 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" ### context: CREATE TABLE table_name_64 (tournament VARCHAR, surface VARCHAR, date 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" ### context: CREATE TABLE table_name_40 (surface VARCHAR, score 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" ### context: CREATE TABLE table_name_50 (frequency_mhz VARCHAR, erp_w VARCHAR, city_of_license VARCHAR)
### question: What is k275av call sign's highest erp w? ### answer: 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: Name the year for american conference semifinals ### answer: SELECT year FROM table_name_96 WHERE playoffs = "american conference semifinals" ### context: CREATE TABLE table_name_96 (year VARCHAR, playoffs VARCHAR)
### question: Name the total number of years for quarterfinals ### answer: SELECT COUNT(year) FROM table_name_35 WHERE playoffs = "quarterfinals" ### context: CREATE TABLE table_name_35 (year VARCHAR, playoffs VARCHAR)
### question: Who is the Runner-up that has a Season less than 2005? ### answer: SELECT runner_up FROM table_name_54 WHERE season < 2005 ### context: CREATE TABLE table_name_54 (runner_up VARCHAR, season INTEGER)
### 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" ### context: CREATE TABLE table_name_52 (season INTEGER, 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" ### context: CREATE TABLE table_name_31 (season VARCHAR, score VARCHAR)
### question: How many rounds had an overall of 211? ### answer: SELECT COUNT(round) FROM table_name_24 WHERE overall = 211 ### context: CREATE TABLE table_name_24 (round 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 ### context: CREATE TABLE table_name_60 (pick__number INTEGER, position VARCHAR, overall 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 ### context: CREATE TABLE table_name_40 (county 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 ### context: CREATE TABLE table_name_81 (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 ### context: CREATE TABLE...
### 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 ### context: CREATE TABLE table_name_23 (county 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" ### context: CREATE TABLE table_name_23 (game_site VARCHAR, attendance VARCHAR)
### question: What is the attendance of the game against the houston oilers? ### answer: SELECT attendance FROM table_name_6 WHERE opponent = "houston oilers" ### context: CREATE TABLE table_name_6 (attendance VARCHAR, opponent VARCHAR)
### question: What was the date of the game on week 7? ### answer: SELECT date FROM table_name_49 WHERE week = 7 ### context: CREATE TABLE table_name_49 (date VARCHAR, week VARCHAR)
### question: How many fans attended the game at Bye? ### answer: SELECT attendance FROM table_name_53 WHERE game_site = "bye" ### context: CREATE TABLE table_name_53 (attendance VARCHAR, game_site VARCHAR)
### question: Which winner had a location of Iowa? ### answer: SELECT winner FROM table_name_12 WHERE location = "iowa" ### context: CREATE TABLE table_name_12 (winner VARCHAR, location 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)" ### context: CREATE TABLE table_name_63 (opponents_in_the_final 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" ### context: CREATE TABLE table_name_30 (partner VARCHAR, surface VARCHAR, championship 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" ### context: CREATE TABLE table_name_55 (surface VARCHAR, partner VARCHAR, score_in_the_final 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" ### context: CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_fi...
### 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 ### context: CREATE TABLE table_name_1 (played VARCHAR, points VARCHAR, drawn VARCHAR, position 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 ### context: CREATE TABLE table_name_24 (against INTEGER, difference VARCHAR, lost 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" ### context: CREATE TABLE table_name_71 (attendance INTEGER, result_f___a VARCHAR, date VARCHAR)
### question: How many Attendances on 13 april 1903? ### answer: 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 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" ### context: CREATE TABLE table_name_47 (attendance INTEGER, h___a VARCHAR, date 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 ### context: CREATE TABLE table_name_50 (opponents VARCHAR, attendance VARCHAR, h__...
### 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" ### context: CREATE TABLE table_name_31 (date VARCHAR, opponents VARCHAR, h___a VARCHAR)
### question: What is the score for the Dec 11 game? ### answer: SELECT score FROM table_name_83 WHERE december = 11 ### context: CREATE TABLE table_name_83 (score 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 ### context: CREATE TABLE table_name_96 (game INTEGER, opponent VARCHAR, december 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" ### context: CREATE TABLE table_name_9 (december INTEGER, record VARCHAR)
### question: What was the record after game 41? ### answer: SELECT record FROM table_name_1 WHERE game = 41 ### context: CREATE TABLE table_name_1 (record VARCHAR, game 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 ### context: CREATE TABLE table_name_76 (overall INTEGER, college VARCHAR, round 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 ### context: CREATE TABLE table_name_59 (pick__number INTEGER, position VARCHAR, overall VARCHAR)
### question: Which Position has a Pick # of 18? ### answer: SELECT position FROM table_name_99 WHERE pick__number = 18 ### context: CREATE TABLE table_name_99 (position 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" ### context: CREATE TABLE table_name_37 (college VARCHAR, name VARCHAR, round VARCHAR, pick_...
### 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 ### context: CREATE TABLE table_name_53 (overall VARCHAR, pick__number VARCHAR, round 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" ### context: CREATE TABLE table_name_60 (score VARCHAR, visitor VARCHAR, record VARCHAR)
### question: Which record was for Warriors at home? ### answer: SELECT record FROM table_name_67 WHERE home = "warriors" ### context: CREATE TABLE table_name_67 (record VARCHAR, home VARCHAR)
### question: English title of malèna had what original title? ### answer: 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: Original title of возвращение / vozvrashcheniye had what English title? ### answer: SELECT english_title FROM table_name_79 WHERE original_title = "возвращение / vozvrashcheniye" ### context: CREATE TABLE table_name_79 (english_title VARCHAR, original_title VARCHAR)
### question: Director of christophe barratier had what highest year? ### answer: SELECT MAX(year) FROM table_name_3 WHERE director = "christophe barratier" ### context: CREATE TABLE table_name_3 (year INTEGER, director VARCHAR)
### question: English title of amélie had what year? ### answer: SELECT year FROM table_name_87 WHERE english_title = "amélie" ### context: CREATE TABLE table_name_87 (year VARCHAR, english_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" ### context: CREATE TABLE table_name_28 (director VARCHAR, original_title VARCHAR)
### question: Who was the director where the role was Fred Ayres? ### answer: SELECT director FROM table_name_13 WHERE role = "fred ayres" ### context: CREATE TABLE table_name_13 (director 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" ### context: CREATE TABLE table_name_8 (theatre VARCHAR, _studio VARCHAR, _or_network VARCHAR, role 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" ### context: CREATE TABLE table_name_12 (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" ### context: CREATE TABLE table_name_49 (runner_s__up VARCHAR, margin 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" ### context: CREATE TABLE table_name_14 (year INTEGER, championship VARCHAR)
### question: What is the Winning score in 1956? ### answer: 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 1965? ### answer: SELECT winning_score FROM table_name_90 WHERE year = 1965 ### context: CREATE TABLE table_name_90 (winning_score VARCHAR, year 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" ### context: CREATE TABLE table_name_64 (year VARCHAR, runner_s__up VARCHAR)
### question: What is the release Date for the Region in New Zealand ? ### answer: 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 New Zealand Region? ### answer: SELECT date FROM table_name_16 WHERE region = "new zealand" ### context: CREATE TABLE table_name_16 (date VARCHAR, region VARCHAR)
### question: What is the Date of Catalogue number 602517739468? ### answer: SELECT date FROM table_name_90 WHERE catalogue = "602517739468" ### context: CREATE TABLE table_name_90 (date VARCHAR, catalogue VARCHAR)
### question: In what Region was the Catalogue number 1785089 released? ### answer: SELECT region FROM table_name_16 WHERE catalogue = "1785089" ### context: CREATE TABLE table_name_16 (region VARCHAR, catalogue VARCHAR)
### 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 ### context: CREATE TABLE table_name_5 (city_of_license VARCHAR, frequency_mhz INTEGER)
### question: What is the ERP W with a call sign at w261cq? ### answer: 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 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 ### context: CREATE TABLE table_name_6 (erp_w INTEGER, frequency_mhz INTEGER)
### question: What frequency has call sign w228bg? ### answer: 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 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 ### context: CREATE TABLE table_name_70 (erp_w INTEGER, city_of_license VARCHAR, frequency_...
### question: What was the winning score in 2000? ### answer: SELECT score FROM table_name_30 WHERE year = 2000 ### context: CREATE TABLE table_name_30 (score VARCHAR, year 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" ### context: CREATE TABLE table_name_43 (weekly_rank VARCHAR, airdate 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 ### context: CREATE TABLE table_name_25 (pick__number INTEGER, overall VARCHAR, round VARCHAR)
### question: How many picks have an Overall of 114? ### answer: SELECT COUNT(pick__number) FROM table_name_75 WHERE overall = 114 ### context: CREATE TABLE table_name_75 (pick__number VARCHAR, overall 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 ### context: CREATE TABLE table_name_26 (overall INTEGER, name VARCHAR, round 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 ### context: CREATE TABLE table_name_14 (pick__number INT...
### 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 ### context: CREATE TABLE table_name_45 (position VARCHAR, overall VARCHAR, pick__number VARCHAR)
### question: What is cornell's lowest pick number? ### answer: SELECT MIN(pick__number) FROM table_name_13 WHERE college = "cornell" ### context: CREATE TABLE table_name_13 (pick__number INTEGER, college 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%" ### context: CREATE TABLE table_name_10 (eviction_result VARCHAR, net_vote 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%" ### context: CREATE TABLE table_name_36 (nominee 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%" ### context: CREATE TABLE table_name_27 (vote_to_evict VARCHAR, vote_to_save 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%" ### context: CREATE TABLE table_name_3 (vote_to_save VARCHAR, eviction_no VARCHAR, vote_to_evict VARCHAR)