text
stringlengths
114
1.06k
### question: What is the low bronze total for the team with 4 total and under 1 gold? ### answer: SELECT MIN(bronze) FROM table_name_66 WHERE total = 4 AND gold < 1 ### context: CREATE TABLE table_name_66 (bronze INTEGER, total VARCHAR, gold VARCHAR)
### question: What is the average total for teams with over 3 bronzes and over 8 golds? ### answer: SELECT AVG(total) FROM table_name_33 WHERE bronze > 3 AND gold > 8 ### context: CREATE TABLE table_name_33 (total INTEGER, bronze VARCHAR, gold VARCHAR)
### question: What is the low silver total associated with under 1 total? ### answer: SELECT MIN(silver) FROM table_name_99 WHERE total < 1 ### context: CREATE TABLE table_name_99 (silver INTEGER, total INTEGER)
### question: What is the number of points associated with the highest position under 9 and a current position of 22? ### answer: SELECT points FROM table_name_92 WHERE highest_position < 9 AND position = 22 ### context: CREATE TABLE table_name_92 (points VARCHAR, highest_position VARCHAR, position VARCHAR)
### question: Performer 3 of paul merton, and a Performer 4 of sandi toksvig is which performer 1? ### answer: SELECT performer_1 FROM table_name_93 WHERE performer_3 = "paul merton" AND performer_4 = "sandi toksvig" ### context: CREATE TABLE table_name_93 (performer_1 VARCHAR, performer_3 VARCHAR, performer_4 VARCHAR)
### question: Episode of 16 involves which performer 1? ### answer: SELECT performer_1 FROM table_name_64 WHERE episode = 16 ### context: CREATE TABLE table_name_64 (performer_1 VARCHAR, episode VARCHAR)
### question: Performer 2 of compilation 1 had what performer 1? ### answer: SELECT performer_1 FROM table_name_55 WHERE performer_2 = "compilation 1" ### context: CREATE TABLE table_name_55 (performer_1 VARCHAR, performer_2 VARCHAR)
### question: Which Schwaben has an Oberbayern of fc ingolstadt 04 and a Mittelfranken of sv seligenporten ### answer: SELECT schwaben FROM table_name_98 WHERE oberbayern = "fc ingolstadt 04" AND mittelfranken = "sv seligenporten" ### context: CREATE TABLE table_name_98 (schwaben VARCHAR, oberbayern VARCHAR, mittelfran...
### question: Which Schwaben has a Oberbayern of fc bayern munich ii and a Mittelfranken of 1. fc nuremberg ii? ### answer: SELECT schwaben FROM table_name_15 WHERE oberbayern = "fc bayern munich ii" AND mittelfranken = "1. fc nuremberg ii" ### context: CREATE TABLE table_name_15 (schwaben VARCHAR, oberbayern VARCHAR, ...
### question: Who was the incumbent for south carolina 3 district? ### answer: SELECT incumbent FROM table_name_64 WHERE district = "south carolina 3" ### context: CREATE TABLE table_name_64 (incumbent VARCHAR, district VARCHAR)
### question: When was the incumbent from the south carolina 1 district first elected? ### answer: SELECT first_elected FROM table_name_56 WHERE district = "south carolina 1" ### context: CREATE TABLE table_name_56 (first_elected VARCHAR, district VARCHAR)
### question: Who was the incumbent that was first elected in 1892 and retired to run for the senate democratic hold? ### answer: SELECT incumbent FROM table_name_96 WHERE first_elected = "1892" AND result = "retired to run for the senate democratic hold" ### context: CREATE TABLE table_name_96 (incumbent VARCHAR, firs...
### question: Who was the incumbent that retired to run for the senate democratic hold? ### answer: SELECT incumbent FROM table_name_82 WHERE result = "retired to run for the senate democratic hold" ### context: CREATE TABLE table_name_82 (incumbent VARCHAR, result VARCHAR)
### question: What was the result of W. Jasper Talbert who was first elected in 1892? ### answer: SELECT result FROM table_name_83 WHERE first_elected = "1892" AND incumbent = "w. jasper talbert" ### context: CREATE TABLE table_name_83 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR)
### question: Which Nationality has a 2.24 of xo, and a 2.20 of xo? ### answer: SELECT nationality FROM table_name_35 WHERE 224 = "xo" AND 220 = "xo" ### context: CREATE TABLE table_name_35 (nationality VARCHAR)
### question: Which Athlete has a 2.24 of xo, and a 2.20 of o, and a 2.15 of o? ### answer: SELECT athlete FROM table_name_8 WHERE 224 = "xo" AND 220 = "o" AND 215 = "o" ### context: CREATE TABLE table_name_8 (athlete VARCHAR)
### question: What is the earliest election with more than 7 candidates nominated, a percentage of the popular vote of 2.75%, and 0 seats won? ### answer: SELECT MIN(election) FROM table_name_69 WHERE _number_of_candidates_nominated > 7 AND _percentage_of_popular_vote = "2.75%" AND _number_of_seats_won < 0 ### context:...
### question: How much Played has a Lost larger than 14, and Drawn of 8, and a Team of ipatinga? ### answer: SELECT SUM(played) FROM table_name_22 WHERE lost > 14 AND drawn = 8 AND team = "ipatinga" ### context: CREATE TABLE table_name_22 (played INTEGER, team VARCHAR, lost VARCHAR, drawn VARCHAR)
### question: How many Drawn have a Difference of 3, and Points smaller than 52? ### answer: SELECT COUNT(drawn) FROM table_name_55 WHERE difference = "3" AND points < 52 ### context: CREATE TABLE table_name_55 (drawn VARCHAR, difference VARCHAR, points VARCHAR)
### question: Which Points is the highest one that has a Position smaller than 4, and a Team of sΓ£o paulo, and Drawn larger than 12? ### answer: SELECT MAX(points) FROM table_name_80 WHERE position < 4 AND team = "sΓ£o paulo" AND drawn > 12 ### context: CREATE TABLE table_name_80 (points INTEGER, drawn VARCHAR, position...
### question: How many Lost have Points larger than 40, and a Position of 11, and a Played smaller than 38? ### answer: SELECT SUM(lost) FROM table_name_18 WHERE points > 40 AND position = 11 AND played < 38 ### context: CREATE TABLE table_name_18 (lost INTEGER, played VARCHAR, points VARCHAR, position VARCHAR)
### question: What is the lowest number of games loss with a Points difference of 40 - 17, and over 6 games? ### answer: SELECT MIN(lost) FROM table_name_3 WHERE points_difference = "40 - 17" AND games > 6 ### context: CREATE TABLE table_name_3 (lost INTEGER, points_difference VARCHAR, games VARCHAR)
### question: How many games lost for teams with over 6 games? ### answer: SELECT MIN(lost) FROM table_name_46 WHERE games > 6 ### context: CREATE TABLE table_name_46 (lost INTEGER, games INTEGER)
### question: What are the highest number of games drawn for games numbered under 6? ### answer: SELECT MAX(drawn) FROM table_name_80 WHERE games < 6 ### context: CREATE TABLE table_name_80 (drawn INTEGER, games INTEGER)
### question: How many games drawn with a Points difference of 31 - 33, and under 4 games lost? ### answer: SELECT SUM(drawn) FROM table_name_41 WHERE points_difference = "31 - 33" AND lost < 4 ### context: CREATE TABLE table_name_41 (drawn INTEGER, points_difference VARCHAR, lost VARCHAR)
### question: Which Outcome has a Surface of hard (i), and a Date of 28 january 2003? ### answer: SELECT outcome FROM table_name_78 WHERE surface = "hard (i)" AND date = "28 january 2003" ### context: CREATE TABLE table_name_78 (outcome VARCHAR, surface VARCHAR, date VARCHAR)
### question: Which Tournament has an Outcome of winner, and a Surface of hard (i)? ### answer: SELECT tournament FROM table_name_4 WHERE outcome = "winner" AND surface = "hard (i)" ### context: CREATE TABLE table_name_4 (tournament VARCHAR, outcome VARCHAR, surface VARCHAR)
### question: Which Date has a Score of 6–1, 6–2? ### answer: SELECT date FROM table_name_76 WHERE score = "6–1, 6–2" ### context: CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
### question: Which Surface has an Opponent of oleksandra kravets? ### answer: SELECT surface FROM table_name_99 WHERE opponent = "oleksandra kravets" ### context: CREATE TABLE table_name_99 (surface VARCHAR, opponent VARCHAR)
### question: Which Surface has a Date of 3 october 2003? ### answer: SELECT surface FROM table_name_60 WHERE date = "3 october 2003" ### context: CREATE TABLE table_name_60 (surface VARCHAR, date VARCHAR)
### question: Which Surface has a Score of 6–4, 6–2? ### answer: SELECT surface FROM table_name_65 WHERE score = "6–4, 6–2" ### context: CREATE TABLE table_name_65 (surface VARCHAR, score VARCHAR)
### question: How many ranks have a Code (IATA/ICAO) of ord/kord? ### answer: SELECT COUNT(rank) FROM table_name_29 WHERE code__iata_icao_ = "ord/kord" ### context: CREATE TABLE table_name_29 (rank VARCHAR, code__iata_icao_ VARCHAR)
### question: Which Total Cargo (Metric Tonnes) is the highest one that has a Rank smaller than 4, and an Airport of shanghai pudong international airport? ### answer: SELECT MAX(total_cargo__metric_tonnes_) FROM table_name_66 WHERE rank < 4 AND airport = "shanghai pudong international airport" ### context: CREATE TABL...
### question: What is the Per capita income where Median family income is $72,288? ### answer: SELECT per_capita_income FROM table_name_7 WHERE median_family_income = "$72,288" ### context: CREATE TABLE table_name_7 (per_capita_income VARCHAR, median_family_income VARCHAR)
### question: What is the average grid for the +2.2 secs time/retired? ### answer: SELECT AVG(grid) FROM table_name_44 WHERE time_retired = "+2.2 secs" ### context: CREATE TABLE table_name_44 (grid INTEGER, time_retired VARCHAR)
### question: Which Facility ID has a City of license of springfield, ma, and a ERP / Power W smaller than 230? ### answer: SELECT MAX(facility_id) FROM table_name_15 WHERE city_of_license = "springfield, ma" AND erp___power_w < 230 ### context: CREATE TABLE table_name_15 (facility_id INTEGER, city_of_license VARCHAR, ...
### question: Which Frequency has a Facility ID of 13598? ### answer: SELECT frequency FROM table_name_33 WHERE facility_id = 13598 ### context: CREATE TABLE table_name_33 (frequency VARCHAR, facility_id VARCHAR)
### question: WHich Facility ID has a Call sign of wnpr? ### answer: SELECT AVG(facility_id) FROM table_name_64 WHERE call_sign = "wnpr" ### context: CREATE TABLE table_name_64 (facility_id INTEGER, call_sign VARCHAR)
### question: Which Frequency has a Facility ID of 13598? ### answer: SELECT frequency FROM table_name_71 WHERE facility_id = 13598 ### context: CREATE TABLE table_name_71 (frequency VARCHAR, facility_id VARCHAR)
### question: What is the total number of 1sts that Martin Schmitt had where he less than 235.7 points? ### answer: SELECT COUNT(1 AS st__m_) FROM table_name_81 WHERE name = "martin schmitt" AND points < 235.7 ### context: CREATE TABLE table_name_81 (name VARCHAR, points VARCHAR)
### question: What is the total number of attendance for games where buffalo was the home team? ### answer: SELECT COUNT(attendance) FROM table_name_83 WHERE home = "buffalo" ### context: CREATE TABLE table_name_83 (attendance VARCHAR, home VARCHAR)
### question: What was the score of the game on April 28 where Buffalo were the visiting team? ### answer: SELECT score FROM table_name_64 WHERE visitor = "buffalo" AND date = "april 28" ### context: CREATE TABLE table_name_64 (score VARCHAR, visitor VARCHAR, date VARCHAR)
### question: What date was the game where the visiting team was philadelphia? ### answer: SELECT date FROM table_name_10 WHERE visitor = "philadelphia" ### context: CREATE TABLE table_name_10 (date VARCHAR, visitor VARCHAR)
### question: Who got the gold in seoul before 2002? ### answer: SELECT gold FROM table_name_53 WHERE year < 2002 AND location = "seoul" ### context: CREATE TABLE table_name_53 (gold VARCHAR, year VARCHAR, location VARCHAR)
### question: Where did sohn bong-gak win silver? ### answer: SELECT location FROM table_name_14 WHERE silver = "sohn bong-gak" ### context: CREATE TABLE table_name_14 (location VARCHAR, silver VARCHAR)
### question: Who won the bronze when jin kanno won the gold? ### answer: SELECT bronze FROM table_name_99 WHERE gold = "jin kanno" ### context: CREATE TABLE table_name_99 (bronze VARCHAR, gold VARCHAR)
### question: Which Score has an Outcome of runner-up, and a Tournament of johannesburg? ### answer: SELECT score FROM table_name_69 WHERE outcome = "runner-up" AND tournament = "johannesburg" ### context: CREATE TABLE table_name_69 (score VARCHAR, outcome VARCHAR, tournament VARCHAR)
### question: Which Surface has an Opponent of kerry melville reid, and a Score of 6–3, 2–6, 3–6? ### answer: SELECT surface FROM table_name_53 WHERE opponent = "kerry melville reid" AND score = "6–3, 2–6, 3–6" ### context: CREATE TABLE table_name_53 (surface VARCHAR, opponent VARCHAR, score VARCHAR)
### question: Which Outcome has an Opponent of wendy turnbull, and a Surface of grass? ### answer: SELECT outcome FROM table_name_54 WHERE opponent = "wendy turnbull" AND surface = "grass" ### context: CREATE TABLE table_name_54 (outcome VARCHAR, opponent VARCHAR, surface VARCHAR)
### question: Which Tournament has a Date of 22 january 1979? ### answer: SELECT tournament FROM table_name_6 WHERE date = "22 january 1979" ### context: CREATE TABLE table_name_6 (tournament VARCHAR, date VARCHAR)
### question: Which Outcome has a Score of 6–4, 2–6, 6–3? ### answer: SELECT outcome FROM table_name_86 WHERE score = "6–4, 2–6, 6–3" ### context: CREATE TABLE table_name_86 (outcome VARCHAR, score VARCHAR)
### question: Which nation has total medals under 63, less than 2 silver, more than 2 bronze, and a rank of 8? ### answer: SELECT nation FROM table_name_69 WHERE total < 63 AND silver < 2 AND bronze > 2 AND rank = "8" ### context: CREATE TABLE table_name_69 (nation VARCHAR, rank VARCHAR, bronze VARCHAR, total VARCHAR, ...
### question: How many golds have bronze values of 4 and silver values over 2? ### answer: SELECT COUNT(gold) FROM table_name_65 WHERE bronze = 4 AND silver > 2 ### context: CREATE TABLE table_name_65 (gold VARCHAR, bronze VARCHAR, silver VARCHAR)
### question: What is the sum of silver values that have bronze values under 4, golds over 2, and a rank of 3? ### answer: SELECT SUM(silver) FROM table_name_52 WHERE bronze < 4 AND rank = "3" AND gold > 2 ### context: CREATE TABLE table_name_52 (silver INTEGER, gold VARCHAR, bronze VARCHAR, rank VARCHAR)
### question: What is the sum of gold values that have bronze values over 0 and totals under 2? ### answer: SELECT SUM(gold) FROM table_name_34 WHERE bronze > 0 AND total < 2 ### context: CREATE TABLE table_name_34 (gold INTEGER, bronze VARCHAR, total VARCHAR)
### question: What is the smallest gold value that has a total over 15 and bronze values under 31? ### answer: SELECT MIN(gold) FROM table_name_51 WHERE total > 15 AND bronze < 31 ### context: CREATE TABLE table_name_51 (gold INTEGER, total VARCHAR, bronze VARCHAR)
### question: What is the Equatorial diameter of the Body: Mars? ### answer: SELECT equatorial_diameter FROM table_name_24 WHERE body = "mars" ### context: CREATE TABLE table_name_24 (equatorial_diameter VARCHAR, body VARCHAR)
### question: What is the Equatorial diameter of the Body: ceres? ### answer: SELECT equatorial_diameter FROM table_name_33 WHERE body = "ceres" ### context: CREATE TABLE table_name_33 (equatorial_diameter VARCHAR, body VARCHAR)
### question: What is the Flattening ratio associated with the Equatorial diameter of 49,528km? ### answer: SELECT flattening_ratio FROM table_name_79 WHERE equatorial_diameter = "49,528km" ### context: CREATE TABLE table_name_79 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
### question: What is the Equatorial bulge of the Body: Earth? ### answer: SELECT equatorial_bulge FROM table_name_74 WHERE body = "earth" ### context: CREATE TABLE table_name_74 (equatorial_bulge VARCHAR, body VARCHAR)
### question: What is the Flattening ratio associated with the Equatorial diameter of 120,536km? ### answer: SELECT flattening_ratio FROM table_name_75 WHERE equatorial_diameter = "120,536km" ### context: CREATE TABLE table_name_75 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
### question: What is the Flattening ratio associated with the Equatorial diameter of 12,756.28km? ### answer: SELECT flattening_ratio FROM table_name_27 WHERE equatorial_diameter = "12,756.28km" ### context: CREATE TABLE table_name_27 (flattening_ratio VARCHAR, equatorial_diameter VARCHAR)
### question: What is the average Yards with an average of less than 4 and the long is 12 with less than 29 attempts? ### answer: SELECT AVG(yards) FROM table_name_53 WHERE average < 4 AND long = 12 AND attempts < 29 ### context: CREATE TABLE table_name_53 (yards INTEGER, attempts VARCHAR, average VARCHAR, long VARCHAR...
### question: What is the least amount of yards when the average is less than 2.6? ### answer: SELECT MIN(yards) FROM table_name_65 WHERE average < 2.6 ### context: CREATE TABLE table_name_65 (yards INTEGER, average INTEGER)
### question: What is the lease amount of touchdowns with 1318 yards? ### answer: SELECT MIN(touchdowns) FROM table_name_41 WHERE yards = 1318 ### context: CREATE TABLE table_name_41 (touchdowns INTEGER, yards VARCHAR)
### question: What is the number of touchdowns with the average is less than 2.6? ### answer: SELECT COUNT(touchdowns) FROM table_name_80 WHERE average < 2.6 ### context: CREATE TABLE table_name_80 (touchdowns VARCHAR, average INTEGER)
### question: What is the total number for long when there are 19 attempts? ### answer: SELECT COUNT(long) FROM table_name_52 WHERE attempts = 19 ### context: CREATE TABLE table_name_52 (long VARCHAR, attempts VARCHAR)
### question: What was the margin of victory for Olazabal in the German Masters? ### answer: SELECT margin_of_victory FROM table_name_78 WHERE tournament = "german masters" ### context: CREATE TABLE table_name_78 (margin_of_victory VARCHAR, tournament VARCHAR)
### question: What was Olazabal's winning score in the event in which Phillip Price finished 2nd? ### answer: SELECT winning_score FROM table_name_90 WHERE runner_s__up = "phillip price" ### context: CREATE TABLE table_name_90 (winning_score VARCHAR, runner_s__up VARCHAR)
### question: What was Olazabal's winning score in the German Masters? ### answer: SELECT winning_score FROM table_name_62 WHERE tournament = "german masters" ### context: CREATE TABLE table_name_62 (winning_score VARCHAR, tournament VARCHAR)
### question: What was Olazabal's margin of victory int he Ebel European Masters Swiss Open? ### answer: SELECT margin_of_victory FROM table_name_6 WHERE tournament = "ebel european masters swiss open" ### context: CREATE TABLE table_name_6 (margin_of_victory VARCHAR, tournament VARCHAR)
### question: Which Series Ep has a Netflix of s08e18? ### answer: SELECT series_ep FROM table_name_83 WHERE netflix = "s08e18" ### context: CREATE TABLE table_name_83 (series_ep VARCHAR, netflix VARCHAR)
### question: Which Segment B has a Segment D of stone wool insulation? ### answer: SELECT segment_b FROM table_name_92 WHERE segment_d = "stone wool insulation" ### context: CREATE TABLE table_name_92 (segment_b VARCHAR, segment_d VARCHAR)
### question: Which Segment A has a Segment C of poster restoration? ### answer: SELECT segment_a FROM table_name_70 WHERE segment_c = "poster restoration" ### context: CREATE TABLE table_name_70 (segment_a VARCHAR, segment_c VARCHAR)
### question: Which Segment C has a Segment B of fish food? ### answer: SELECT segment_c FROM table_name_54 WHERE segment_b = "fish food" ### context: CREATE TABLE table_name_54 (segment_c VARCHAR, segment_b VARCHAR)
### question: Which Segment C has a Netflix of s08e16? ### answer: SELECT segment_c FROM table_name_43 WHERE netflix = "s08e16" ### context: CREATE TABLE table_name_43 (segment_c VARCHAR, netflix VARCHAR)
### question: What was the name of the competition that had Peterborough Phantoms as an opponent and a date of 2? ### answer: SELECT competition FROM table_name_26 WHERE opponent = "peterborough phantoms" AND date = 2 ### context: CREATE TABLE table_name_26 (competition VARCHAR, opponent VARCHAR, date VARCHAR)
### question: What is the Tally in Kerry County? ### answer: SELECT tally FROM table_name_36 WHERE county = "kerry" ### context: CREATE TABLE table_name_36 (tally VARCHAR, county VARCHAR)
### question: With a Total of less than 29, what is Ian Ryan's most Matches? ### answer: SELECT MAX(matches) FROM table_name_31 WHERE player = "ian ryan" AND total < 29 ### context: CREATE TABLE table_name_31 (matches INTEGER, player VARCHAR, total VARCHAR)
### question: Which LEMA/SUBLEMA that has Votes smaller than 218656, and a Ch of Deputies of 0? ### answer: SELECT lema_sublema FROM table_name_22 WHERE votes < 218656 AND ch_of_deputies = "0" ### context: CREATE TABLE table_name_22 (lema_sublema VARCHAR, votes VARCHAR, ch_of_deputies VARCHAR)
### question: Which LEMA/SUBLEMA has a Ch of Senators of 2? ### answer: SELECT lema_sublema FROM table_name_4 WHERE ch_of_senators = "2" ### context: CREATE TABLE table_name_4 (lema_sublema VARCHAR, ch_of_senators VARCHAR)
### question: what tornament had the scores 6–7, 6–2, 6–4? ### answer: SELECT tournament FROM table_name_22 WHERE score_in_the_final = "6–7, 6–2, 6–4" ### context: CREATE TABLE table_name_22 (tournament VARCHAR, score_in_the_final VARCHAR)
### question: what partner made the scores 6–4, 6–1? ### answer: SELECT partner FROM table_name_19 WHERE score_in_the_final = "6–4, 6–1" ### context: CREATE TABLE table_name_19 (partner VARCHAR, score_in_the_final VARCHAR)
### question: What year had 6.62 m in the notes? ### answer: SELECT year FROM table_name_60 WHERE notes = "6.62 m" ### context: CREATE TABLE table_name_60 (year VARCHAR, notes VARCHAR)
### question: Which competition in Budapest, Hungary gave a result of 8th? ### answer: SELECT competition FROM table_name_1 WHERE position = "8th" AND venue = "budapest, hungary" ### context: CREATE TABLE table_name_1 (competition VARCHAR, position VARCHAR, venue VARCHAR)
### question: Which year did the World indoor championships gave a position of 3rd? ### answer: SELECT SUM(year) FROM table_name_12 WHERE competition = "world indoor championships" AND position = "3rd" ### context: CREATE TABLE table_name_12 (year INTEGER, competition VARCHAR, position VARCHAR)
### question: What were the notes in Toronto, Canada? ### answer: SELECT notes FROM table_name_32 WHERE venue = "toronto, canada" ### context: CREATE TABLE table_name_32 (notes VARCHAR, venue VARCHAR)
### question: Name the most points for class of 125cc and team of mv agusta with year more than 1957 ### answer: SELECT MAX(points) FROM table_name_65 WHERE class = "125cc" AND team = "mv agusta" AND year > 1957 ### context: CREATE TABLE table_name_65 (points INTEGER, year VARCHAR, class VARCHAR, team VARCHAR)
### question: Which ZX Spectrum has a Year larger than 1984, and a Genre of arcade/strategy? ### answer: SELECT zx_spectrum FROM table_name_92 WHERE year > 1984 AND genre = "arcade/strategy" ### context: CREATE TABLE table_name_92 (zx_spectrum VARCHAR, year VARCHAR, genre VARCHAR)
### question: How many years have a Title of kriegspiel? ### answer: SELECT COUNT(year) FROM table_name_16 WHERE title = "kriegspiel" ### context: CREATE TABLE table_name_16 (year VARCHAR, title VARCHAR)
### question: Which ZX Spectrum has a C=64 of c64, and a Title of ankh? ### answer: SELECT zx_spectrum FROM table_name_7 WHERE c = 64 = c64 AND title = "ankh" ### context: CREATE TABLE table_name_7 (zx_spectrum VARCHAR, c64 VARCHAR, title VARCHAR, c VARCHAR)
### question: Which Title has Others of amstrad cpc, and a Genre of arcade? ### answer: SELECT title FROM table_name_22 WHERE others = "amstrad cpc" AND genre = "arcade" ### context: CREATE TABLE table_name_22 (title VARCHAR, others VARCHAR, genre VARCHAR)
### question: What was the result when the attendance was 12,000? ### answer: SELECT result FROM table_name_77 WHERE attendance = "12,000" ### context: CREATE TABLE table_name_77 (result VARCHAR, attendance VARCHAR)
### question: What was the attendance for weeks prior to 5 when there was no game scheduled? ### answer: SELECT attendance FROM table_name_21 WHERE week < 5 AND date = "no game scheduled" ### context: CREATE TABLE table_name_21 (attendance VARCHAR, week VARCHAR, date VARCHAR)
### question: What was the attendance number for the venue of Lakeside Park? ### answer: SELECT attendance FROM table_name_37 WHERE venue = "lakeside park" ### context: CREATE TABLE table_name_37 (attendance VARCHAR, venue VARCHAR)
### question: What is the largest week number for the venue of League Park for the date of November 25, 1920? ### answer: SELECT MAX(week) FROM table_name_63 WHERE venue = "league park" AND date = "november 25, 1920" ### context: CREATE TABLE table_name_63 (week INTEGER, venue VARCHAR, date VARCHAR)
### question: What is Michael's surname? ### answer: SELECT surname FROM table_name_16 WHERE first = "michael" ### context: CREATE TABLE table_name_16 (surname VARCHAR, first VARCHAR)
### question: Which First has Bats of r, and Throws of l, and a DOB of 12 october 1977? ### answer: SELECT first FROM table_name_86 WHERE bats = "r" AND throws = "l" AND dob = "12 october 1977" ### context: CREATE TABLE table_name_86 (first VARCHAR, dob VARCHAR, bats VARCHAR, throws VARCHAR)
### question: When was Maat born? ### answer: SELECT dob FROM table_name_44 WHERE surname = "maat" ### context: CREATE TABLE table_name_44 (dob VARCHAR, surname VARCHAR)
### question: How many bats does Todd have? ### answer: SELECT bats FROM table_name_88 WHERE first = "todd" ### context: CREATE TABLE table_name_88 (bats VARCHAR, first VARCHAR)