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