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