text
stringlengths
114
1.06k
### question: Which Visitor has a Series of 2 – 1? ### answer: SELECT visitor FROM table_name_15 WHERE series = "2 – 1" ### context: CREATE TABLE table_name_15 (visitor VARCHAR, series VARCHAR)
### question: Which Visitor has a Home of calgary, and a Date of april 17? ### answer: SELECT visitor FROM table_name_72 WHERE home = "calgary" AND date = "april 17" ### context: CREATE TABLE table_name_72 (visitor VARCHAR, home VARCHAR, date VARCHAR)
### question: Which Decision has a Visitor of vancouver, and a Score of 5 – 4? ### answer: SELECT decision FROM table_name_4 WHERE visitor = "vancouver" AND score = "5 – 4" ### context: CREATE TABLE table_name_4 (decision VARCHAR, visitor VARCHAR, score VARCHAR)
### question: Which Visitor has a Home of vancouver, and a Decision of cloutier? ### answer: SELECT visitor FROM table_name_30 WHERE home = "vancouver" AND decision = "cloutier" ### context: CREATE TABLE table_name_30 (visitor VARCHAR, home VARCHAR, decision VARCHAR)
### question: Which Decision has a Series of 3 – 3? ### answer: SELECT decision FROM table_name_42 WHERE series = "3 – 3" ### context: CREATE TABLE table_name_42 (decision VARCHAR, series VARCHAR)
### question: What's the value for race 4 when race 1 is dsq? ### answer: SELECT race_4 FROM table_name_76 WHERE race_1 = "dsq" ### context: CREATE TABLE table_name_76 (race_4 VARCHAR, race_1 VARCHAR)
### question: What's the value for race 4 when race 3 is dns and race 2 is 27? ### answer: SELECT race_4 FROM table_name_55 WHERE race_3 = "dns" AND race_2 = "27" ### context: CREATE TABLE table_name_55 (race_4 VARCHAR, race_3 VARCHAR, race_2 VARCHAR)
### question: What's the value for race 4 for driver kevin heffernan? ### answer: SELECT race_4 FROM table_name_61 WHERE driver = "kevin heffernan" ### context: CREATE TABLE table_name_61 (race_4 VARCHAR, driver VARCHAR)
### question: What was the date of game 4? ### answer: SELECT date FROM table_name_92 WHERE game = 4 ### context: CREATE TABLE table_name_92 (date VARCHAR, game VARCHAR)
### question: Who had the most points in the game on November 12? ### answer: SELECT high_points FROM table_name_86 WHERE date = "november 12" ### context: CREATE TABLE table_name_86 (high_points VARCHAR, date VARCHAR)
### question: What rank is the team that has a player named Isco Alarcón? ### answer: SELECT rank FROM table_name_34 WHERE player = "isco alarcón" ### context: CREATE TABLE table_name_34 (rank VARCHAR, player VARCHAR)
### question: What is the rank of Club Valencia with a U-17 Caps of 20? ### answer: SELECT COUNT(rank) FROM table_name_17 WHERE club_s_ = "valencia" AND u_17_caps = 20 ### context: CREATE TABLE table_name_17 (rank VARCHAR, club_s_ VARCHAR, u_17_caps VARCHAR)
### question: What is High Assists, when High Points is "T. J. Ford (29)"? ### answer: SELECT high_assists FROM table_name_76 WHERE high_points = "t. j. ford (29)" ### context: CREATE TABLE table_name_76 (high_assists VARCHAR, high_points VARCHAR)
### question: What is High Assists, when Date is "March 10"? ### answer: SELECT high_assists FROM table_name_93 WHERE date = "march 10" ### context: CREATE TABLE table_name_93 (high_assists VARCHAR, date VARCHAR)
### question: What is Record, when Team is "@ Atlanta"? ### answer: SELECT record FROM table_name_78 WHERE team = "@ atlanta" ### context: CREATE TABLE table_name_78 (record VARCHAR, team VARCHAR)
### question: What is Team, when Location Attendance is "Rose Garden 20,020"? ### answer: SELECT team FROM table_name_69 WHERE location_attendance = "rose garden 20,020" ### context: CREATE TABLE table_name_69 (team VARCHAR, location_attendance VARCHAR)
### question: What is Date, when High Points is "Danny Granger (32)"? ### answer: SELECT date FROM table_name_56 WHERE high_points = "danny granger (32)" ### context: CREATE TABLE table_name_56 (date VARCHAR, high_points VARCHAR)
### question: What is the place when the player is Bob Gilder and the money was $20,903? ### answer: SELECT place FROM table_name_88 WHERE money___$__ = "20,903" AND player = "bob gilder" ### context: CREATE TABLE table_name_88 (place VARCHAR, money___$__ VARCHAR, player VARCHAR)
### question: What is the Place when Fuzzy Zoeller plated in the United States? ### answer: SELECT place FROM table_name_78 WHERE country = "united states" AND player = "fuzzy zoeller" ### context: CREATE TABLE table_name_78 (place VARCHAR, country VARCHAR, player VARCHAR)
### question: What is the To par when the score was 72-67-68-71=278? ### answer: SELECT to_par FROM table_name_20 WHERE score = 72 - 67 - 68 - 71 = 278 ### context: CREATE TABLE table_name_20 (to_par VARCHAR, score VARCHAR)
### question: What is the Place when Steve Pate was the player? ### answer: SELECT place FROM table_name_52 WHERE player = "steve pate" ### context: CREATE TABLE table_name_52 (place VARCHAR, player VARCHAR)
### question: What is the diameter for 1997 when longitude is 212.0e and latitude is 47.0n? ### answer: SELECT MIN(diameter__km_) FROM table_name_50 WHERE year_named = 1997 AND longitude = "212.0e" AND latitude = "47.0n" ### context: CREATE TABLE table_name_50 (diameter__km_ INTEGER, latitude VARCHAR, year_named VARCHA...
### question: What's the latitude when the longitude is 152.0e later than 1997? ### answer: SELECT latitude FROM table_name_66 WHERE year_named > 1997 AND longitude = "152.0e" ### context: CREATE TABLE table_name_66 (latitude VARCHAR, year_named VARCHAR, longitude VARCHAR)
### question: What's the diameter when longitude is 105.0e before 2003? ### answer: SELECT SUM(diameter__km_) FROM table_name_42 WHERE longitude = "105.0e" AND year_named < 2003 ### context: CREATE TABLE table_name_42 (diameter__km_ INTEGER, longitude VARCHAR, year_named VARCHAR)
### question: What's the average year for the name aida-wedo dorsa with a diameter less than 450? ### answer: SELECT AVG(year_named) FROM table_name_16 WHERE name = "aida-wedo dorsa" AND diameter__km_ < 450 ### context: CREATE TABLE table_name_16 (year_named INTEGER, name VARCHAR, diameter__km_ VARCHAR)
### question: What's the total diameter when longitude is 357.8e later than 1985? ### answer: SELECT COUNT(diameter__km_) FROM table_name_60 WHERE longitude = "357.8e" AND year_named > 1985 ### context: CREATE TABLE table_name_60 (diameter__km_ VARCHAR, longitude VARCHAR, year_named VARCHAR)
### question: In what year was Lesli Margherita nominated? ### answer: SELECT SUM(year) FROM table_name_90 WHERE nominee = "lesli margherita" ### context: CREATE TABLE table_name_90 (year INTEGER, nominee VARCHAR)
### question: Who was nominated for Best Theatre Choreographer? ### answer: SELECT nominee FROM table_name_18 WHERE category = "best theatre choreographer" ### context: CREATE TABLE table_name_18 (nominee VARCHAR, category VARCHAR)
### question: What hometown was FR Year, and ha Brown's Gymnastics club? ### answer: SELECT hometown FROM table_name_20 WHERE year = "fr" AND club = "brown's gymnastics" ### context: CREATE TABLE table_name_20 (hometown VARCHAR, year VARCHAR, club VARCHAR)
### question: What year was Asi Peko? ### answer: SELECT year FROM table_name_60 WHERE name = "asi peko" ### context: CREATE TABLE table_name_60 (year VARCHAR, name VARCHAR)
### question: What is the height for the Oakville Gymnastics Club? ### answer: SELECT height FROM table_name_96 WHERE club = "oakville gymnastics club" ### context: CREATE TABLE table_name_96 (height VARCHAR, club VARCHAR)
### question: when was the loan ended when the loan club is spartak moscow? ### answer: SELECT ended FROM table_name_98 WHERE loan_club = "spartak moscow" ### context: CREATE TABLE table_name_98 (ended VARCHAR, loan_club VARCHAR)
### question: What is the loan start source when the loan club is fulham? ### answer: SELECT start_source FROM table_name_42 WHERE loan_club = "fulham" ### context: CREATE TABLE table_name_42 (start_source VARCHAR, loan_club VARCHAR)
### question: When was the loan started when the coutry is eng, the loan club is sunderland and the end source is south wales echo? ### answer: SELECT started FROM table_name_23 WHERE country = "eng" AND loan_club = "sunderland" AND end_source = "south wales echo" ### context: CREATE TABLE table_name_23 (started VARCHA...
### question: when was the loan ended when the country is ghana? ### answer: SELECT ended FROM table_name_37 WHERE country = "ghana" ### context: CREATE TABLE table_name_37 (ended VARCHAR, country VARCHAR)
### question: what is the loan club with the start source is bbc sport and started on 9 february? ### answer: SELECT loan_club FROM table_name_28 WHERE start_source = "bbc sport" AND started = "9 february" ### context: CREATE TABLE table_name_28 (loan_club VARCHAR, start_source VARCHAR, started VARCHAR)
### question: what is the start source when started on 2 february? ### answer: SELECT start_source FROM table_name_47 WHERE started = "2 february" ### context: CREATE TABLE table_name_47 (start_source VARCHAR, started VARCHAR)
### question: What is the lowest Finished, when Post is less than 2? ### answer: SELECT MIN(finished) FROM table_name_70 WHERE post < 2 ### context: CREATE TABLE table_name_70 (finished INTEGER, post INTEGER)
### question: What is Owner, when Finished is less than 15, when Trainer is "Steve Asmussen", and when Horse is "Z Fortune"? ### answer: SELECT owner FROM table_name_77 WHERE finished < 15 AND trainer = "steve asmussen" AND horse = "z fortune" ### context: CREATE TABLE table_name_77 (owner VARCHAR, horse VARCHAR, finis...
### question: What is the Time/ Behind, when Jockey is "Jose Lezcano"? ### answer: SELECT time__behind FROM table_name_44 WHERE jockey = "jose lezcano" ### context: CREATE TABLE table_name_44 (time__behind VARCHAR, jockey VARCHAR)
### question: What is Jockey, when Post is 12? ### answer: SELECT jockey FROM table_name_53 WHERE post = 12 ### context: CREATE TABLE table_name_53 (jockey VARCHAR, post VARCHAR)
### question: What is the total number of Post, when Trainer is "Steve Asmussen", and when Time/ Behind is 19 ½? ### answer: SELECT COUNT(post) FROM table_name_22 WHERE trainer = "steve asmussen" AND time__behind = "19 ½" ### context: CREATE TABLE table_name_22 (post VARCHAR, trainer VARCHAR, time__behind VARCHAR)
### question: What is Jockey, when Horse is "Eight Belles"? ### answer: SELECT jockey FROM table_name_74 WHERE horse = "eight belles" ### context: CREATE TABLE table_name_74 (jockey VARCHAR, horse VARCHAR)
### question: Who is the team captain of Regenboogstadion? ### answer: SELECT team_captain FROM table_name_42 WHERE stadium = "regenboogstadion" ### context: CREATE TABLE table_name_42 (team_captain VARCHAR, stadium VARCHAR)
### question: Who is the current manager of the team located in tubize? ### answer: SELECT current_manager FROM table_name_15 WHERE location = "tubize" ### context: CREATE TABLE table_name_15 (current_manager VARCHAR, location VARCHAR)
### question: Where is the location of the team with a current manager of Ariel Jacobs? ### answer: SELECT location FROM table_name_17 WHERE current_manager = "ariel jacobs" ### context: CREATE TABLE table_name_17 (location VARCHAR, current_manager VARCHAR)
### question: What was the victory margin for a finish of 1st with a rider of Kent Desormeaux, with a time of 1:35.66? ### answer: SELECT victory_margin__in_lengths_ FROM table_name_74 WHERE finish = "1st" AND jockey = "kent desormeaux" AND time = "1:35.66" ### context: CREATE TABLE table_name_74 (victory_margin__in_le...
### question: What was the time of the Kentucky Derby? ### answer: SELECT time FROM table_name_79 WHERE race = "kentucky derby" ### context: CREATE TABLE table_name_79 (time VARCHAR, race VARCHAR)
### question: What was the finish of the Kentucky Derby? ### answer: SELECT finish FROM table_name_32 WHERE race = "kentucky derby" ### context: CREATE TABLE table_name_32 (finish VARCHAR, race VARCHAR)
### question: Which race had a finish of 1st at Saratoga Race Course? ### answer: SELECT race FROM table_name_60 WHERE finish = "1st" AND track = "saratoga race course" ### context: CREATE TABLE table_name_60 (race VARCHAR, finish VARCHAR, track VARCHAR)
### question: Who was the player in 1981? ### answer: SELECT player FROM table_name_67 WHERE year = "1981" ### context: CREATE TABLE table_name_67 (player VARCHAR, year VARCHAR)
### question: What is the team for 1976? ### answer: SELECT team FROM table_name_67 WHERE year = "1976" ### context: CREATE TABLE table_name_67 (team VARCHAR, year VARCHAR)
### question: What is the opponent for the date of august 5? ### answer: SELECT opponent FROM table_name_75 WHERE date = "august 5" ### context: CREATE TABLE table_name_75 (opponent VARCHAR, date VARCHAR)
### question: What is the result for the date of august 23? ### answer: SELECT result FROM table_name_83 WHERE date = "august 23" ### context: CREATE TABLE table_name_83 (result VARCHAR, date VARCHAR)
### question: When the opponent is houston oilers what is the result? ### answer: SELECT result FROM table_name_27 WHERE opponent = "houston oilers" ### context: CREATE TABLE table_name_27 (result VARCHAR, opponent VARCHAR)
### question: Which Goals Against has a Drawn larger than 9, a Lost larger than 15, a Position of 24, and a Played smaller than 46? ### answer: SELECT AVG(goals_against) FROM table_name_50 WHERE drawn > 9 AND lost > 15 AND position = 24 AND played < 46 ### context: CREATE TABLE table_name_50 (goals_against INTEGER, pla...
### question: Which Points 2 has Drawn of 15, a Position larger than 20, and a Goals For smaller than 45? ### answer: SELECT SUM(points_2) FROM table_name_35 WHERE drawn = 15 AND position > 20 AND goals_for < 45 ### context: CREATE TABLE table_name_35 (points_2 INTEGER, goals_for VARCHAR, drawn VARCHAR, position VARCHA...
### question: Which Goals For has a Position larger than 2, a Lost larger than 18, a Team of matlock town, and a Goals Against larger than 79? ### answer: SELECT MAX(goals_for) FROM table_name_74 WHERE position > 2 AND lost > 18 AND team = "matlock town" AND goals_against > 79 ### context: CREATE TABLE table_name_74 (g...
### question: Which Points 2 has a Goal Average 1 larger than 1.17, a Goals Against larger than 48, and a Position larger than 6? ### answer: SELECT SUM(points_2) FROM table_name_64 WHERE goal_average_1 > 1.17 AND goals_against > 48 AND position > 6 ### context: CREATE TABLE table_name_64 (points_2 INTEGER, position VA...
### question: What is the 1986 value with A in 1991 and A in 1987? ### answer: SELECT 1986 FROM table_name_17 WHERE 1991 = "a" AND 1987 = "a" ### context: CREATE TABLE table_name_17 (Id VARCHAR)
### question: What is the 1995 value with A in 1986 and 2r in 1992? ### answer: SELECT 1995 FROM table_name_29 WHERE 1986 = "a" AND 1992 = "2r" ### context: CREATE TABLE table_name_29 (Id VARCHAR)
### question: What is the 1989 value with F in 1990? ### answer: SELECT 1989 FROM table_name_95 WHERE 1990 = "f" ### context: CREATE TABLE table_name_95 (Id VARCHAR)
### question: What is the 1987 value of the 1994 atp masters series? ### answer: SELECT 1987 FROM table_name_45 WHERE 1994 = "atp masters series" ### context: CREATE TABLE table_name_45 (Id VARCHAR)
### question: What is the lowest round that a pick had a position of ls? ### answer: SELECT MIN(round) FROM table_name_26 WHERE position = "ls" ### context: CREATE TABLE table_name_26 (round INTEGER, position VARCHAR)
### question: What was the sum of the rounds for the player who had a position of LS and an overall draft pick bigger than 230? ### answer: SELECT SUM(round) FROM table_name_10 WHERE position = "ls" AND overall > 230 ### context: CREATE TABLE table_name_10 (round INTEGER, position VARCHAR, overall VARCHAR)
### question: WHAT IS THE VENUE ON MARCH 28, 2008? ### answer: SELECT venue FROM table_name_34 WHERE date = "march 28, 2008" ### context: CREATE TABLE table_name_34 (venue VARCHAR, date VARCHAR)
### question: How many were in Attendance on October 8? ### answer: SELECT COUNT(attendance) FROM table_name_65 WHERE date = "october 8" ### context: CREATE TABLE table_name_65 (attendance VARCHAR, date VARCHAR)
### question: What is the Location of the Game on October 8? ### answer: SELECT location FROM table_name_73 WHERE date = "october 8" ### context: CREATE TABLE table_name_73 (location VARCHAR, date VARCHAR)
### question: What is the nationality for the player with over 64 goals? ### answer: SELECT nat FROM table_name_56 WHERE goals > 64 ### context: CREATE TABLE table_name_56 (nat VARCHAR, goals INTEGER)
### question: What was the score of the game where Philadelphia was the visitor? ### answer: SELECT score FROM table_name_84 WHERE visitor = "philadelphia" ### context: CREATE TABLE table_name_84 (score VARCHAR, visitor VARCHAR)
### question: What are the average spectators from the Group H Round? ### answer: SELECT AVG(spectators) FROM table_name_60 WHERE round = "group h" ### context: CREATE TABLE table_name_60 (spectators INTEGER, round VARCHAR)
### question: Can you tell me the Manufacturer that has the Rider of stefan bradl? ### answer: SELECT manufacturer FROM table_name_5 WHERE rider = "stefan bradl" ### context: CREATE TABLE table_name_5 (manufacturer VARCHAR, rider VARCHAR)
### question: Can you tell me the highest Grid that has the Time of +15.532, and the Laps larger than 23? ### answer: SELECT MAX(grid) FROM table_name_70 WHERE time = "+15.532" AND laps > 23 ### context: CREATE TABLE table_name_70 (grid INTEGER, time VARCHAR, laps VARCHAR)
### question: Can you tell me the sum of Grid that has the Time of +6.355, and the Laps larger than 23? ### answer: SELECT SUM(grid) FROM table_name_7 WHERE time = "+6.355" AND laps > 23 ### context: CREATE TABLE table_name_7 (grid INTEGER, time VARCHAR, laps VARCHAR)
### question: What is Time, when Location is "Savannah, Georgia , United States"? ### answer: SELECT time FROM table_name_63 WHERE location = "savannah, georgia , united states" ### context: CREATE TABLE table_name_63 (time VARCHAR, location VARCHAR)
### question: What is the total number of Round(s), when Time is "N/A", when Location is "Alabama , United States", and when Record is "1-2-0"? ### answer: SELECT COUNT(round) FROM table_name_53 WHERE time = "n/a" AND location = "alabama , united states" AND record = "1-2-0" ### context: CREATE TABLE table_name_53 (rou...
### question: Which Retitled as/Same has a Last Aired larger than 1982, and a Show of we got it made? ### answer: SELECT retitled_as_same FROM table_name_99 WHERE last_aired > 1982 AND show = "we got it made" ### context: CREATE TABLE table_name_99 (retitled_as_same VARCHAR, last_aired VARCHAR, show VARCHAR)
### question: Which New/Returning/Same Network has a Last Aired of 1982? ### answer: SELECT new_returning_same_network FROM table_name_29 WHERE last_aired = 1982 ### context: CREATE TABLE table_name_29 (new_returning_same_network VARCHAR, last_aired VARCHAR)
### question: Which New/Returning/Same Network has a Previous Network of nbc, and a Show of blockbusters? ### answer: SELECT new_returning_same_network FROM table_name_12 WHERE previous_network = "nbc" AND show = "blockbusters" ### context: CREATE TABLE table_name_12 (new_returning_same_network VARCHAR, previous_networ...
### question: Which New/Returning/Same Network has a Retitled as/Same of same, and a Last Aired larger than 1984? ### answer: SELECT new_returning_same_network FROM table_name_8 WHERE retitled_as_same = "same" AND last_aired > 1984 ### context: CREATE TABLE table_name_8 (new_returning_same_network VARCHAR, retitled_as_...
### question: Which Last Aired has a Retitled as/Same of classic concentration? ### answer: SELECT last_aired FROM table_name_57 WHERE retitled_as_same = "classic concentration" ### context: CREATE TABLE table_name_57 (last_aired VARCHAR, retitled_as_same VARCHAR)
### question: How many rounds had a race name of anglia tv trophy? ### answer: SELECT COUNT(round) FROM table_name_25 WHERE name = "anglia tv trophy" ### context: CREATE TABLE table_name_25 (round VARCHAR, name VARCHAR)
### question: What circuit was the race named international trophy raced at by the winning driver eliseo salazar? ### answer: SELECT circuit FROM table_name_63 WHERE winning_driver = "eliseo salazar" AND name = "international trophy" ### context: CREATE TABLE table_name_63 (circuit VARCHAR, winning_driver VARCHAR, name...
### question: What circuit did emilio de villota win on at the pace petroleum trophy? ### answer: SELECT circuit FROM table_name_62 WHERE winning_driver = "emilio de villota" AND name = "pace petroleum trophy" ### context: CREATE TABLE table_name_62 (circuit VARCHAR, winning_driver VARCHAR, name VARCHAR)
### question: What is the to par of the player from the United States with a t6 place and a score of 70-73-68-73=284? ### answer: SELECT to_par FROM table_name_22 WHERE country = "united states" AND place = "t6" AND score = 70 - 73 - 68 - 73 = 284 ### context: CREATE TABLE table_name_22 (to_par VARCHAR, country VARCHAR...
### question: Who is the player from Australia with a to par of +5? ### answer: SELECT player FROM table_name_7 WHERE to_par = "+5" AND country = "australia" ### context: CREATE TABLE table_name_7 (player VARCHAR, to_par VARCHAR, country VARCHAR)
### question: What is the highest amount of money a player with a score of 69-71-71-73=284 has? ### answer: SELECT MAX(money___) AS $__ FROM table_name_76 WHERE score = 69 - 71 - 71 - 73 = 284 ### context: CREATE TABLE table_name_76 (money___ INTEGER, score VARCHAR)
### question: What is the time of the match with 3 rounds and a 9-3 record? ### answer: SELECT time FROM table_name_52 WHERE round = 3 AND record = "9-3" ### context: CREATE TABLE table_name_52 (time VARCHAR, round VARCHAR, record VARCHAR)
### question: What is the method of the match with a win res., 1 round, and a 3-2 record? ### answer: SELECT method FROM table_name_44 WHERE res = "win" AND round = 1 AND record = "3-2" ### context: CREATE TABLE table_name_44 (method VARCHAR, record VARCHAR, res VARCHAR, round VARCHAR)
### question: Who was the sports agent who finished 9th? ### answer: SELECT name FROM table_name_61 WHERE finish = "9th" AND occupation = "sports agent" ### context: CREATE TABLE table_name_61 (name VARCHAR, finish VARCHAR, occupation VARCHAR)
### question: What is the lowest score that wes ellis got? ### answer: SELECT MIN(score) FROM table_name_81 WHERE player = "wes ellis" ### context: CREATE TABLE table_name_81 (score INTEGER, player VARCHAR)
### question: What was the score for the player from the United states that was +1 to par? ### answer: SELECT score FROM table_name_64 WHERE to_par = "+1" AND country = "united states" ### context: CREATE TABLE table_name_64 (score VARCHAR, to_par VARCHAR, country VARCHAR)
### question: Who was the player who placed t10? ### answer: SELECT player FROM table_name_4 WHERE place = "t10" ### context: CREATE TABLE table_name_4 (player VARCHAR, place VARCHAR)
### question: How far to par did ed furgol from the United States get when he scored less than 72 and was placed at t3? ### answer: SELECT to_par FROM table_name_93 WHERE country = "united states" AND score < 72 AND place = "t3" AND player = "ed furgol" ### context: CREATE TABLE table_name_93 (to_par VARCHAR, player VA...
### question: What game was played at Philadelphia? ### answer: SELECT AVG(game) FROM table_name_36 WHERE team = "philadelphia" ### context: CREATE TABLE table_name_36 (game INTEGER, team VARCHAR)
### question: What is the sum of share with a rating larger than 1.2, a 3 rank timeslot, and 6.07 million viewers? ### answer: SELECT SUM(share) FROM table_name_42 WHERE rating > 1.2 AND rank__timeslot_ = 3 AND viewers__millions_ = 6.07 ### context: CREATE TABLE table_name_42 (share INTEGER, viewers__millions_ VARCHAR,...
### question: What is the average week rank with 1.2 ratings, less than 1.94 million viewers, and a night rank less than 11? ### answer: SELECT AVG(rank__week_) FROM table_name_53 WHERE rating = 1.2 AND viewers__millions_ < 1.94 AND rank__night_ < 11 ### context: CREATE TABLE table_name_53 (rank__week_ INTEGER, rank__n...
### question: what is the round when the college is syracuse and the pick is less than 3? ### answer: SELECT AVG(round) FROM table_name_94 WHERE college = "syracuse" AND pick < 3 ### context: CREATE TABLE table_name_94 (round INTEGER, college VARCHAR, pick VARCHAR)
### question: what is the position when the pick is more than 2, the overall is more than 28 and the college is nebraska? ### answer: SELECT position FROM table_name_51 WHERE pick > 2 AND overall > 28 AND college = "nebraska" ### context: CREATE TABLE table_name_51 (position VARCHAR, college VARCHAR, pick VARCHAR, over...
### question: what is the pick when the college is arkansas and the overall is more than 316? ### answer: SELECT MAX(pick) FROM table_name_33 WHERE college = "arkansas" AND overall > 316 ### context: CREATE TABLE table_name_33 (pick INTEGER, college VARCHAR, overall VARCHAR)