text
stringlengths
114
1.06k
### question: What rank was caerphilly with a Swing smaller than 6.92? ### answer: SELECT COUNT(rank) FROM table_name_25 WHERE swing_to_gain < 6.92 AND constituency = "caerphilly" ### context: CREATE TABLE table_name_25 (rank VARCHAR, swing_to_gain VARCHAR, constituency VARCHAR)
### question: What's the sum of swing to gain with a winning party 2007 of Conservative with a rank smaller than 5? ### answer: SELECT SUM(swing_to_gain) FROM table_name_70 WHERE winning_party_2007 = "conservative" AND rank < 5 ### context: CREATE TABLE table_name_70 (swing_to_gain INTEGER, winning_party_2007 VARCHAR, ...
### question: Who directs before 1949 with linda darnell leading and jonathan kent? ### answer: SELECT director FROM table_name_60 WHERE year < 1949 AND leading_lady = "linda darnell" AND role = "jonathan kent" ### context: CREATE TABLE table_name_60 (director VARCHAR, role VARCHAR, year VARCHAR, leading_lady VARCHAR)
### question: Who is the leading lady in a yank in the r.a.f.? ### answer: SELECT leading_lady FROM table_name_10 WHERE title = "a yank in the r.a.f." ### context: CREATE TABLE table_name_10 (leading_lady VARCHAR, title VARCHAR)
### question: What title has rouben mamoulian directing after 1940 with linda darnell as the leading lady? ### answer: SELECT title FROM table_name_16 WHERE director = "rouben mamoulian" AND year > 1940 AND leading_lady = "linda darnell" ### context: CREATE TABLE table_name_16 (title VARCHAR, leading_lady VARCHAR, dire...
### question: Who directs before 1948 with linda darnell, titled blood and sand? ### answer: SELECT director FROM table_name_55 WHERE year < 1948 AND leading_lady = "linda darnell" AND title = "blood and sand" ### context: CREATE TABLE table_name_55 (director VARCHAR, title VARCHAR, year VARCHAR, leading_lady VARCHAR)
### question: Which driver had 3 Laps and grids less than 15? ### answer: SELECT driver FROM table_name_83 WHERE laps = 3 AND grid < 15 ### context: CREATE TABLE table_name_83 (driver VARCHAR, laps VARCHAR, grid VARCHAR)
### question: I want the time/retired with grid less than 22 and Laps less than 33 for john surtees ### answer: SELECT time_retired FROM table_name_96 WHERE grid < 22 AND laps < 33 AND driver = "john surtees" ### context: CREATE TABLE table_name_96 (time_retired VARCHAR, driver VARCHAR, grid VARCHAR, laps VARCHAR)
### question: What is the 2010 for the grand slam tournaments of 2007? ### answer: SELECT 2010 FROM table_name_44 WHERE 2007 = "grand slam tournaments" ### context: CREATE TABLE table_name_44 (Id VARCHAR)
### question: Name the 2009 for when 2007 is 3r and 2010 is q2 ### answer: SELECT 2009 FROM table_name_52 WHERE 2007 = "3r" AND 2010 = "q2" ### context: CREATE TABLE table_name_52 (Id VARCHAR)
### question: Name the 2012 for when 2010 is q3 ### answer: SELECT 2012 FROM table_name_94 WHERE 2010 = "q3" ### context: CREATE TABLE table_name_94 (Id VARCHAR)
### question: Name the 2010 for 2012 grand slam tournaments ### answer: SELECT 2010 FROM table_name_38 WHERE 2012 = "grand slam tournaments" ### context: CREATE TABLE table_name_38 (Id VARCHAR)
### question: Which giant slalom had an Overall number of 25? ### answer: SELECT Giant AS slalom FROM table_name_34 WHERE overall = 25 ### context: CREATE TABLE table_name_34 (Giant VARCHAR, overall VARCHAR)
### question: Which Giant Slalom was obtained in the 1997 season? ### answer: SELECT Giant AS slalom FROM table_name_29 WHERE season = 1997 ### context: CREATE TABLE table_name_29 (Giant VARCHAR, season VARCHAR)
### question: On what date did Mike Hawthorn have the fastest lap for the E Tyre of the Silverstone Circuit? ### answer: SELECT date FROM table_name_36 WHERE fastest_lap = "mike hawthorn" AND tyre = "e" AND circuit = "silverstone" ### context: CREATE TABLE table_name_36 (date VARCHAR, circuit VARCHAR, fastest_lap VARCH...
### question: What was the Tyre for 19 January? ### answer: SELECT tyre FROM table_name_95 WHERE date = "19 january" ### context: CREATE TABLE table_name_95 (tyre VARCHAR, date VARCHAR)
### question: What individual(s) had Pole Position for Tyre F? ### answer: SELECT pole_position FROM table_name_67 WHERE tyre = "f" ### context: CREATE TABLE table_name_67 (pole_position VARCHAR, tyre VARCHAR)
### question: Who won the race on 24 August? ### answer: SELECT winning_driver FROM table_name_99 WHERE date = "24 august" ### context: CREATE TABLE table_name_99 (winning_driver VARCHAR, date VARCHAR)
### question: During what race did Mike Hawthorn have the Fastest Lap and Peter Collins win? ### answer: SELECT race FROM table_name_51 WHERE fastest_lap = "mike hawthorn" AND winning_driver = "peter collins" ### context: CREATE TABLE table_name_51 (race VARCHAR, fastest_lap VARCHAR, winning_driver VARCHAR)
### question: What race occurred on the date of 15 June? ### answer: SELECT race FROM table_name_74 WHERE date = "15 june" ### context: CREATE TABLE table_name_74 (race VARCHAR, date VARCHAR)
### question: What's the lowest attendance for October 13, 1968, and is larger than week 5? ### answer: SELECT MIN(attendance) FROM table_name_19 WHERE date = "october 13, 1968" AND week > 5 ### context: CREATE TABLE table_name_19 (attendance INTEGER, date VARCHAR, week VARCHAR)
### question: What was the attendance on October 27, 1968? ### answer: SELECT MAX(week) FROM table_name_9 WHERE date = "october 27, 1968" ### context: CREATE TABLE table_name_9 (week INTEGER, date VARCHAR)
### question: What was the attendance on November 3, 1968, that was a week smaller than 8? ### answer: SELECT COUNT(attendance) FROM table_name_81 WHERE date = "november 3, 1968" AND week < 8 ### context: CREATE TABLE table_name_81 (attendance VARCHAR, date VARCHAR, week VARCHAR)
### question: What is the lowest ranking team in Australia? ### answer: SELECT MIN(rank) FROM table_name_57 WHERE country = "australia" ### context: CREATE TABLE table_name_57 (rank INTEGER, country VARCHAR)
### question: Which score happened on 11 february 1996? ### answer: SELECT score FROM table_name_37 WHERE date = "11 february 1996" ### context: CREATE TABLE table_name_37 (score VARCHAR, date VARCHAR)
### question: What was the result of the Competition of euro 2000 qualifier? ### answer: SELECT result FROM table_name_78 WHERE competition = "euro 2000 qualifier" ### context: CREATE TABLE table_name_78 (result VARCHAR, competition VARCHAR)
### question: Which venue was used 11 february 1996? ### answer: SELECT venue FROM table_name_45 WHERE date = "11 february 1996" ### context: CREATE TABLE table_name_45 (venue VARCHAR, date VARCHAR)
### question: Which venue has a Score of 1–0, and a Competition of 2002 world cup qualifier? ### answer: SELECT venue FROM table_name_91 WHERE score = "1–0" AND competition = "2002 world cup qualifier" ### context: CREATE TABLE table_name_91 (venue VARCHAR, score VARCHAR, competition VARCHAR)
### question: Where did the game on March 11 take place and how many people attended? ### answer: SELECT location_attendance FROM table_name_68 WHERE date = "march 11" ### context: CREATE TABLE table_name_68 (location_attendance VARCHAR, date VARCHAR)
### question: What chassis recorded 5 points? ### answer: SELECT chassis FROM table_name_68 WHERE points = 5 ### context: CREATE TABLE table_name_68 (chassis VARCHAR, points VARCHAR)
### question: What is the low point total for arrows a22 chassis? ### answer: SELECT MIN(points) FROM table_name_3 WHERE chassis = "arrows a22" ### context: CREATE TABLE table_name_3 (points INTEGER, chassis VARCHAR)
### question: How many points for the simtek s951 chassis? ### answer: SELECT COUNT(points) FROM table_name_92 WHERE chassis = "simtek s951" ### context: CREATE TABLE table_name_92 (points VARCHAR, chassis VARCHAR)
### question: What Chassis has a year later than 1989? ### answer: SELECT chassis FROM table_name_31 WHERE year > 1989 ### context: CREATE TABLE table_name_31 (chassis VARCHAR, year INTEGER)
### question: What is the Tyres with a ford dfz v8 engine(s) with a chassis of coloni fc187? ### answer: SELECT tyres FROM table_name_27 WHERE engine_s_ = "ford dfz v8" AND chassis = "coloni fc187" ### context: CREATE TABLE table_name_27 (tyres VARCHAR, engine_s_ VARCHAR, chassis VARCHAR)
### question: What is the round of the match at venue A with a result of 1-2 on 7 December 2004? ### answer: SELECT round FROM table_name_17 WHERE venue = "a" AND result = "1-2" AND date = "7 december 2004" ### context: CREATE TABLE table_name_17 (round VARCHAR, date VARCHAR, venue VARCHAR, result VARCHAR)
### question: Who was the opponent of the match in round sf with a result of 0-0? ### answer: SELECT opponent FROM table_name_97 WHERE round = "sf" AND result = "0-0" ### context: CREATE TABLE table_name_97 (opponent VARCHAR, round VARCHAR, result VARCHAR)
### question: Who is the opponent of the match with an attendance larger than 59,000? ### answer: SELECT opponent FROM table_name_89 WHERE attendance > 59 OFFSET 000 ### context: CREATE TABLE table_name_89 (opponent VARCHAR, attendance INTEGER)
### question: How many apperances for shakhtar donetsk? ### answer: SELECT COUNT(appearances) FROM table_name_84 WHERE team = "shakhtar donetsk" ### context: CREATE TABLE table_name_84 (appearances VARCHAR, team VARCHAR)
### question: How many appearances for psv eindhoven ranked above 11? ### answer: SELECT SUM(appearances) FROM table_name_16 WHERE team = "psv eindhoven" AND rank < 11 ### context: CREATE TABLE table_name_16 (appearances INTEGER, team VARCHAR, rank VARCHAR)
### question: How many caps for alister campbell from brumbies? ### answer: SELECT MIN(caps) FROM table_name_67 WHERE club_province = "brumbies" AND player = "alister campbell" ### context: CREATE TABLE table_name_67 (caps INTEGER, club_province VARCHAR, player VARCHAR)
### question: When was the player born who has 1 caps? ### answer: SELECT date_of_birth__age_ FROM table_name_53 WHERE caps = 1 ### context: CREATE TABLE table_name_53 (date_of_birth__age_ VARCHAR, caps VARCHAR)
### question: When was the queensland reds lock player born? ### answer: SELECT date_of_birth__age_ FROM table_name_7 WHERE position = "lock" AND club_province = "queensland reds" ### context: CREATE TABLE table_name_7 (date_of_birth__age_ VARCHAR, position VARCHAR, club_province VARCHAR)
### question: Which Opponent has a Round larger than 4 and the Event, Draka V? ### answer: SELECT opponent FROM table_name_78 WHERE round > 4 AND event = "draka v" ### context: CREATE TABLE table_name_78 (opponent VARCHAR, round VARCHAR, event VARCHAR)
### question: Which Event has the Opponent, Jason Yee? ### answer: SELECT event FROM table_name_3 WHERE opponent = "jason yee" ### context: CREATE TABLE table_name_3 (event VARCHAR, opponent VARCHAR)
### question: Which Result has the Event Strikeforce and the Method, Ko (spinning back fist)? ### answer: SELECT result FROM table_name_15 WHERE event = "strikeforce" AND method = "ko (spinning back fist)" ### context: CREATE TABLE table_name_15 (result VARCHAR, event VARCHAR, method VARCHAR)
### question: What is the lowest Round with the Location, Las Vegas, Nevada, the Method, Decision (unanimous), and the Event, K-1 World Grand Prix 2003 in Las Vegas II? ### answer: SELECT MIN(round) FROM table_name_87 WHERE location = "las vegas, nevada" AND method = "decision (unanimous)" AND event = "k-1 world grand ...
### question: Which Result has the Event, Strikeforce, and Method, Ko (double roundhouse kick)? ### answer: SELECT result FROM table_name_14 WHERE event = "strikeforce" AND method = "ko (double roundhouse kick)" ### context: CREATE TABLE table_name_14 (result VARCHAR, event VARCHAR, method VARCHAR)
### question: what is the frequency of part number tmn550dcr23gm? ### answer: SELECT frequency FROM table_name_4 WHERE order_part_number = "tmn550dcr23gm" ### context: CREATE TABLE table_name_4 (frequency VARCHAR, order_part_number VARCHAR)
### question: How many games were lost by more than 27 but not more 78 with goals less than 300? ### answer: SELECT AVG(games) FROM table_name_61 WHERE lost > 27 AND points < 78 AND goals_against < 300 ### context: CREATE TABLE table_name_61 (games INTEGER, goals_against VARCHAR, lost VARCHAR, points VARCHAR)
### question: How many games had a tied less 15 with goals against being fewer than 186? ### answer: SELECT COUNT(games) FROM table_name_41 WHERE tied < 15 AND goals_against < 186 ### context: CREATE TABLE table_name_41 (games VARCHAR, tied VARCHAR, goals_against VARCHAR)
### question: What's the least amount of goals for a game that had a tied bigger than 15? ### answer: SELECT MIN(goals_for) FROM table_name_73 WHERE tied > 15 ### context: CREATE TABLE table_name_73 (goals_for INTEGER, tied INTEGER)
### question: What was the highest year that Europe/Africa Zone Group I Group B lost? ### answer: SELECT MAX(year) FROM table_name_79 WHERE competition = "europe/africa zone group i group b" AND result = "lost" ### context: CREATE TABLE table_name_79 (year INTEGER, competition VARCHAR, result VARCHAR)
### question: What is the least number of Gold for a Rank smaller than 5, and 1 silver medal for Poland with more than 1 medal in total? ### answer: SELECT MIN(gold) FROM table_name_31 WHERE rank < 5 AND silver = 1 AND nation = "poland" AND total > 1 ### context: CREATE TABLE table_name_31 (gold INTEGER, total VARCHAR,...
### question: How many silver medals are there with 3 gold medals at a rank above 1? ### answer: SELECT COUNT(silver) FROM table_name_40 WHERE gold = 3 AND rank > 1 ### context: CREATE TABLE table_name_40 (silver VARCHAR, gold VARCHAR, rank VARCHAR)
### question: What is the average number of gold medals with more than 1 bronze medal? ### answer: SELECT AVG(gold) FROM table_name_6 WHERE bronze > 1 ### context: CREATE TABLE table_name_6 (gold INTEGER, bronze INTEGER)
### question: What is the average number of silver medals for rank 2 and more than 1 bronze medal? ### answer: SELECT AVG(silver) FROM table_name_15 WHERE rank = 2 AND bronze > 1 ### context: CREATE TABLE table_name_15 (silver INTEGER, rank VARCHAR, bronze VARCHAR)
### question: Which Manufacturer has a Quantity of 1, and has the LMMR name Great Mountain? ### answer: SELECT manufacturer FROM table_name_85 WHERE quantity = 1 AND lmmr_name = "great mountain" ### context: CREATE TABLE table_name_85 (manufacturer VARCHAR, quantity VARCHAR, lmmr_name VARCHAR)
### question: How many in the majority when Dan Sullivan won? ### answer: SELECT COUNT(majority) FROM table_name_9 WHERE winner = "dan sullivan" ### context: CREATE TABLE table_name_9 (majority VARCHAR, winner VARCHAR)
### question: What is the average decile of the school with a state authority and a roll number of 888? ### answer: SELECT AVG(decile) FROM table_name_62 WHERE authority = "state" AND roll = 888 ### context: CREATE TABLE table_name_62 (decile INTEGER, authority VARCHAR, roll VARCHAR)
### question: What is the area of Mount Albert School? ### answer: SELECT area FROM table_name_85 WHERE name = "mount albert school" ### context: CREATE TABLE table_name_85 (area VARCHAR, name VARCHAR)
### question: What years does Our Lady Sacred Heart School, which is state integrated, have? ### answer: SELECT years FROM table_name_47 WHERE authority = "state integrated" AND name = "our lady sacred heart school" ### context: CREATE TABLE table_name_47 (years VARCHAR, authority VARCHAR, name VARCHAR)
### question: What is the number of asts when rebs are larger than 1,189? ### answer: SELECT asts FROM table_name_76 WHERE rebs > 1 OFFSET 189 ### context: CREATE TABLE table_name_76 (asts VARCHAR, rebs INTEGER)
### question: What did the visiting team score at brunswick street oval? ### answer: SELECT away_team AS score FROM table_name_67 WHERE venue = "brunswick street oval" ### context: CREATE TABLE table_name_67 (away_team VARCHAR, venue VARCHAR)
### question: When did fitzroy play at home? ### answer: SELECT date FROM table_name_38 WHERE home_team = "fitzroy" ### context: CREATE TABLE table_name_38 (date VARCHAR, home_team VARCHAR)
### question: Which rank took place prior to 2000 when the bike was bsl? ### answer: SELECT rank FROM table_name_71 WHERE year < 2000 AND bike = "bsl" ### context: CREATE TABLE table_name_71 (rank VARCHAR, year VARCHAR, bike VARCHAR)
### question: Which constructor has 10-12 rounds and a M7A chassis? ### answer: SELECT constructor FROM table_name_40 WHERE rounds = "10-12" AND chassis = "m7a" ### context: CREATE TABLE table_name_40 (constructor VARCHAR, rounds VARCHAR, chassis VARCHAR)
### question: The rounds of 1-2, 4-10, 12 belong to which entrant? ### answer: SELECT entrant FROM table_name_96 WHERE rounds = "1-2, 4-10, 12" ### context: CREATE TABLE table_name_96 (entrant VARCHAR, rounds VARCHAR)
### question: What tyre has 1 round with Dave Charlton driving? ### answer: SELECT tyre FROM table_name_91 WHERE rounds = "1" AND driver = "dave charlton" ### context: CREATE TABLE table_name_91 (tyre VARCHAR, rounds VARCHAR, driver VARCHAR)
### question: Which driver has a G tyre, rounds of 2-12 and a M7A chassis? ### answer: SELECT driver FROM table_name_18 WHERE tyre = "g" AND rounds = "2-12" AND chassis = "m7a" ### context: CREATE TABLE table_name_18 (driver VARCHAR, chassis VARCHAR, tyre VARCHAR, rounds VARCHAR)
### question: Who was the leading scorer of the game where the Knicks were the home team and the Warriors were the visiting team? ### answer: SELECT leading_scorer FROM table_name_53 WHERE home = "knicks" AND visitor = "warriors" ### context: CREATE TABLE table_name_53 (leading_scorer VARCHAR, home VARCHAR, visitor VAR...
### question: What is the lowest Not Outs with an average lower than 31.25, fewer than 13 matches, and fewer than 327 runs? ### answer: SELECT MIN(not_outs) FROM table_name_8 WHERE average < 31.25 AND matches < 13 AND runs < 327 ### context: CREATE TABLE table_name_8 (not_outs INTEGER, runs VARCHAR, average VARCHAR, ma...
### question: What is the total number of runs when the average was less than 31.25 and there were fewer than 24 innings? ### answer: SELECT COUNT(runs) FROM table_name_51 WHERE average > 31.25 AND innings < 24 ### context: CREATE TABLE table_name_51 (runs VARCHAR, average VARCHAR, innings VARCHAR)
### question: What is the lowest number of Not Outs when there were more than 25 innings? ### answer: SELECT MIN(not_outs) FROM table_name_76 WHERE innings > 25 ### context: CREATE TABLE table_name_76 (not_outs INTEGER, innings INTEGER)
### question: What is the number of Not Outs when there were more than 327 runs and 24 innings, and an average of 29.54 ### answer: SELECT not_outs FROM table_name_41 WHERE runs > 327 AND innings > 24 AND average = 29.54 ### context: CREATE TABLE table_name_41 (not_outs VARCHAR, average VARCHAR, runs VARCHAR, innings V...
### question: What is the total number of runs where the average is less than 27.22? ### answer: SELECT COUNT(runs) FROM table_name_87 WHERE average < 27.22 ### context: CREATE TABLE table_name_87 (runs VARCHAR, average INTEGER)
### question: What's the hometown of the player who went to lsu? ### answer: SELECT hometown FROM table_name_32 WHERE college = "lsu" ### context: CREATE TABLE table_name_32 (hometown VARCHAR, college VARCHAR)
### question: What college did delray brooks go to? ### answer: SELECT college FROM table_name_23 WHERE player = "delray brooks" ### context: CREATE TABLE table_name_23 (college VARCHAR, player VARCHAR)
### question: What school did delray brooks go to? ### answer: SELECT school FROM table_name_72 WHERE player = "delray brooks" ### context: CREATE TABLE table_name_72 (school VARCHAR, player VARCHAR)
### question: Who has a hometown of los angeles, ca? ### answer: SELECT player FROM table_name_52 WHERE hometown = "los angeles, ca" ### context: CREATE TABLE table_name_52 (player VARCHAR, hometown VARCHAR)
### question: What's the hometown of the player who is 6-4? ### answer: SELECT hometown FROM table_name_45 WHERE height = "6-4" ### context: CREATE TABLE table_name_45 (hometown VARCHAR, height VARCHAR)
### question: What college did danny manning go to? ### answer: SELECT college FROM table_name_95 WHERE player = "danny manning" ### context: CREATE TABLE table_name_95 (college VARCHAR, player VARCHAR)
### question: Which model(s) has AGP graphics and 400 FSB (MHz)? ### answer: SELECT model FROM table_name_44 WHERE graphics = "agp" AND fsb__mhz_ = "400" ### context: CREATE TABLE table_name_44 (model VARCHAR, graphics VARCHAR, fsb__mhz_ VARCHAR)
### question: Which model's chipset is intel 955? ### answer: SELECT memory FROM table_name_63 WHERE chipset = "intel 955" ### context: CREATE TABLE table_name_63 (memory VARCHAR, chipset VARCHAR)
### question: What is the chipset in the Precision 340 model that has the rambus memory and 400 or 533 FSB (MHz)? ### answer: SELECT chipset FROM table_name_17 WHERE memory = "rambus" AND fsb__mhz_ = "400 or 533" AND model = "precision 340" ### context: CREATE TABLE table_name_17 (chipset VARCHAR, model VARCHAR, memory...
### question: What type of graphics are present in the Precision 340 model with the intel 850e chipset? ### answer: SELECT graphics FROM table_name_99 WHERE chipset = "intel 850e" AND model = "precision 340" ### context: CREATE TABLE table_name_99 (graphics VARCHAR, chipset VARCHAR, model VARCHAR)
### question: What type of chipset is in the Precision t3400 model with the PCI Express graphics? ### answer: SELECT chipset FROM table_name_97 WHERE graphics = "pci express" AND model = "precision t3400" ### context: CREATE TABLE table_name_97 (chipset VARCHAR, graphics VARCHAR, model VARCHAR)
### question: What is the Time/Retired for brabham - climax, on Grid of 10? ### answer: SELECT time_retired FROM table_name_89 WHERE constructor = "brabham - climax" AND grid = 10 ### context: CREATE TABLE table_name_89 (time_retired VARCHAR, constructor VARCHAR, grid VARCHAR)
### question: How many laps have a Time/Retired of +12.5 secs? ### answer: SELECT COUNT(laps) FROM table_name_87 WHERE time_retired = "+12.5 secs" ### context: CREATE TABLE table_name_87 (laps VARCHAR, time_retired VARCHAR)
### question: What competition was contested at stavanger? ### answer: SELECT competition FROM table_name_77 WHERE venue = "stavanger" ### context: CREATE TABLE table_name_77 (competition VARCHAR, venue VARCHAR)
### question: What is the result of the contest with over 1 scored? ### answer: SELECT result FROM table_name_30 WHERE scored > 1 ### context: CREATE TABLE table_name_30 (result VARCHAR, scored INTEGER)
### question: What was the score of the game where Wallace (17) had the highest points? ### answer: SELECT score FROM table_name_68 WHERE high_points = "wallace (17)" ### context: CREATE TABLE table_name_68 (score VARCHAR, high_points VARCHAR)
### question: Who had the highest points of the game on March 24? ### answer: SELECT high_points FROM table_name_39 WHERE date = "march 24" ### context: CREATE TABLE table_name_39 (high_points VARCHAR, date VARCHAR)
### question: Which pick was from Lamar High School? ### answer: SELECT pick FROM table_name_15 WHERE school = "lamar high school" ### context: CREATE TABLE table_name_15 (pick VARCHAR, school VARCHAR)
### question: Which nationality does Florida Tech have? ### answer: SELECT nationality FROM table_name_1 WHERE school = "florida tech" ### context: CREATE TABLE table_name_1 (nationality VARCHAR, school VARCHAR)
### question: Which nationality's pick was 415? ### answer: SELECT nationality FROM table_name_21 WHERE pick = "415" ### context: CREATE TABLE table_name_21 (nationality VARCHAR, pick VARCHAR)
### question: Which school's nationality was United States when its pick was 595? ### answer: SELECT school FROM table_name_65 WHERE nationality = "united states" AND pick = "595" ### context: CREATE TABLE table_name_65 (school VARCHAR, nationality VARCHAR, pick VARCHAR)
### question: Which school's round was 24? ### answer: SELECT school FROM table_name_41 WHERE round = "24" ### context: CREATE TABLE table_name_41 (school VARCHAR, round VARCHAR)
### question: What Winning Jockey ran in the Tampa Bay Downs Track on Winning Horse Barkley Sound? ### answer: SELECT winning_jockey FROM table_name_86 WHERE track = "tampa bay downs" AND winning_horse = "barkley sound" ### context: CREATE TABLE table_name_86 (winning_jockey VARCHAR, track VARCHAR, winning_horse VARCHA...
### question: What is the Purse in Sunland Park Track? ### answer: SELECT purse___us$__ FROM table_name_37 WHERE track = "sunland park" ### context: CREATE TABLE table_name_37 (purse___us$__ VARCHAR, track VARCHAR)
### question: What Date is Northern Spur Breeders' Cup Stakes Race? ### answer: SELECT date FROM table_name_31 WHERE race = "northern spur breeders' cup stakes" ### context: CREATE TABLE table_name_31 (date VARCHAR, race VARCHAR)