text
stringlengths
114
1.06k
### question: What is the position for round 5 from alabama state? ### answer: SELECT position FROM table_name_39 WHERE round = 5 AND college = "alabama state" ### context: CREATE TABLE table_name_39 (position VARCHAR, round VARCHAR, college VARCHAR)
### question: what is the pick # when overall is more than 131, position is wide receiver and the round is less than 5? ### answer: SELECT COUNT(pick__number) FROM table_name_37 WHERE overall > 131 AND position = "wide receiver" AND round < 5 ### context: CREATE TABLE table_name_37 (pick__number VARCHAR, round VARCHAR, overall VARCHAR, position VARCHAR)
### question: what is the highest round for anthony gonzalez? ### answer: SELECT MAX(round) FROM table_name_53 WHERE name = "anthony gonzalez" ### context: CREATE TABLE table_name_53 (round INTEGER, name VARCHAR)
### question: How many times is brannon condren with and overall more than 131 drafted? ### answer: SELECT COUNT(round) FROM table_name_56 WHERE name = "brannon condren" AND overall > 131 ### context: CREATE TABLE table_name_56 (round VARCHAR, name VARCHAR, overall VARCHAR)
### question: Which rider has the time of +31.426? ### answer: SELECT rider FROM table_name_10 WHERE time_retired = "+31.426" ### context: CREATE TABLE table_name_10 (rider VARCHAR, time_retired VARCHAR)
### question: What is the grid for the rider who rides a Suzuki and has the time of +1:01.894? ### answer: SELECT MAX(grid) FROM table_name_9 WHERE manufacturer = "suzuki" AND time_retired = "+1:01.894" ### context: CREATE TABLE table_name_9 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)
### question: What is the score for Australia with a place of 4? ### answer: SELECT score FROM table_name_87 WHERE country = "australia" AND place = "4" ### context: CREATE TABLE table_name_87 (score VARCHAR, country VARCHAR, place VARCHAR)
### question: What is the place of To par of e when Arron Oberholser was the player ? ### answer: SELECT place FROM table_name_66 WHERE to_par = "e" AND player = "arron oberholser" ### context: CREATE TABLE table_name_66 (place VARCHAR, to_par VARCHAR, player VARCHAR)
### question: What is the score with a place of t6 for the player k.j. choi? ### answer: SELECT score FROM table_name_83 WHERE place = "t6" AND player = "k.j. choi" ### context: CREATE TABLE table_name_83 (score VARCHAR, place VARCHAR, player VARCHAR)
### question: What is the country for the player Tiger Woods? ### answer: SELECT country FROM table_name_3 WHERE player = "tiger woods" ### context: CREATE TABLE table_name_3 (country VARCHAR, player VARCHAR)
### question: What is the name of the player with a score of 72-68-70=210? ### answer: SELECT player FROM table_name_30 WHERE score = 72 - 68 - 70 = 210 ### context: CREATE TABLE table_name_30 (player VARCHAR, score VARCHAR)
### question: What is the name of the player with t6 as his place and a country of United states? ### answer: SELECT player FROM table_name_85 WHERE place = "t6" AND country = "united states" ### context: CREATE TABLE table_name_85 (player VARCHAR, place VARCHAR, country VARCHAR)
### question: What is the fineness of the 2008 chinese cuju sport Reverse? ### answer: SELECT fineness FROM table_name_11 WHERE year = 2008 AND reverse = "chinese cuju sport" ### context: CREATE TABLE table_name_11 (fineness VARCHAR, year VARCHAR, reverse VARCHAR)
### question: What's the diameter of the 2006 equestrian Reverse? ### answer: SELECT diameter FROM table_name_49 WHERE year = 2006 AND reverse = "equestrian" ### context: CREATE TABLE table_name_49 (diameter VARCHAR, year VARCHAR, reverse VARCHAR)
### question: What denomination was produced in 2006? ### answer: SELECT denomination FROM table_name_80 WHERE year = 2006 ### context: CREATE TABLE table_name_80 (denomination VARCHAR, year VARCHAR)
### question: What was the fineness prior to 2007? ### answer: SELECT fineness FROM table_name_28 WHERE year < 2007 ### context: CREATE TABLE table_name_28 (fineness VARCHAR, year INTEGER)
### question: What does the ii Series weigh? ### answer: SELECT weight FROM table_name_73 WHERE series = "ii series" ### context: CREATE TABLE table_name_73 (weight VARCHAR, series VARCHAR)
### question: What loss has 10-16 as the record? ### answer: SELECT loss FROM table_name_83 WHERE record = "10-16" ### context: CREATE TABLE table_name_83 (loss VARCHAR, record VARCHAR)
### question: What is the least attendance that has 3-5 as a record? ### answer: SELECT MIN(attendance) FROM table_name_25 WHERE record = "3-5" ### context: CREATE TABLE table_name_25 (attendance INTEGER, record VARCHAR)
### question: What is the average attendance for the date of april 4? ### answer: SELECT AVG(attendance) FROM table_name_23 WHERE date = "april 4" ### context: CREATE TABLE table_name_23 (attendance INTEGER, date VARCHAR)
### question: Which opponent has april 2 as the date? ### answer: SELECT opponent FROM table_name_93 WHERE date = "april 2" ### context: CREATE TABLE table_name_93 (opponent VARCHAR, date VARCHAR)
### question: What is the Remark of Airline of Dutch Antilles Express? ### answer: SELECT remarks FROM table_name_79 WHERE airline = "dutch antilles express" ### context: CREATE TABLE table_name_79 (remarks VARCHAR, airline VARCHAR)
### question: What Category has a Year that's smaller than 2006, has Result of Nominated, and a Title of Cold Feet? ### answer: SELECT category FROM table_name_25 WHERE year < 2006 AND result = "nominated" AND title = "cold feet" ### context: CREATE TABLE table_name_25 (category VARCHAR, title VARCHAR, year VARCHAR, result VARCHAR)
### question: What is recorded as the lowest Year that has the Title of Cold Feet? ### answer: SELECT MIN(year) FROM table_name_96 WHERE title = "cold feet" ### context: CREATE TABLE table_name_96 (year INTEGER, title VARCHAR)
### question: What Category has a Result of Nominated, Year of 2006, and the Title of Pierrepoint? ### answer: SELECT category FROM table_name_64 WHERE result = "nominated" AND year = 2006 AND title = "pierrepoint" ### context: CREATE TABLE table_name_64 (category VARCHAR, title VARCHAR, result VARCHAR, year VARCHAR)
### question: What Title is listed for the Year of 1999? ### answer: SELECT title FROM table_name_63 WHERE year = 1999 ### context: CREATE TABLE table_name_63 (title VARCHAR, year VARCHAR)
### question: What is the total number of Year for the Title of The Queen, has an Award of British Academy Film Award, and has a Result of Won? ### answer: SELECT COUNT(year) FROM table_name_82 WHERE title = "the queen" AND award = "british academy film award" AND result = "won" ### context: CREATE TABLE table_name_82 (year VARCHAR, result VARCHAR, title VARCHAR, award VARCHAR)
### question: What was the date of the game against Northwestern? ### answer: SELECT date FROM table_name_62 WHERE opponent = "northwestern" ### context: CREATE TABLE table_name_62 (date VARCHAR, opponent VARCHAR)
### question: Who was the opponent when the city was Louisville? ### answer: SELECT opponent FROM table_name_44 WHERE city = "louisville" ### context: CREATE TABLE table_name_44 (opponent VARCHAR, city VARCHAR)
### question: What was the score of the game against Minnesota? ### answer: SELECT score FROM table_name_55 WHERE opponent = "minnesota" ### context: CREATE TABLE table_name_55 (score VARCHAR, opponent VARCHAR)
### question: On what date was a friendly competition and a result of 3–0? ### answer: SELECT date FROM table_name_69 WHERE competition = "friendly" AND result = "3–0" ### context: CREATE TABLE table_name_69 (date VARCHAR, competition VARCHAR, result VARCHAR)
### question: When was the score 1–0, and the result 4–0? ### answer: SELECT date FROM table_name_67 WHERE score = "1–0" AND result = "4–0" ### context: CREATE TABLE table_name_67 (date VARCHAR, score VARCHAR, result VARCHAR)
### question: What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2–0? ### answer: SELECT result FROM table_name_17 WHERE venue = "dakar , senegal" AND date = "3 september 2011" AND score = "2–0" ### context: CREATE TABLE table_name_17 (result VARCHAR, score VARCHAR, venue VARCHAR, date VARCHAR)
### question: Which time has a Rank larger than 3, and a Name of andrey kapralov? ### answer: SELECT time FROM table_name_31 WHERE rank > 3 AND name = "andrey kapralov" ### context: CREATE TABLE table_name_31 (time VARCHAR, rank VARCHAR, name VARCHAR)
### question: Which Nationality has a Name of igor koleda? ### answer: SELECT nationality FROM table_name_42 WHERE name = "igor koleda" ### context: CREATE TABLE table_name_42 (nationality VARCHAR, name VARCHAR)
### question: Where is the headquarters of the getinge group located? ### answer: SELECT headquarters FROM table_name_26 WHERE company = "getinge group" ### context: CREATE TABLE table_name_26 (headquarters VARCHAR, company VARCHAR)
### question: How much is the total assets of a company based in Stockholm, Sweden with a market capitalization smaller than 39.8 with revenues greater than 5.8 and profit of 1.1? ### answer: SELECT COUNT(s_asset__billion_) AS $_ FROM table_name_14 WHERE headquarters = "stockholm, sweden" AND market_value__billion_$_ < 39.8 AND revenue__billion_$__ > 5.8 AND profits__billion_$_ = 1.1 ### context: CREATE TABLE table_name_14 (s_asset__billion_ VARCHAR, profits__billion_$_ VARCHAR, revenue__billion_$__ VARCHAR, headquarters VARCHAR, market_value__billion_$_ VARCHAR)
### question: Name the date for zi yan jie zheng opponent ### answer: SELECT date FROM table_name_64 WHERE opponents = "zi yan jie zheng" ### context: CREATE TABLE table_name_64 (date VARCHAR, opponents VARCHAR)
### question: Name the partner for 14 october 2007 ### answer: SELECT partner FROM table_name_75 WHERE date = "14 october 2007" ### context: CREATE TABLE table_name_75 (partner VARCHAR, date VARCHAR)
### question: Name the partner for opponents of alexandra dulgheru magdaléna rybáriková ### answer: SELECT partner FROM table_name_43 WHERE opponents = "alexandra dulgheru magdaléna rybáriková" ### context: CREATE TABLE table_name_43 (partner VARCHAR, opponents VARCHAR)
### question: Name the opponents for 24 july 2011 ### answer: SELECT opponents FROM table_name_45 WHERE date = "24 july 2011" ### context: CREATE TABLE table_name_45 (opponents VARCHAR, date VARCHAR)
### question: What is Ken Walter's lowest pick number with an overall pick number larger than 195? ### answer: SELECT MIN(pick__number) FROM table_name_28 WHERE name = "ken walter" AND overall > 195 ### context: CREATE TABLE table_name_28 (pick__number INTEGER, name VARCHAR, overall VARCHAR)
### question: What does Polyphenyl Ether of 3- and 4-ring oxythio look like? ### answer: SELECT appearance FROM table_name_80 WHERE polyphenyl_ether = "3- and 4-ring oxythio" ### context: CREATE TABLE table_name_80 (appearance VARCHAR, polyphenyl_ether VARCHAR)
### question: How long was the course from Naples to Foggia? ### answer: SELECT distance FROM table_name_2 WHERE course = "naples to foggia" ### context: CREATE TABLE table_name_2 (distance VARCHAR, course VARCHAR)
### question: Name the score with opponent of milos raonic ### answer: SELECT score FROM table_name_82 WHERE opponent = "milos raonic" ### context: CREATE TABLE table_name_82 (score VARCHAR, opponent VARCHAR)
### question: Name the date with a hard surface and tournament of usa f5, brownsville ### answer: SELECT date FROM table_name_83 WHERE surface = "hard" AND tournament = "usa f5, brownsville" ### context: CREATE TABLE table_name_83 (date VARCHAR, surface VARCHAR, tournament VARCHAR)
### question: Name the outcome with tournament of mexico f12, obregón ### answer: SELECT outcome FROM table_name_57 WHERE tournament = "mexico f12, obregón" ### context: CREATE TABLE table_name_57 (outcome VARCHAR, tournament VARCHAR)
### question: Name the tournament for march 25, 2012 ### answer: SELECT tournament FROM table_name_24 WHERE date = "march 25, 2012" ### context: CREATE TABLE table_name_24 (tournament VARCHAR, date VARCHAR)
### question: What was the final score for the August 25, 1996 match? ### answer: SELECT score_in_the_final FROM table_name_29 WHERE date = "august 25, 1996" ### context: CREATE TABLE table_name_29 (score_in_the_final VARCHAR, date VARCHAR)
### question: What is the average year of an entrant that had fewer than 6 points and a Maserati Straight-6 engine? ### answer: SELECT AVG(year) FROM table_name_25 WHERE points < 6 AND engine = "maserati straight-6" ### context: CREATE TABLE table_name_25 (year INTEGER, points VARCHAR, engine VARCHAR)
### question: What entrant had a Maserati 250F chassis and fewer than 6 points before 1957? ### answer: SELECT entrant FROM table_name_17 WHERE chassis = "maserati 250f" AND year < 1957 AND points < 6 ### context: CREATE TABLE table_name_17 (entrant VARCHAR, points VARCHAR, chassis VARCHAR, year VARCHAR)
### question: What chassis has a year of 1951? ### answer: SELECT chassis FROM table_name_7 WHERE year = 1951 ### context: CREATE TABLE table_name_7 (chassis VARCHAR, year VARCHAR)
### question: What is the chassis of Officine Alfieri Maserati with a Maserati Straight-6 engine and fewer than 6 points? ### answer: SELECT chassis FROM table_name_55 WHERE engine = "maserati straight-6" AND entrant = "officine alfieri maserati" AND points < 6 ### context: CREATE TABLE table_name_55 (chassis VARCHAR, points VARCHAR, engine VARCHAR, entrant VARCHAR)
### question: Which lane has a time less than 49.67, is from Michael Klim and less than 1 rank? ### answer: SELECT MAX(lane) FROM table_name_87 WHERE time < 49.67 AND name = "michael klim" AND rank < 1 ### context: CREATE TABLE table_name_87 (lane INTEGER, rank VARCHAR, time VARCHAR, name VARCHAR)
### question: What is the lowest lane with Lorenzo Vismara and a time higher than 49.67? ### answer: SELECT MIN(lane) FROM table_name_69 WHERE name = "lorenzo vismara" AND time > 49.67 ### context: CREATE TABLE table_name_69 (lane INTEGER, name VARCHAR, time VARCHAR)
### question: Who was the home team on January 8? ### answer: SELECT home FROM table_name_41 WHERE date = "january 8" ### context: CREATE TABLE table_name_41 (home VARCHAR, date VARCHAR)
### question: Who was the Opponent when the Attendance was 38,150? ### answer: SELECT opponent FROM table_name_25 WHERE attendance = "38,150" ### context: CREATE TABLE table_name_25 (opponent VARCHAR, attendance VARCHAR)
### question: Where is NCAA division ii Franklin Pierce University located at? ### answer: SELECT location FROM table_name_54 WHERE classification = "ncaa division ii" AND institution = "franklin pierce university" ### context: CREATE TABLE table_name_54 (location VARCHAR, classification VARCHAR, institution VARCHAR)
### question: Post University has what nickname? ### answer: SELECT nickname FROM table_name_4 WHERE institution = "post university" ### context: CREATE TABLE table_name_4 (nickname VARCHAR, institution VARCHAR)
### question: The River Hawks belonged to what current conference? ### answer: SELECT current_conference FROM table_name_6 WHERE nickname = "river hawks" ### context: CREATE TABLE table_name_6 (current_conference VARCHAR, nickname VARCHAR)
### question: What is the nickname of the school located in Manchester, New Hampshire? ### answer: SELECT nickname FROM table_name_54 WHERE location = "manchester, new hampshire" ### context: CREATE TABLE table_name_54 (nickname VARCHAR, location VARCHAR)
### question: What is the classification for the school in the NEC Conference located in New Britain, Connecticut? ### answer: SELECT classification FROM table_name_4 WHERE current_conference = "nec" AND location = "new britain, connecticut" ### context: CREATE TABLE table_name_4 (classification VARCHAR, current_conference VARCHAR, location VARCHAR)
### question: What institution is a NCAA Division i school and part of the NEC conference with a nickname the Blue Devils? ### answer: SELECT institution FROM table_name_48 WHERE classification = "ncaa division i" AND current_conference = "nec" AND nickname = "blue devils" ### context: CREATE TABLE table_name_48 (institution VARCHAR, nickname VARCHAR, classification VARCHAR, current_conference VARCHAR)
### question: What was the record at the home of the Montreal Maroons ### answer: SELECT record FROM table_name_59 WHERE home = "montreal maroons" ### context: CREATE TABLE table_name_59 (record VARCHAR, home VARCHAR)
### question: which school shows #/county of 29 hamilton? ### answer: SELECT school FROM table_name_49 WHERE _number___county = "29 hamilton" ### context: CREATE TABLE table_name_49 (school VARCHAR, _number___county VARCHAR)
### question: what is the mascot for the enrollment 08-09 of 320? ### answer: SELECT mascot FROM table_name_73 WHERE enrollment_08_09 = 320 ### context: CREATE TABLE table_name_73 (mascot VARCHAR, enrollment_08_09 VARCHAR)
### question: what is the school in michigantown? ### answer: SELECT school FROM table_name_93 WHERE location = "michigantown" ### context: CREATE TABLE table_name_93 (school VARCHAR, location VARCHAR)
### question: Which episode number was associated with Vibhav Gautam? ### answer: SELECT episode_number FROM table_name_1 WHERE name = "vibhav gautam" ### context: CREATE TABLE table_name_1 (episode_number VARCHAR, name VARCHAR)
### question: Which city/state was associated with a contestant whose status was 2nd runner-up? ### answer: SELECT city_state FROM table_name_52 WHERE status = "2nd runner-up" ### context: CREATE TABLE table_name_52 (city_state VARCHAR, status VARCHAR)
### question: Which contestant was associated with episode 34? ### answer: SELECT name FROM table_name_30 WHERE episode_number = "episode 34" ### context: CREATE TABLE table_name_30 (name VARCHAR, episode_number VARCHAR)
### question: What is the status of the city/state of Indor, Madhya Pradesh? ### answer: SELECT status AS Date FROM table_name_1 WHERE city_state = "indor, madhya pradesh" ### context: CREATE TABLE table_name_1 (status VARCHAR, city_state VARCHAR)
### question: What role did John Wayne play in The Trail Beyond, directed by R.N. Bradbury? ### answer: SELECT role FROM table_name_56 WHERE director = "r.n. bradbury" AND title = "the trail beyond" ### context: CREATE TABLE table_name_56 (role VARCHAR, director VARCHAR, title VARCHAR)
### question: Who directed the movie The Star Packer? ### answer: SELECT director FROM table_name_79 WHERE title = "the star packer" ### context: CREATE TABLE table_name_79 (director VARCHAR, title VARCHAR)
### question: What role did John Wayne play in The Lawless Frontier, with Sheila Terry as the leading lady? ### answer: SELECT role FROM table_name_42 WHERE leading_lady = "sheila terry" AND title = "the lawless frontier" ### context: CREATE TABLE table_name_42 (role VARCHAR, leading_lady VARCHAR, title VARCHAR)
### question: In what movie did John Wayne play the role of Chris Morrell? ### answer: SELECT title FROM table_name_54 WHERE role = "chris morrell" ### context: CREATE TABLE table_name_54 (title VARCHAR, role VARCHAR)
### question: What role did John Wayne play with Verna Hillie as the leading lady? ### answer: SELECT role FROM table_name_80 WHERE leading_lady = "verna hillie" ### context: CREATE TABLE table_name_80 (role VARCHAR, leading_lady VARCHAR)
### question: Who directed the movie when John Wayne played the role of John Travers? ### answer: SELECT director FROM table_name_54 WHERE role = "john travers" ### context: CREATE TABLE table_name_54 (director VARCHAR, role VARCHAR)
### question: What is the record for November 26, with the decision made by Prusek? ### answer: SELECT record FROM table_name_44 WHERE decision = "prusek" AND date = "november 26" ### context: CREATE TABLE table_name_44 (record VARCHAR, decision VARCHAR, date VARCHAR)
### question: What is the record for game where Columbus is visitor, Phoenix is home, and decision is made by Denis? ### answer: SELECT record FROM table_name_3 WHERE visitor = "columbus" AND decision = "denis" AND home = "phoenix" ### context: CREATE TABLE table_name_3 (record VARCHAR, home VARCHAR, visitor VARCHAR, decision VARCHAR)
### question: What is the record for November 4, with a decision made by Denis? ### answer: SELECT record FROM table_name_10 WHERE decision = "denis" AND date = "november 4" ### context: CREATE TABLE table_name_10 (record VARCHAR, decision VARCHAR, date VARCHAR)
### question: What is the Intergiro classification of Nicolaj bo Larsen, who has a Fabrizio guidi point classification? ### answer: SELECT intergiro_classification FROM table_name_34 WHERE points_classification = "fabrizio guidi" AND winner = "nicolaj bo larsen" ### context: CREATE TABLE table_name_34 (intergiro_classification VARCHAR, points_classification VARCHAR, winner VARCHAR)
### question: What is the mountain classification of Mario Cipollini, who has a general classification of Pavel tonkov? ### answer: SELECT mountains_classification FROM table_name_60 WHERE winner = "mario cipollini" AND general_classification = "pavel tonkov" ### context: CREATE TABLE table_name_60 (mountains_classification VARCHAR, winner VARCHAR, general_classification VARCHAR)
### question: What is the stage of Fabiano Fontanelli, who had a Trofeo Fast Team of Gewiss Playbus and a point classification of Fabrizio Guidi? ### answer: SELECT stage FROM table_name_13 WHERE trofeo_fast_team = "gewiss playbus" AND points_classification = "fabrizio guidi" AND winner = "fabiano fontanelli" ### context: CREATE TABLE table_name_13 (stage VARCHAR, winner VARCHAR, trofeo_fast_team VARCHAR, points_classification VARCHAR)
### question: What is the stage with a point classification of Silvio Martinello and Davide Rebellin as the general classification? ### answer: SELECT stage FROM table_name_56 WHERE points_classification = "silvio martinello" AND general_classification = "davide rebellin" ### context: CREATE TABLE table_name_56 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR)
### question: What is the Trofeo Fast Team with a point classification of Silvio Martinello and stage 6? ### answer: SELECT trofeo_fast_team FROM table_name_67 WHERE points_classification = "silvio martinello" AND stage = "6" ### context: CREATE TABLE table_name_67 (trofeo_fast_team VARCHAR, points_classification VARCHAR, stage VARCHAR)
### question: How many points did the Castres have? ### answer: SELECT points_for FROM table_name_59 WHERE club = "castres" ### context: CREATE TABLE table_name_59 (points_for VARCHAR, club VARCHAR)
### question: Who is the club that had 617 points and a draw of 0? ### answer: SELECT club FROM table_name_37 WHERE drawn = "0" AND points_for = "617" ### context: CREATE TABLE table_name_37 (club VARCHAR, drawn VARCHAR, points_for VARCHAR)
### question: What number of bonus points did Stade Français? ### answer: SELECT bonus_points FROM table_name_38 WHERE club = "stade français" ### context: CREATE TABLE table_name_38 (bonus_points VARCHAR, club VARCHAR)
### question: Who was the opponent at the game when the record was 15–15? ### answer: SELECT opponent FROM table_name_68 WHERE record = "15–15" ### context: CREATE TABLE table_name_68 (opponent VARCHAR, record VARCHAR)
### question: Who was the opponent at the game attended by 23,203? ### answer: SELECT opponent FROM table_name_63 WHERE attendance = "23,203" ### context: CREATE TABLE table_name_63 (opponent VARCHAR, attendance VARCHAR)
### question: What was the loss of the game when the record was 16–15? ### answer: SELECT loss FROM table_name_19 WHERE record = "16–15" ### context: CREATE TABLE table_name_19 (loss VARCHAR, record VARCHAR)
### question: What was the attendance at the game that had a score of 16–7? ### answer: SELECT attendance FROM table_name_8 WHERE score = "16–7" ### context: CREATE TABLE table_name_8 (attendance VARCHAR, score VARCHAR)
### question: What was the date of the game attended by 25,022? ### answer: SELECT date FROM table_name_70 WHERE attendance = "25,022" ### context: CREATE TABLE table_name_70 (date VARCHAR, attendance VARCHAR)
### question: Which record has an attendance larger than 28,459? ### answer: SELECT record FROM table_name_43 WHERE attendance > 28 OFFSET 459 ### context: CREATE TABLE table_name_43 (record VARCHAR, attendance INTEGER)
### question: When the record was 32-37 what was the score? ### answer: SELECT score FROM table_name_92 WHERE record = "32-37" ### context: CREATE TABLE table_name_92 (score VARCHAR, record VARCHAR)
### question: On the date of june 7 what was the score? ### answer: SELECT record FROM table_name_31 WHERE date = "june 7" ### context: CREATE TABLE table_name_31 (record VARCHAR, date VARCHAR)
### question: What was the score of the game when the record was 68-39? ### answer: SELECT score FROM table_name_8 WHERE record = "68-39" ### context: CREATE TABLE table_name_8 (score VARCHAR, record VARCHAR)
### question: What was the game of the game against the White Sox with a record of 81-48? ### answer: SELECT date FROM table_name_75 WHERE opponent = "white sox" AND record = "81-48" ### context: CREATE TABLE table_name_75 (date VARCHAR, opponent VARCHAR, record VARCHAR)
### question: What was the date of the game when the record was 66-38? ### answer: SELECT date FROM table_name_54 WHERE record = "66-38" ### context: CREATE TABLE table_name_54 (date VARCHAR, record VARCHAR)
### question: What category was Brian D'arcy James nominated for? ### answer: SELECT category FROM table_name_6 WHERE nominee = "brian d'arcy james" AND result = "nominated" ### context: CREATE TABLE table_name_6 (category VARCHAR, nominee VARCHAR, result VARCHAR)