combined_text
stringlengths
106
1.05k
###question:What is the score of the game that holds a record of 80-61?###answer:SELECT score FROM table_name_69 WHERE record = "80-61"###context:CREATE TABLE table_name_69 (score VARCHAR, record VARCHAR)
###question:What is the record of the game with 28,135 people in attendance?###answer:SELECT record FROM table_name_30 WHERE attendance = "28,135"###context:CREATE TABLE table_name_30 (record VARCHAR, attendance VARCHAR)
###question:what team has a score of 2###answer:SELECT score FROM table_name_53 WHERE points = 2###context:CREATE TABLE table_name_53 (score VARCHAR, points VARCHAR)
###question:what team has a score of 11###answer:SELECT record FROM table_name_3 WHERE game = 11###context:CREATE TABLE table_name_3 (record VARCHAR, game VARCHAR)
###question:Which nation finished with a time of 47.049?###answer:SELECT nation FROM table_name_56 WHERE time__sec_ = 47.049###context:CREATE TABLE table_name_56 (nation VARCHAR, time__sec_ VARCHAR)
###question:Which sport has a time over 49?###answer:SELECT sport FROM table_name_53 WHERE time__sec_ > 49###context:CREATE TABLE table_name_53 (sport VARCHAR, time__sec_ INTEGER)
###question:Which nation had a time of 48.38?###answer:SELECT nation FROM table_name_9 WHERE time__sec_ = 48.38###context:CREATE TABLE table_name_9 (nation VARCHAR, time__sec_ VARCHAR)
###question:Which year had a team of Aprilia and a rank of 4th?###answer:SELECT year FROM table_name_17 WHERE team = "aprilia" AND rank = "4th"###context:CREATE TABLE table_name_17 (year VARCHAR, team VARCHAR, rank VARCHAR)
###question:Which class had a machine of RS125R, points over 113, and a rank of 4th?###answer:SELECT class FROM table_name_30 WHERE machine = "rs125r" AND points > 113 AND rank = "4th"###context:CREATE TABLE table_name_30 (class VARCHAR, rank VARCHAR, machine VARCHAR, points VARCHAR)
###question:Which team had a year over 1995, machine of RS125R, and ranked 1st?###answer:SELECT team FROM table_name_95 WHERE year > 1995 AND machine = "rs125r" AND rank = "1st"###context:CREATE TABLE table_name_95 (team VARCHAR, rank VARCHAR, year VARCHAR, machine VARCHAR)
###question:Which Oberliga Bayern has a Season of 1981-82?###answer:SELECT oberliga_bayern FROM table_name_24 WHERE season = "1981-82"###context:CREATE TABLE table_name_24 (oberliga_bayern VARCHAR, season VARCHAR)
###question:Which Oberliga Südwest has an Oberliga Bayern of fc schweinfurt 05?###answer:SELECT oberliga_südwest FROM table_name_82 WHERE oberliga_bayern = "fc schweinfurt 05"###context:CREATE TABLE table_name_82 (oberliga_südwest VARCHAR, oberliga_bayern VARCHAR)
###question:Which Season ha spvgg bayreuth and eintracht trier?###answer:SELECT season FROM table_name_19 WHERE oberliga_bayern = "spvgg bayreuth" AND oberliga_südwest = "eintracht trier"###context:CREATE TABLE table_name_19 (season VARCHAR, oberliga_bayern VARCHAR, oberliga_südwest VARCHAR)
###question:which Oberliga Baden-Württemberg has a Season of 1991-92?###answer:SELECT oberliga_baden_württemberg FROM table_name_41 WHERE season = "1991-92"###context:CREATE TABLE table_name_41 (oberliga_baden_württemberg VARCHAR, season VARCHAR)
###question:Which Oberliga Baden-Württemberg has an Oberliga Hessen of fsv frankfurt in 1993-94?###answer:SELECT oberliga_baden_württemberg FROM table_name_77 WHERE oberliga_hessen = "fsv frankfurt" AND season = "1993-94"###context:CREATE TABLE table_name_77 (oberliga_baden_württemberg VARCHAR, oberliga_hessen VARCHAR,...
###question:which Oberliga Südwes has an Oberliga Baden-Württemberg of sv sandhausen in 1984-85?###answer:SELECT oberliga_südwest FROM table_name_60 WHERE oberliga_baden_württemberg = "sv sandhausen" AND season = "1984-85"###context:CREATE TABLE table_name_60 (oberliga_südwest VARCHAR, oberliga_baden_württemberg VARCHA...
###question:Name the loss with save of || 23,391 ||17-18||?###answer:SELECT loss FROM table_name_86 WHERE save = "|| 23,391 ||17-18||"###context:CREATE TABLE table_name_86 (loss VARCHAR, save VARCHAR)
###question:Name the opponent for save of williams (9)###answer:SELECT opponent FROM table_name_35 WHERE save = "williams (9)"###context:CREATE TABLE table_name_35 (opponent VARCHAR, save VARCHAR)
###question:Name the save for braves for may 15###answer:SELECT save FROM table_name_86 WHERE opponent = "braves" AND date = "may 15"###context:CREATE TABLE table_name_86 (save VARCHAR, opponent VARCHAR, date VARCHAR)
###question:Name the loss for may 1###answer:SELECT loss FROM table_name_4 WHERE date = "may 1"###context:CREATE TABLE table_name_4 (loss VARCHAR, date VARCHAR)
###question:What was the score in the tournament against Ekaterina Makarova?###answer:SELECT score FROM table_name_21 WHERE opponent = "ekaterina makarova"###context:CREATE TABLE table_name_21 (score VARCHAR, opponent VARCHAR)
###question:What is the market for the 11pm-1am Saturday game?###answer:SELECT market_market_rank FROM table_name_3 WHERE saturday = "11pm-1am"###context:CREATE TABLE table_name_3 (market_market_rank VARCHAR, saturday VARCHAR)
###question:what is the name of the holland locale###answer:SELECT name FROM table_name_83 WHERE locale = "holland"###context:CREATE TABLE table_name_83 (name VARCHAR, locale VARCHAR)
###question:How many ranks have an industry of health care?###answer:SELECT COUNT(rank) FROM table_name_42 WHERE primary_industry = "health care"###context:CREATE TABLE table_name_42 (rank VARCHAR, primary_industry VARCHAR)
###question:Which Points have an Opponent of new york islanders, and a Game smaller than 65?###answer:SELECT SUM(points) FROM table_name_96 WHERE opponent = "new york islanders" AND game < 65###context:CREATE TABLE table_name_96 (points INTEGER, opponent VARCHAR, game VARCHAR)
###question:How many Points have a Record of 40–21–12–3, and a March larger than 28?###answer:SELECT COUNT(points) FROM table_name_76 WHERE record = "40–21–12–3" AND march > 28###context:CREATE TABLE table_name_76 (points VARCHAR, record VARCHAR, march VARCHAR)
###question:Which Opponent has a Record of 38–20–12–2?###answer:SELECT opponent FROM table_name_20 WHERE record = "38–20–12–2"###context:CREATE TABLE table_name_20 (opponent VARCHAR, record VARCHAR)
###question:Which Game is the highest one that has Points smaller than 92, and a Score of 1–3?###answer:SELECT MAX(game) FROM table_name_76 WHERE points < 92 AND score = "1–3"###context:CREATE TABLE table_name_76 (game INTEGER, points VARCHAR, score VARCHAR)
###question:What is the accession number of the protein with the common name Purple Sea Urchin?###answer:SELECT accession_number FROM table_name_5 WHERE common_name = "purple sea urchin"###context:CREATE TABLE table_name_5 (accession_number VARCHAR, common_name VARCHAR)
###question:What is the protein name of the protein with a sequence identity to human protein of 32%?###answer:SELECT protein_name FROM table_name_2 WHERE sequence_identity_to_human_protein = "32%"###context:CREATE TABLE table_name_2 (protein_name VARCHAR, sequence_identity_to_human_protein VARCHAR)
###question:What is the sequence length (aa) of the protein with the common name Purple Sea Urchin and a divergence from human lineage less than 742.9?###answer:SELECT SUM(sequence_length__aa_) FROM table_name_67 WHERE common_name = "purple sea urchin" AND divergence_from_human_lineage__mya_ < 742.9###context:CREATE TA...
###question:What is the accession number of the protein with a divergence from human lineage of 937.5?###answer:SELECT accession_number FROM table_name_74 WHERE divergence_from_human_lineage__mya_ = 937.5###context:CREATE TABLE table_name_74 (accession_number VARCHAR, divergence_from_human_lineage__mya_ VARCHAR)
###question:Which Series has a Score of 9–4?###answer:SELECT series FROM table_name_86 WHERE score = "9–4"###context:CREATE TABLE table_name_86 (series VARCHAR, score VARCHAR)
###question:Which Series has an Opponent of calgary flames, and a Score of 9–4?###answer:SELECT series FROM table_name_3 WHERE opponent = "calgary flames" AND score = "9–4"###context:CREATE TABLE table_name_3 (series VARCHAR, opponent VARCHAR, score VARCHAR)
###question:Which Date has a Game smaller than 4, and an Opponent of calgary flames, and a Score of 4–5?###answer:SELECT date FROM table_name_83 WHERE game < 4 AND opponent = "calgary flames" AND score = "4–5"###context:CREATE TABLE table_name_83 (date VARCHAR, score VARCHAR, game VARCHAR, opponent VARCHAR)
###question:Which Date has a Score of 4–5, and a Game smaller than 4?###answer:SELECT date FROM table_name_33 WHERE score = "4–5" AND game < 4###context:CREATE TABLE table_name_33 (date VARCHAR, score VARCHAR, game VARCHAR)
###question:How many founded years had a final af2 season prior to 2009 where the arena was the bi-lo center and the first af2 season was prior to 2000?###answer:SELECT COUNT(founded) FROM table_name_73 WHERE final_af2_season < 2009 AND arena = "bi-lo center" AND first_af2_season < 2000###context:CREATE TABLE table_nam...
###question:What is the mean Founded number when the team is the Baton Rouge Blaze?###answer:SELECT AVG(founded) FROM table_name_96 WHERE team = "baton rouge blaze"###context:CREATE TABLE table_name_96 (founded INTEGER, team VARCHAR)
###question:What is listed as the highest Gold that also has a Silver that's smaller than 1, and has a Total that's smaller than 0?###answer:SELECT MAX(gold) FROM table_name_23 WHERE silver < 1 AND total < 0###context:CREATE TABLE table_name_23 (gold INTEGER, silver VARCHAR, total VARCHAR)
###question:What's the total Rank that has a Gold that's smaller than 0?###answer:SELECT SUM(rank) FROM table_name_2 WHERE gold < 0###context:CREATE TABLE table_name_2 (rank INTEGER, gold INTEGER)
###question:What is listed as the highest Participants that also have a Rank of 5, and Silver that's smaller than 0?###answer:SELECT MAX(participants) FROM table_name_13 WHERE rank = 5 AND silver < 0###context:CREATE TABLE table_name_13 (participants INTEGER, rank VARCHAR, silver VARCHAR)
###question:What is listed as the highest Rank that has a Gold that's larger than 0, and Participants that's smaller than 10?###answer:SELECT MAX(rank) FROM table_name_6 WHERE gold > 0 AND participants < 10###context:CREATE TABLE table_name_6 (rank INTEGER, gold VARCHAR, participants VARCHAR)
###question:What is the total number of Participants that has Silver that's smaller than 0?###answer:SELECT SUM(participants) FROM table_name_38 WHERE silver < 0###context:CREATE TABLE table_name_38 (participants INTEGER, silver INTEGER)
###question:Which skip has Zrinka Muhek as Second?###answer:SELECT skip FROM table_name_90 WHERE second = "zrinka muhek"###context:CREATE TABLE table_name_90 (skip VARCHAR, second VARCHAR)
###question:What is the name of the second who has Caroline Reed as third?###answer:SELECT second FROM table_name_96 WHERE third = "caroline reed"###context:CREATE TABLE table_name_96 (second VARCHAR, third VARCHAR)
###question:Which lead has Kirsty Balfour as second?###answer:SELECT lead FROM table_name_22 WHERE skip = "kirsty balfour"###context:CREATE TABLE table_name_22 (lead VARCHAR, skip VARCHAR)
###question:What is the name of the third who has Barbora Vojtusova as Skip?###answer:SELECT third FROM table_name_47 WHERE skip = "barbora vojtusova"###context:CREATE TABLE table_name_47 (third VARCHAR, skip VARCHAR)
###question:Who is the Second with Nikolina Petric as Third?###answer:SELECT second FROM table_name_41 WHERE third = "nikolina petric"###context:CREATE TABLE table_name_41 (second VARCHAR, third VARCHAR)
###question:Which Lead has Katarina Radonic as Skip?###answer:SELECT lead FROM table_name_10 WHERE skip = "katarina radonic"###context:CREATE TABLE table_name_10 (lead VARCHAR, skip VARCHAR)
###question:Who manufactured the motorcycle that did 24 laps and 9 grids?###answer:SELECT manufacturer FROM table_name_84 WHERE laps = 24 AND grid = 9###context:CREATE TABLE table_name_84 (manufacturer VARCHAR, laps VARCHAR, grid VARCHAR)
###question:How many grids correspond to more than 24 laps?###answer:SELECT MAX(grid) FROM table_name_18 WHERE laps > 24###context:CREATE TABLE table_name_18 (grid INTEGER, laps INTEGER)
###question:What is the time with 10 grids?###answer:SELECT time_retired FROM table_name_81 WHERE grid = 10###context:CREATE TABLE table_name_81 (time_retired VARCHAR, grid VARCHAR)
###question:How many grids have more than 24 laps with a time/retired of +1:12.208?###answer:SELECT SUM(grid) FROM table_name_96 WHERE time_retired = "+1:12.208" AND laps > 24###context:CREATE TABLE table_name_96 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
###question:What is the score from the winner Keith Clearwater (1)?###answer:SELECT score FROM table_name_60 WHERE winner = "keith clearwater (1)"###context:CREATE TABLE table_name_60 (score VARCHAR, winner VARCHAR)
###question:What is the date where the winner was Tom Kite (10)?###answer:SELECT date FROM table_name_24 WHERE winner = "tom kite (10)"###context:CREATE TABLE table_name_24 (date VARCHAR, winner VARCHAR)
###question:Which Week had a Date of december 4, 1960?###answer:SELECT week FROM table_name_63 WHERE date = "december 4, 1960"###context:CREATE TABLE table_name_63 (week VARCHAR, date VARCHAR)
###question:Which player has a last name of baron?###answer:SELECT bats FROM table_name_93 WHERE surname = "baron"###context:CREATE TABLE table_name_93 (bats VARCHAR, surname VARCHAR)
###question:Which batter has a uni# of 31?###answer:SELECT bats FROM table_name_17 WHERE uni_number = 31###context:CREATE TABLE table_name_17 (bats VARCHAR, uni_number VARCHAR)
###question:Which batter has the last name Graham?###answer:SELECT bats FROM table_name_61 WHERE surname = "graham"###context:CREATE TABLE table_name_61 (bats VARCHAR, surname VARCHAR)
###question:Which Home has a Date of april 1?###answer:SELECT home FROM table_name_56 WHERE date = "april 1"###context:CREATE TABLE table_name_56 (home VARCHAR, date VARCHAR)
###question:Which Home has a Record of 16–17–6?###answer:SELECT home FROM table_name_5 WHERE record = "16–17–6"###context:CREATE TABLE table_name_5 (home VARCHAR, record VARCHAR)
###question:Which Date has a Score of 2–7, and a Record of 5–8–2?###answer:SELECT date FROM table_name_50 WHERE score = "2–7" AND record = "5–8–2"###context:CREATE TABLE table_name_50 (date VARCHAR, score VARCHAR, record VARCHAR)
###question:Which Record has a Score of 2–4, and a Home of quebec nordiques?###answer:SELECT record FROM table_name_23 WHERE score = "2–4" AND home = "quebec nordiques"###context:CREATE TABLE table_name_23 (record VARCHAR, score VARCHAR, home VARCHAR)
###question:Which Record has a Home of edmonton oilers, and a Score of 3–6?###answer:SELECT record FROM table_name_49 WHERE home = "edmonton oilers" AND score = "3–6"###context:CREATE TABLE table_name_49 (record VARCHAR, home VARCHAR, score VARCHAR)
###question:Which Home has a Record of 11–14–4?###answer:SELECT home FROM table_name_50 WHERE record = "11–14–4"###context:CREATE TABLE table_name_50 (home VARCHAR, record VARCHAR)
###question:What is the series episode number with a segment of D, and having fluorescent tubes?###answer:SELECT series_ep FROM table_name_22 WHERE segment_d = "fluorescent tubes"###context:CREATE TABLE table_name_22 (series_ep VARCHAR, segment_d VARCHAR)
###question:What is the Netflix number having a series episode of 1-01?###answer:SELECT netflix FROM table_name_47 WHERE series_ep = "1-01"###context:CREATE TABLE table_name_47 (netflix VARCHAR, series_ep VARCHAR)
###question:What is the Netflix number having a segment D, of NED can corn?###answer:SELECT netflix FROM table_name_2 WHERE segment_d = "ned can corn"###context:CREATE TABLE table_name_2 (netflix VARCHAR, segment_d VARCHAR)
###question:What is the segment A name, having a Netflix of s01e12?###answer:SELECT segment_a FROM table_name_18 WHERE netflix = "s01e12"###context:CREATE TABLE table_name_18 (segment_a VARCHAR, netflix VARCHAR)
###question:What is the Netflix number having a segment of C of pills?###answer:SELECT netflix FROM table_name_53 WHERE segment_c = "pills"###context:CREATE TABLE table_name_53 (netflix VARCHAR, segment_c VARCHAR)
###question:For a segment D of pasta, what is the segment B?###answer:SELECT segment_b FROM table_name_93 WHERE segment_d = "pasta"###context:CREATE TABLE table_name_93 (segment_b VARCHAR, segment_d VARCHAR)
###question:Which sport resulted in a gold medal in the 2000 Sydney games?###answer:SELECT sport FROM table_name_41 WHERE medal = "gold" AND games = "2000 sydney"###context:CREATE TABLE table_name_41 (sport VARCHAR, medal VARCHAR, games VARCHAR)
###question:Which wrestling event was at the 2008 Beijing games?###answer:SELECT event FROM table_name_31 WHERE sport = "wrestling" AND games = "2008 beijing"###context:CREATE TABLE table_name_31 (event VARCHAR, sport VARCHAR, games VARCHAR)
###question:What wrestling event was participated in during the 2008 Beijing games?###answer:SELECT event FROM table_name_28 WHERE games = "2008 beijing" AND sport = "wrestling"###context:CREATE TABLE table_name_28 (event VARCHAR, games VARCHAR, sport VARCHAR)
###question:after december 29 what is the score?###answer:SELECT score FROM table_name_50 WHERE december > 29###context:CREATE TABLE table_name_50 (score VARCHAR, december INTEGER)
###question:Wjat game 3 has ian french as a game of 2?###answer:SELECT game_3 FROM table_name_92 WHERE game_2 = "ian french"###context:CREATE TABLE table_name_92 (game_3 VARCHAR, game_2 VARCHAR)
###question:What game 1 has halfback as a position?###answer:SELECT game_1 FROM table_name_13 WHERE position = "halfback"###context:CREATE TABLE table_name_13 (game_1 VARCHAR, position VARCHAR)
###question:What position has colin scott as game 1?###answer:SELECT position FROM table_name_62 WHERE game_1 = "colin scott"###context:CREATE TABLE table_name_62 (position VARCHAR, game_1 VARCHAR)
###question:What game 1 has bob lindner as game 2?###answer:SELECT game_1 FROM table_name_18 WHERE game_2 = "bob lindner"###context:CREATE TABLE table_name_18 (game_1 VARCHAR, game_2 VARCHAR)
###question:What pick was mario williams before 2006?###answer:SELECT SUM(pick) FROM table_name_72 WHERE player_name = "mario williams" AND year < 2006###context:CREATE TABLE table_name_72 (pick INTEGER, player_name VARCHAR, year VARCHAR)
###question:What is the entered office that has 1337 as the left office?###answer:SELECT entered_office FROM table_name_74 WHERE left_office = "1337"###context:CREATE TABLE table_name_74 (entered_office VARCHAR, left_office VARCHAR)
###question:What is the born-died that has office of 13 September 1229 as the entered?###answer:SELECT born_died FROM table_name_8 WHERE entered_office = "13 september 1229"###context:CREATE TABLE table_name_8 (born_died VARCHAR, entered_office VARCHAR)
###question:Which Blagojevich (D) has a Source of zogby/wsj, and a Topinka (R) of 33.2%?###answer:SELECT blagojevich__d_ FROM table_name_5 WHERE source = "zogby/wsj" AND topinka__r_ = "33.2%"###context:CREATE TABLE table_name_5 (blagojevich__d_ VARCHAR, source VARCHAR, topinka__r_ VARCHAR)
###question:Which Blagojevich (D) has a Source of zogby/wsj, and a Date of october 16, 2006?###answer:SELECT blagojevich__d_ FROM table_name_70 WHERE source = "zogby/wsj" AND date = "october 16, 2006"###context:CREATE TABLE table_name_70 (blagojevich__d_ VARCHAR, source VARCHAR, date VARCHAR)
###question:Which Blagojevich (D) happened on october 16, 2006?###answer:SELECT blagojevich__d_ FROM table_name_77 WHERE date = "october 16, 2006"###context:CREATE TABLE table_name_77 (blagojevich__d_ VARCHAR, date VARCHAR)
###question:Which Topinka happened on january 22, 2006?###answer:SELECT topinka__r_ FROM table_name_11 WHERE date = "january 22, 2006"###context:CREATE TABLE table_name_11 (topinka__r_ VARCHAR, date VARCHAR)
###question:Which Date has a Remainder of 20%?###answer:SELECT date FROM table_name_21 WHERE remainder = "20%"###context:CREATE TABLE table_name_21 (date VARCHAR, remainder VARCHAR)
###question:Which Source has a Remainder of 15%, and a Topinka of 26%?###answer:SELECT source FROM table_name_78 WHERE remainder = "15%" AND topinka__r_ = "26%"###context:CREATE TABLE table_name_78 (source VARCHAR, remainder VARCHAR, topinka__r_ VARCHAR)
###question:What season had more than 12 contestants in which greydis gil won?###answer:SELECT season FROM table_name_98 WHERE number_of_contestants > 12 AND winner = "greydis gil"###context:CREATE TABLE table_name_98 (season VARCHAR, number_of_contestants VARCHAR, winner VARCHAR)
###question:How many contestants were there in a season where alejandra espinoza won?###answer:SELECT COUNT(number_of_contestants) FROM table_name_65 WHERE winner = "alejandra espinoza"###context:CREATE TABLE table_name_65 (number_of_contestants VARCHAR, winner VARCHAR)
###question:Record description of maximum load to m (ft), and a Date of 23 september 1961 is what pilot?###answer:SELECT pilot FROM table_name_89 WHERE record_description = "maximum load to m (ft)" AND date = "23 september 1961"###context:CREATE TABLE table_name_89 (pilot VARCHAR, record_description VARCHAR, date VARCH...
###question:Date of 23 september 1961, and a Pilot of b.v. zemskov had what record description?###answer:SELECT record_description FROM table_name_38 WHERE date = "23 september 1961" AND pilot = "b.v. zemskov"###context:CREATE TABLE table_name_38 (record_description VARCHAR, date VARCHAR, pilot VARCHAR)
###question:Type of mi-10r, and a Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov is what date?###answer:SELECT date FROM table_name_97 WHERE type = "mi-10r" AND record_description = "altitude with kg (lb) payload" AND pilot = "g.v. alfyorov"###context:CREATE TABLE table_name_97 (date ...
###question:Record description of altitude with kg (lb) payload, and a Pilot of g.v. alfyorov had what type?###answer:SELECT type FROM table_name_73 WHERE record_description = "altitude with kg (lb) payload" AND pilot = "g.v. alfyorov"###context:CREATE TABLE table_name_73 (type VARCHAR, record_description VARCHAR, pilo...
###question:Pilot of g.v. alfyorov, and a Record description of altitude with kg (lb) payload, and a Type of mi-10 involved what date?###answer:SELECT date FROM table_name_39 WHERE pilot = "g.v. alfyorov" AND record_description = "altitude with kg (lb) payload" AND type = "mi-10"###context:CREATE TABLE table_name_39 (d...
###question:Achievement of m (ft), and a Type of mi-10r, and a Pilot of v.p. koloshenko, and a Date of 28 may 1965 had what record description?###answer:SELECT record_description FROM table_name_96 WHERE achievement = "m (ft)" AND type = "mi-10r" AND pilot = "v.p. koloshenko" AND date = "28 may 1965"###context:CREATE T...
###question:When was the date of death for the person married to Charles II?###answer:SELECT death FROM table_name_86 WHERE spouse = "charles ii"###context:CREATE TABLE table_name_86 (death VARCHAR, spouse VARCHAR)
###question:On what date did James II take a consort?###answer:SELECT became_consort FROM table_name_16 WHERE spouse = "james ii"###context:CREATE TABLE table_name_16 (became_consort VARCHAR, spouse VARCHAR)
###question:What is the total number of field goals a player had when there were more than 0 extra points and there were 5 touchdowns?###answer:SELECT COUNT(field_goals) FROM table_name_6 WHERE extra_points > 0 AND touchdowns = 5###context:CREATE TABLE table_name_6 (field_goals VARCHAR, extra_points VARCHAR, touchdowns...
###question:What is the sum of all the touchdowns when the player had more than 0 extra points and less than 0 field goals?###answer:SELECT SUM(touchdowns) FROM table_name_44 WHERE extra_points > 0 AND field_goals < 0###context:CREATE TABLE table_name_44 (touchdowns INTEGER, extra_points VARCHAR, field_goals VARCHAR)