text
stringlengths 150
1.06k
| source
dict |
---|---|
### QUESTION
What are the Notes when the Method is decision?
### CONTEXT
CREATE TABLE table_name_74 (notes VARCHAR, method VARCHAR)
### ANSWER
SELECT notes FROM table_name_74 WHERE method = "decision"</s> | {
"answer": "SELECT notes FROM table_name_74 WHERE method = \"decision\"",
"context": "CREATE TABLE table_name_74 (notes VARCHAR, method VARCHAR)",
"question": "What are the Notes when the Method is decision?"
} |
### QUESTION
What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?
### CONTEXT
CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR)
### ANSWER
SELECT SUM(points) FROM table_name_39 WHERE club = "nevėžis-2 kėdainiai" AND goals_conceded > 35</s> | {
"answer": "SELECT SUM(points) FROM table_name_39 WHERE club = \"nevėžis-2 kėdainiai\" AND goals_conceded > 35",
"context": "CREATE TABLE table_name_39 (points INTEGER, club VARCHAR, goals_conceded VARCHAR)",
"question": "What is the sum of the points of club nevėžis-2 kėdainiai, which has more than 35 goals conceded?"
} |
### QUESTION
What is the total losses against 1412, and 10 wins, but draws less than 0?
### CONTEXT
CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)
### ANSWER
SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0</s> | {
"answer": "SELECT SUM(losses) FROM table_name_56 WHERE against > 1412 AND wins = 10 AND draws < 0",
"context": "CREATE TABLE table_name_56 (losses INTEGER, draws VARCHAR, against VARCHAR, wins VARCHAR)",
"question": "What is the total losses against 1412, and 10 wins, but draws less than 0?"
} |
### QUESTION
Who is the perpetrator in Uganda who killed 12 in Kampala?
### CONTEXT
CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR)
### ANSWER
SELECT perpetrator FROM table_name_54 WHERE country = "uganda" AND location = "kampala" AND killed = "12"</s> | {
"answer": "SELECT perpetrator FROM table_name_54 WHERE country = \"uganda\" AND location = \"kampala\" AND killed = \"12\"",
"context": "CREATE TABLE table_name_54 (perpetrator VARCHAR, killed VARCHAR, country VARCHAR, location VARCHAR)",
"question": "Who is the perpetrator in Uganda who killed 12 in Kampala?"
} |
### QUESTION
What is Scotland's winner?
### CONTEXT
CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR)
### ANSWER
SELECT winner FROM table_name_37 WHERE country = "scotland"</s> | {
"answer": "SELECT winner FROM table_name_37 WHERE country = \"scotland\"",
"context": "CREATE TABLE table_name_37 (winner VARCHAR, country VARCHAR)",
"question": "What is Scotland's winner?"
} |
### QUESTION
Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013?
### CONTEXT
CREATE TABLE table_name_51 (semi_final_second_television_commentator VARCHAR, year_s_ VARCHAR, final_television_commentator VARCHAR, spokesperson VARCHAR)
### ANSWER
SELECT semi_final_second_television_commentator FROM table_name_51 WHERE final_television_commentator = "graham norton" AND spokesperson = "scott mills" AND year_s_ < 2013</s> | {
"answer": "SELECT semi_final_second_television_commentator FROM table_name_51 WHERE final_television_commentator = \"graham norton\" AND spokesperson = \"scott mills\" AND year_s_ < 2013",
"context": "CREATE TABLE table_name_51 (semi_final_second_television_commentator VARCHAR, year_s_ VARCHAR, final_television_commentator VARCHAR, spokesperson VARCHAR)",
"question": "Who is the semi-final second television commentator with graham norton as the final television commentator and scott mills as the spokesperson before 2013?"
} |
### QUESTION
How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes?
### CONTEXT
CREATE TABLE table_name_48 (wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR)
### ANSWER
SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl = "caramut" AND byes < 2</s> | {
"answer": "SELECT MAX(wins) FROM table_name_48 WHERE losses < 11 AND mininera_dfl = \"caramut\" AND byes < 2",
"context": "CREATE TABLE table_name_48 (wins INTEGER, byes VARCHAR, losses VARCHAR, mininera_dfl VARCHAR)",
"question": "How many wins for the Caramut team with fewer than 11 losses and fewer than 2 byes?"
} |
### QUESTION
What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service?
### CONTEXT
CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR)
### ANSWER
SELECT language FROM table_name_23 WHERE hdtv = "no" AND package_option = "sky famiglia" AND television_service = "national geographic channel"</s> | {
"answer": "SELECT language FROM table_name_23 WHERE hdtv = \"no\" AND package_option = \"sky famiglia\" AND television_service = \"national geographic channel\"",
"context": "CREATE TABLE table_name_23 (language VARCHAR, television_service VARCHAR, hdtv VARCHAR, package_option VARCHAR)",
"question": "What language has NO, as the HDTV, sky famiglia as the package/option, and national geographic channel as the television service?"
} |
### QUESTION
What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e?
### CONTEXT
CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR)
### ANSWER
SELECT latitude FROM table_name_94 WHERE diameter__km_ = "13km" AND longitude = "72.9° e"</s> | {
"answer": "SELECT latitude FROM table_name_94 WHERE diameter__km_ = \"13km\" AND longitude = \"72.9° e\"",
"context": "CREATE TABLE table_name_94 (latitude VARCHAR, diameter__km_ VARCHAR, longitude VARCHAR)",
"question": "What is the Latitude when the Diameter (km) is 13km, and the Longitude is 72.9° e?"
} |
### QUESTION
What is the total number of Against, when Losses is less than 52, when Matches is greater than 4, and when Draw is less than 2?
### CONTEXT
CREATE TABLE table_name_66 (against VARCHAR, draw VARCHAR, losses VARCHAR, matches VARCHAR)
### ANSWER
SELECT COUNT(against) FROM table_name_66 WHERE losses < 52 AND matches > 4 AND draw < 2</s> | {
"answer": "SELECT COUNT(against) FROM table_name_66 WHERE losses < 52 AND matches > 4 AND draw < 2",
"context": "CREATE TABLE table_name_66 (against VARCHAR, draw VARCHAR, losses VARCHAR, matches VARCHAR)",
"question": "What is the total number of Against, when Losses is less than 52, when Matches is greater than 4, and when Draw is less than 2?"
} |
### QUESTION
Which # of Episodes has a Mole of craig slike?
### CONTEXT
CREATE TABLE table_name_55 (_number_of_episodes INTEGER, mole VARCHAR)
### ANSWER
SELECT MIN(_number_of_episodes) FROM table_name_55 WHERE mole = "craig slike"</s> | {
"answer": "SELECT MIN(_number_of_episodes) FROM table_name_55 WHERE mole = \"craig slike\"",
"context": "CREATE TABLE table_name_55 (_number_of_episodes INTEGER, mole VARCHAR)",
"question": "Which # of Episodes has a Mole of craig slike?"
} |
### QUESTION
What is the Singapore Gross with a Producer that is 2000?
### CONTEXT
CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR)
### ANSWER
SELECT singapore_gross FROM table_name_72 WHERE producer = "2000"</s> | {
"answer": "SELECT singapore_gross FROM table_name_72 WHERE producer = \"2000\"",
"context": "CREATE TABLE table_name_72 (singapore_gross VARCHAR, producer VARCHAR)",
"question": "What is the Singapore Gross with a Producer that is 2000?"
} |
### QUESTION
What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?
### CONTEXT
CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR)
### ANSWER
SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305</s> | {
"answer": "SELECT AVG(height) FROM table_name_82 WHERE weight < 93 AND spike < 336 AND block = 305",
"context": "CREATE TABLE table_name_82 (height INTEGER, block VARCHAR, weight VARCHAR, spike VARCHAR)",
"question": "What is Average Height, when Weight is less than 93, when Spike is less than 336, and when Block is 305?"
} |
### QUESTION
Which Season has a Mole of frederique van der wal?
### CONTEXT
CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR)
### ANSWER
SELECT MAX(season) FROM table_name_77 WHERE mole = "frederique van der wal"</s> | {
"answer": "SELECT MAX(season) FROM table_name_77 WHERE mole = \"frederique van der wal\"",
"context": "CREATE TABLE table_name_77 (season INTEGER, mole VARCHAR)",
"question": "Which Season has a Mole of frederique van der wal?"
} |
### QUESTION
What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev?
### CONTEXT
CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR)
### ANSWER
SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = "theodoros baev"</s> | {
"answer": "SELECT COUNT(block) FROM table_name_41 WHERE spike < 341 AND weight > 82 AND name = \"theodoros baev\"",
"context": "CREATE TABLE table_name_41 (block VARCHAR, name VARCHAR, spike VARCHAR, weight VARCHAR)",
"question": "What is the total number of Block(s), when Spike is less than 341, when Weight is greater than 82, and when Name is Theodoros Baev?"
} |
### QUESTION
What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?
### CONTEXT
CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)
### ANSWER
SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = "02.03.1973"</s> | {
"answer": "SELECT name FROM table_name_98 WHERE spike > 343 AND date_of_birth = \"02.03.1973\"",
"context": "CREATE TABLE table_name_98 (name VARCHAR, spike VARCHAR, date_of_birth VARCHAR)",
"question": "What is Name, when Spike is greater than 343, and when Date of Birth is 02.03.1973?"
} |
### QUESTION
What is Record, when Location is "Des Moines, Iowa , United States", and when Method is "Submission (arm-triangle choke)"?
### CONTEXT
CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR)
### ANSWER
SELECT record FROM table_name_31 WHERE location = "des moines, iowa , united states" AND method = "submission (arm-triangle choke)"</s> | {
"answer": "SELECT record FROM table_name_31 WHERE location = \"des moines, iowa , united states\" AND method = \"submission (arm-triangle choke)\"",
"context": "CREATE TABLE table_name_31 (record VARCHAR, location VARCHAR, method VARCHAR)",
"question": "What is Record, when Location is \"Des Moines, Iowa , United States\", and when Method is \"Submission (arm-triangle choke)\"?"
} |
### QUESTION
What was the date of the Paco Rabanne Open de France?
### CONTEXT
CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR)
### ANSWER
SELECT date FROM table_name_95 WHERE tournament = "paco rabanne open de france"</s> | {
"answer": "SELECT date FROM table_name_95 WHERE tournament = \"paco rabanne open de france\"",
"context": "CREATE TABLE table_name_95 (date VARCHAR, tournament VARCHAR)",
"question": "What was the date of the Paco Rabanne Open de France?"
} |
### QUESTION
Who was the home team that played against Armthorpe Welfare?
### CONTEXT
CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)
### ANSWER
SELECT home_team FROM table_name_51 WHERE away_team = "armthorpe welfare"</s> | {
"answer": "SELECT home_team FROM table_name_51 WHERE away_team = \"armthorpe welfare\"",
"context": "CREATE TABLE table_name_51 (home_team VARCHAR, away_team VARCHAR)",
"question": "Who was the home team that played against Armthorpe Welfare?"
} |
### QUESTION
What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents?
### CONTEXT
CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR)
### ANSWER
SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = "stephane houdet michael jeremiasz"</s> | {
"answer": "SELECT championship FROM table_name_23 WHERE year < 2012 AND opponents_in_final = \"stephane houdet michael jeremiasz\"",
"context": "CREATE TABLE table_name_23 (championship VARCHAR, year VARCHAR, opponents_in_final VARCHAR)",
"question": "What was the championship before 2012 that had Stephane Houdet Michael Jeremiasz as opponents?"
} |
### QUESTION
What was the score when the Shingo Kunieda Satoshi Saida were the opponents?
### CONTEXT
CREATE TABLE table_name_84 (score_in_final VARCHAR, opponents_in_final VARCHAR)
### ANSWER
SELECT score_in_final FROM table_name_84 WHERE opponents_in_final = "shingo kunieda satoshi saida"</s> | {
"answer": "SELECT score_in_final FROM table_name_84 WHERE opponents_in_final = \"shingo kunieda satoshi saida\"",
"context": "CREATE TABLE table_name_84 (score_in_final VARCHAR, opponents_in_final VARCHAR)",
"question": "What was the score when the Shingo Kunieda Satoshi Saida were the opponents?"
} |
### QUESTION
On what date was Arthur Jones the away captain at Sydney Cricket Ground?
### CONTEXT
CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR)
### ANSWER
SELECT date FROM table_name_33 WHERE away_captain = "arthur jones" AND venue = "sydney cricket ground"</s> | {
"answer": "SELECT date FROM table_name_33 WHERE away_captain = \"arthur jones\" AND venue = \"sydney cricket ground\"",
"context": "CREATE TABLE table_name_33 (date VARCHAR, away_captain VARCHAR, venue VARCHAR)",
"question": "On what date was Arthur Jones the away captain at Sydney Cricket Ground?"
} |
### QUESTION
What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286?
### CONTEXT
CREATE TABLE table_name_52 (to_par VARCHAR, money___£__ VARCHAR, score VARCHAR)
### ANSWER
SELECT to_par FROM table_name_52 WHERE money___£__ = "40,850" AND score = 72 - 74 - 70 - 70 = 286</s> | {
"answer": "SELECT to_par FROM table_name_52 WHERE money___£__ = \"40,850\" AND score = 72 - 74 - 70 - 70 = 286",
"context": "CREATE TABLE table_name_52 (to_par VARCHAR, money___£__ VARCHAR, score VARCHAR)",
"question": "What is the to par of the golfer with winnings of 40,850 and a score of 72-74-70-70=286?"
} |
### QUESTION
What is the total with a 25-19 set 2 on Jun 17?
### CONTEXT
CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR)
### ANSWER
SELECT total FROM table_name_57 WHERE set_2 = "25-19" AND date = "jun 17"</s> | {
"answer": "SELECT total FROM table_name_57 WHERE set_2 = \"25-19\" AND date = \"jun 17\"",
"context": "CREATE TABLE table_name_57 (total VARCHAR, set_2 VARCHAR, date VARCHAR)",
"question": "What is the total with a 25-19 set 2 on Jun 17?"
} |
### QUESTION
What is the To par for Robert Allenby from Australia
### CONTEXT
CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT to_par FROM table_name_6 WHERE country = "australia" AND player = "robert allenby"</s> | {
"answer": "SELECT to_par FROM table_name_6 WHERE country = \"australia\" AND player = \"robert allenby\"",
"context": "CREATE TABLE table_name_6 (to_par VARCHAR, country VARCHAR, player VARCHAR)",
"question": "What is the To par for Robert Allenby from Australia"
} |
### QUESTION
What is the lowest Attendance, when Home Team is "Welling United"?
### CONTEXT
CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR)
### ANSWER
SELECT MIN(attendance) FROM table_name_26 WHERE home_team = "welling united"</s> | {
"answer": "SELECT MIN(attendance) FROM table_name_26 WHERE home_team = \"welling united\"",
"context": "CREATE TABLE table_name_26 (attendance INTEGER, home_team VARCHAR)",
"question": "What is the lowest Attendance, when Home Team is \"Welling United\"?"
} |
### QUESTION
Which place is Andy Bean from the United States?
### CONTEXT
CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR, player VARCHAR)
### ANSWER
SELECT place FROM table_name_50 WHERE country = "united states" AND player = "andy bean"</s> | {
"answer": "SELECT place FROM table_name_50 WHERE country = \"united states\" AND player = \"andy bean\"",
"context": "CREATE TABLE table_name_50 (place VARCHAR, country VARCHAR, player VARCHAR)",
"question": "Which place is Andy Bean from the United States?"
} |
### QUESTION
Which League that has a Open Cup of 1st round, and a Year of 2009?
### CONTEXT
CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR)
### ANSWER
SELECT league FROM table_name_99 WHERE open_cup = "1st round" AND year = 2009</s> | {
"answer": "SELECT league FROM table_name_99 WHERE open_cup = \"1st round\" AND year = 2009",
"context": "CREATE TABLE table_name_99 (league VARCHAR, open_cup VARCHAR, year VARCHAR)",
"question": "Which League that has a Open Cup of 1st round, and a Year of 2009?"
} |
### QUESTION
What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?
### CONTEXT
CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR)
### ANSWER
SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = "high park demons" AND points < 16</s> | {
"answer": "SELECT MAX(loses) FROM table_name_93 WHERE points_against < 956 AND club = \"high park demons\" AND points < 16",
"context": "CREATE TABLE table_name_93 (loses INTEGER, points VARCHAR, points_against VARCHAR, club VARCHAR)",
"question": "What are the highest losses that have points agaisnt less than 956, high park demons as the club, and points less than 16?"
} |
### QUESTION
How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?
### CONTEXT
CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR)
### ANSWER
SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = "high park demons" AND points_for > 631</s> | {
"answer": "SELECT COUNT(loses) FROM table_name_45 WHERE points_against > 592 AND club = \"high park demons\" AND points_for > 631",
"context": "CREATE TABLE table_name_45 (loses VARCHAR, points_for VARCHAR, points_against VARCHAR, club VARCHAR)",
"question": "How many losses have points against greater than 592, with high park demons as the club, and points for greater than 631?"
} |
### QUESTION
What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points?
### CONTEXT
CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR)
### ANSWER
SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24</s> | {
"answer": "SELECT loses FROM table_name_84 WHERE points_for < 1175 AND wins > 2 AND points_against > 894 AND points = 24",
"context": "CREATE TABLE table_name_84 (loses VARCHAR, points VARCHAR, points_against VARCHAR, points_for VARCHAR, wins VARCHAR)",
"question": "What losses have points for less than 1175, wins greater than 2, points against greater than 894, and 24 as the points?"
} |
### QUESTION
What is the wards/branches of the fort smith Arkansas stake?
### CONTEXT
CREATE TABLE table_name_89 (wards__branches_in_arkansas VARCHAR, stake VARCHAR)
### ANSWER
SELECT wards__branches_in_arkansas FROM table_name_89 WHERE stake = "fort smith arkansas"</s> | {
"answer": "SELECT wards__branches_in_arkansas FROM table_name_89 WHERE stake = \"fort smith arkansas\"",
"context": "CREATE TABLE table_name_89 (wards__branches_in_arkansas VARCHAR, stake VARCHAR)",
"question": "What is the wards/branches of the fort smith Arkansas stake?"
} |
### QUESTION
What is the lowest total number of wins in a season before 1989 with tianjin as the runners-up and more than 8 clubs?
### CONTEXT
CREATE TABLE table_name_92 (total_wins INTEGER, number_of_clubs VARCHAR, season VARCHAR, runners_up VARCHAR)
### ANSWER
SELECT MIN(total_wins) FROM table_name_92 WHERE season < 1989 AND runners_up = "tianjin" AND number_of_clubs > 8</s> | {
"answer": "SELECT MIN(total_wins) FROM table_name_92 WHERE season < 1989 AND runners_up = \"tianjin\" AND number_of_clubs > 8",
"context": "CREATE TABLE table_name_92 (total_wins INTEGER, number_of_clubs VARCHAR, season VARCHAR, runners_up VARCHAR)",
"question": "What is the lowest total number of wins in a season before 1989 with tianjin as the runners-up and more than 8 clubs?"
} |
### QUESTION
Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?
### CONTEXT
CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR)
### ANSWER
SELECT interview_subject FROM table_name_89 WHERE pictorials = "christie brinkley"</s> | {
"answer": "SELECT interview_subject FROM table_name_89 WHERE pictorials = \"christie brinkley\"",
"context": "CREATE TABLE table_name_89 (interview_subject VARCHAR, pictorials VARCHAR)",
"question": "Who was the Interview Subject on the Date when there were Pictorials of Christie Brinkley?"
} |
### QUESTION
Which Death date has a Place of death or residence of united states, and an Age (as of 1 February 2014) of 111 years, 61 days?
### CONTEXT
CREATE TABLE table_name_49 (death_date VARCHAR, place_of_death_or_residence VARCHAR, age__as_of_1_february_2014_ VARCHAR)
### ANSWER
SELECT death_date FROM table_name_49 WHERE place_of_death_or_residence = "united states" AND age__as_of_1_february_2014_ = "111 years, 61 days"</s> | {
"answer": "SELECT death_date FROM table_name_49 WHERE place_of_death_or_residence = \"united states\" AND age__as_of_1_february_2014_ = \"111 years, 61 days\"",
"context": "CREATE TABLE table_name_49 (death_date VARCHAR, place_of_death_or_residence VARCHAR, age__as_of_1_february_2014_ VARCHAR)",
"question": "Which Death date has a Place of death or residence of united states, and an Age (as of 1 February 2014) of 111 years, 61 days?"
} |
### QUESTION
Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses?
### CONTEXT
CREATE TABLE table_name_77 (goal_difference INTEGER, losses VARCHAR, points VARCHAR, club VARCHAR)
### ANSWER
SELECT MAX(goal_difference) FROM table_name_77 WHERE points = 28 AND club = "cd cartagena" AND losses > 15</s> | {
"answer": "SELECT MAX(goal_difference) FROM table_name_77 WHERE points = 28 AND club = \"cd cartagena\" AND losses > 15",
"context": "CREATE TABLE table_name_77 (goal_difference INTEGER, losses VARCHAR, points VARCHAR, club VARCHAR)",
"question": "Which Goal Difference has 28 Points, and a Club of cd cartagena, more than 15 losses?"
} |
### QUESTION
How much Goal Difference has less than 9 Losses, and 8 Draws, and more than 40 points?
### CONTEXT
CREATE TABLE table_name_22 (goal_difference INTEGER, points VARCHAR, losses VARCHAR, draws VARCHAR)
### ANSWER
SELECT SUM(goal_difference) FROM table_name_22 WHERE losses < 9 AND draws = 8 AND points > 40</s> | {
"answer": "SELECT SUM(goal_difference) FROM table_name_22 WHERE losses < 9 AND draws = 8 AND points > 40",
"context": "CREATE TABLE table_name_22 (goal_difference INTEGER, points VARCHAR, losses VARCHAR, draws VARCHAR)",
"question": "How much Goal Difference has less than 9 Losses, and 8 Draws, and more than 40 points?"
} |
### QUESTION
How long is the bridge in Villeneuve-sur-Lot?
### CONTEXT
CREATE TABLE table_name_40 (longest_span_in_s_metre___feet__ VARCHAR, location VARCHAR)
### ANSWER
SELECT longest_span_in_s_metre___feet__ FROM table_name_40 WHERE location = "villeneuve-sur-lot"</s> | {
"answer": "SELECT longest_span_in_s_metre___feet__ FROM table_name_40 WHERE location = \"villeneuve-sur-lot\"",
"context": "CREATE TABLE table_name_40 (longest_span_in_s_metre___feet__ VARCHAR, location VARCHAR)",
"question": "How long is the bridge in Villeneuve-sur-Lot?"
} |
### QUESTION
Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?
### CONTEXT
CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR)
### ANSWER
SELECT nationality FROM table_name_57 WHERE player = "keith bogans" AND years_in_orlando = "2006–2009"</s> | {
"answer": "SELECT nationality FROM table_name_57 WHERE player = \"keith bogans\" AND years_in_orlando = \"2006–2009\"",
"context": "CREATE TABLE table_name_57 (nationality VARCHAR, player VARCHAR, years_in_orlando VARCHAR)",
"question": "Which Nationality has a Player of keith bogans, and a Years in Orlando of 2006–2009?"
} |
### QUESTION
Which location had previous champions of Mike Webb and Nick Fahrenheit?
### CONTEXT
CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR)
### ANSWER
SELECT location FROM table_name_93 WHERE previous_champion_s_ = "mike webb and nick fahrenheit"</s> | {
"answer": "SELECT location FROM table_name_93 WHERE previous_champion_s_ = \"mike webb and nick fahrenheit\"",
"context": "CREATE TABLE table_name_93 (location VARCHAR, previous_champion_s_ VARCHAR)",
"question": "Which location had previous champions of Mike Webb and Nick Fahrenheit?"
} |
### QUESTION
What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?
### CONTEXT
CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR)
### ANSWER
SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = "paulistano" AND against < 15</s> | {
"answer": "SELECT COUNT(points) FROM table_name_95 WHERE drawn < 2 AND team = \"paulistano\" AND against < 15",
"context": "CREATE TABLE table_name_95 (points VARCHAR, against VARCHAR, drawn VARCHAR, team VARCHAR)",
"question": "What number of Points are shown for Team Paulistano where the Drawn is less than 2 and the Against is less than 15?"
} |
### QUESTION
What is Justin Leonard with a To par of –7's Score?
### CONTEXT
CREATE TABLE table_name_32 (score VARCHAR, to_par VARCHAR, player VARCHAR)
### ANSWER
SELECT score FROM table_name_32 WHERE to_par = "–7" AND player = "justin leonard"</s> | {
"answer": "SELECT score FROM table_name_32 WHERE to_par = \"–7\" AND player = \"justin leonard\"",
"context": "CREATE TABLE table_name_32 (score VARCHAR, to_par VARCHAR, player VARCHAR)",
"question": "What is Justin Leonard with a To par of –7's Score?"
} |
### QUESTION
With the Republican ticket of Frank M. Williams who was the Progressive ticket?
### CONTEXT
CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR)
### ANSWER
SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = "frank m. williams"</s> | {
"answer": "SELECT progressive_ticket FROM table_name_63 WHERE republican_ticket = \"frank m. williams\"",
"context": "CREATE TABLE table_name_63 (progressive_ticket VARCHAR, republican_ticket VARCHAR)",
"question": "With the Republican ticket of Frank M. Williams who was the Progressive ticket?"
} |
### QUESTION
Which Socialist Labor ticket has a Office of secretary of state?
### CONTEXT
CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR)
### ANSWER
SELECT socialist_labor_ticket FROM table_name_78 WHERE office = "secretary of state"</s> | {
"answer": "SELECT socialist_labor_ticket FROM table_name_78 WHERE office = \"secretary of state\"",
"context": "CREATE TABLE table_name_78 (socialist_labor_ticket VARCHAR, office VARCHAR)",
"question": "Which Socialist Labor ticket has a Office of secretary of state?"
} |
### QUESTION
What is the lowest grid number when Colin Edwards is the rider?
### CONTEXT
CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)
### ANSWER
SELECT MIN(grid) FROM table_name_46 WHERE rider = "colin edwards"</s> | {
"answer": "SELECT MIN(grid) FROM table_name_46 WHERE rider = \"colin edwards\"",
"context": "CREATE TABLE table_name_46 (grid INTEGER, rider VARCHAR)",
"question": "What is the lowest grid number when Colin Edwards is the rider?"
} |
### QUESTION
How many specimens does the SANT institution have?
### CONTEXT
CREATE TABLE table_name_1 (no_specimens INTEGER, abbr VARCHAR)
### ANSWER
SELECT SUM(no_specimens) FROM table_name_1 WHERE abbr = "sant"</s> | {
"answer": "SELECT SUM(no_specimens) FROM table_name_1 WHERE abbr = \"sant\"",
"context": "CREATE TABLE table_name_1 (no_specimens INTEGER, abbr VARCHAR)",
"question": "How many specimens does the SANT institution have?"
} |
### QUESTION
Which 1st Party has an Election of 1893 by-election?
### CONTEXT
CREATE TABLE table_name_10 (election VARCHAR)
### ANSWER
SELECT 1 AS st_party FROM table_name_10 WHERE election = "1893 by-election"</s> | {
"answer": "SELECT 1 AS st_party FROM table_name_10 WHERE election = \"1893 by-election\"",
"context": "CREATE TABLE table_name_10 (election VARCHAR)",
"question": "Which 1st Party has an Election of 1893 by-election?"
} |
### QUESTION
What is Apogee, when Inclination is 65°, and when Launch Date/Time is ( GMT ) is 15 February 1973, 01:11?
### CONTEXT
CREATE TABLE table_name_48 (apogee VARCHAR, inclination VARCHAR, launch_date_time___gmt__ VARCHAR)
### ANSWER
SELECT apogee FROM table_name_48 WHERE inclination = "65°" AND launch_date_time___gmt__ = "15 february 1973, 01:11"</s> | {
"answer": "SELECT apogee FROM table_name_48 WHERE inclination = \"65°\" AND launch_date_time___gmt__ = \"15 february 1973, 01:11\"",
"context": "CREATE TABLE table_name_48 (apogee VARCHAR, inclination VARCHAR, launch_date_time___gmt__ VARCHAR)",
"question": "What is Apogee, when Inclination is 65°, and when Launch Date/Time is ( GMT ) is 15 February 1973, 01:11?"
} |
### QUESTION
Which player had a position of t1 and played in the united states?
### CONTEXT
CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)
### ANSWER
SELECT player FROM table_name_49 WHERE place = "t1" AND country = "united states"</s> | {
"answer": "SELECT player FROM table_name_49 WHERE place = \"t1\" AND country = \"united states\"",
"context": "CREATE TABLE table_name_49 (player VARCHAR, place VARCHAR, country VARCHAR)",
"question": "Which player had a position of t1 and played in the united states?"
} |
### QUESTION
Who is the incumbent that has been in office since before 1996 and was again re-elected?
### CONTEXT
CREATE TABLE table_name_90 (incumbent VARCHAR, results VARCHAR, first_elected VARCHAR)
### ANSWER
SELECT incumbent FROM table_name_90 WHERE results = "re-elected" AND first_elected < 1996</s> | {
"answer": "SELECT incumbent FROM table_name_90 WHERE results = \"re-elected\" AND first_elected < 1996",
"context": "CREATE TABLE table_name_90 (incumbent VARCHAR, results VARCHAR, first_elected VARCHAR)",
"question": "Who is the incumbent that has been in office since before 1996 and was again re-elected?"
} |
### QUESTION
What is the highest block that has 15.09.1981 as the date, and a height greater than 202?
### CONTEXT
CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)
### ANSWER
SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = "15.09.1981" AND height > 202</s> | {
"answer": "SELECT MAX(block) FROM table_name_76 WHERE date_of_birth = \"15.09.1981\" AND height > 202",
"context": "CREATE TABLE table_name_76 (block INTEGER, date_of_birth VARCHAR, height VARCHAR)",
"question": "What is the highest block that has 15.09.1981 as the date, and a height greater than 202?"
} |
### QUESTION
WHAT IS THE SUB-PARISH WITH A YEAR AFTER 1916, IN ortnevik?
### CONTEXT
CREATE TABLE table_name_41 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)
### ANSWER
SELECT sub_parish__sogn_ FROM table_name_41 WHERE year_built > 1916 AND location_of_the_church = "ortnevik"</s> | {
"answer": "SELECT sub_parish__sogn_ FROM table_name_41 WHERE year_built > 1916 AND location_of_the_church = \"ortnevik\"",
"context": "CREATE TABLE table_name_41 (sub_parish__sogn_ VARCHAR, year_built VARCHAR, location_of_the_church VARCHAR)",
"question": "WHAT IS THE SUB-PARISH WITH A YEAR AFTER 1916, IN ortnevik?"
} |
### QUESTION
When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?
### CONTEXT
CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)
### ANSWER
SELECT 2009 AS _season FROM table_name_17 WHERE group = "group b" AND stadium = "cancha del mystic" AND club = "el tecal"</s> | {
"answer": "SELECT 2009 AS _season FROM table_name_17 WHERE group = \"group b\" AND stadium = \"cancha del mystic\" AND club = \"el tecal\"",
"context": "CREATE TABLE table_name_17 (club VARCHAR, group VARCHAR, stadium VARCHAR)",
"question": "When in 2009 season has a Group of group b, and cancha del mystic with a Club of el tecal?"
} |
### QUESTION
What is Date, when Matches is less than 32, and when Round is Fifth Round Proper?
### CONTEXT
CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR)
### ANSWER
SELECT date FROM table_name_55 WHERE matches < 32 AND round = "fifth round proper"</s> | {
"answer": "SELECT date FROM table_name_55 WHERE matches < 32 AND round = \"fifth round proper\"",
"context": "CREATE TABLE table_name_55 (date VARCHAR, matches VARCHAR, round VARCHAR)",
"question": "What is Date, when Matches is less than 32, and when Round is Fifth Round Proper?"
} |
### QUESTION
What is the total number of Matches, when Clubs is 588 → 406?
### CONTEXT
CREATE TABLE table_name_16 (matches VARCHAR, clubs VARCHAR)
### ANSWER
SELECT COUNT(matches) FROM table_name_16 WHERE clubs = "588 → 406"</s> | {
"answer": "SELECT COUNT(matches) FROM table_name_16 WHERE clubs = \"588 → 406\"",
"context": "CREATE TABLE table_name_16 (matches VARCHAR, clubs VARCHAR)",
"question": "What is the total number of Matches, when Clubs is 588 → 406?"
} |
### QUESTION
Which Record has a Location/Attendance of ford center, a Game larger than 30, and a Score of 87–79?
### CONTEXT
CREATE TABLE table_name_51 (record VARCHAR, score VARCHAR, location_attendance VARCHAR, game VARCHAR)
### ANSWER
SELECT record FROM table_name_51 WHERE location_attendance = "ford center" AND game > 30 AND score = "87–79"</s> | {
"answer": "SELECT record FROM table_name_51 WHERE location_attendance = \"ford center\" AND game > 30 AND score = \"87–79\"",
"context": "CREATE TABLE table_name_51 (record VARCHAR, score VARCHAR, location_attendance VARCHAR, game VARCHAR)",
"question": "Which Record has a Location/Attendance of ford center, a Game larger than 30, and a Score of 87–79?"
} |
### QUESTION
What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos?
### CONTEXT
CREATE TABLE table_name_92 (nat VARCHAR, name VARCHAR, ends VARCHAR, since VARCHAR)
### ANSWER
SELECT nat FROM table_name_92 WHERE ends > 2010 AND since = 2006 AND name = "paligeorgos"</s> | {
"answer": "SELECT nat FROM table_name_92 WHERE ends > 2010 AND since = 2006 AND name = \"paligeorgos\"",
"context": "CREATE TABLE table_name_92 (nat VARCHAR, name VARCHAR, ends VARCHAR, since VARCHAR)",
"question": "What is Nat., when Ends is greater than 2010, when Since is 2006, and when Name is Paligeorgos?"
} |
### QUESTION
Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?
### CONTEXT
CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
### ANSWER
SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9</s> | {
"answer": "SELECT COUNT(cultural_and_educational_panel) FROM table_name_9 WHERE labour_panel > 5 AND industrial_and_commercial_panel > 9",
"context": "CREATE TABLE table_name_9 (cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, industrial_and_commercial_panel VARCHAR)",
"question": "Which Cultural and Educational Panel has a Labour Panel larger than 5, and an Industrial and Commercial Panel larger than 9?"
} |
### QUESTION
Which Administrative Panel has a Nominated by the Taoiseach smaller than 0?
### CONTEXT
CREATE TABLE table_name_52 (administrative_panel INTEGER, nominated_by_the_taoiseach INTEGER)
### ANSWER
SELECT MIN(administrative_panel) FROM table_name_52 WHERE nominated_by_the_taoiseach < 0</s> | {
"answer": "SELECT MIN(administrative_panel) FROM table_name_52 WHERE nominated_by_the_taoiseach < 0",
"context": "CREATE TABLE table_name_52 (administrative_panel INTEGER, nominated_by_the_taoiseach INTEGER)",
"question": "Which Administrative Panel has a Nominated by the Taoiseach smaller than 0?"
} |
### QUESTION
Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?
### CONTEXT
CREATE TABLE table_name_46 (labour_panel INTEGER, industrial_and_commercial_panel VARCHAR, university_of_dublin VARCHAR)
### ANSWER
SELECT AVG(labour_panel) FROM table_name_46 WHERE industrial_and_commercial_panel = 9 AND university_of_dublin < 3</s> | {
"answer": "SELECT AVG(labour_panel) FROM table_name_46 WHERE industrial_and_commercial_panel = 9 AND university_of_dublin < 3",
"context": "CREATE TABLE table_name_46 (labour_panel INTEGER, industrial_and_commercial_panel VARCHAR, university_of_dublin VARCHAR)",
"question": "Which Labour Panel has an Industrial and Commercial Panel of 9, and a University of Dublin smaller than 3?"
} |
### QUESTION
What is the lowest value for Olympics, when Sailors is greater than 1, when First OG is after 1948, and when Class is "Flying Dutchman"?
### CONTEXT
CREATE TABLE table_name_80 (olympics_so_far INTEGER, class VARCHAR, sailors VARCHAR, first_og VARCHAR)
### ANSWER
SELECT MIN(olympics_so_far) FROM table_name_80 WHERE sailors > 1 AND first_og > 1948 AND class = "flying dutchman"</s> | {
"answer": "SELECT MIN(olympics_so_far) FROM table_name_80 WHERE sailors > 1 AND first_og > 1948 AND class = \"flying dutchman\"",
"context": "CREATE TABLE table_name_80 (olympics_so_far INTEGER, class VARCHAR, sailors VARCHAR, first_og VARCHAR)",
"question": "What is the lowest value for Olympics, when Sailors is greater than 1, when First OG is after 1948, and when Class is \"Flying Dutchman\"?"
} |
### QUESTION
Which Elevator has Elevated of april 12, 1281, a Nationality of french, and an Elector of jean cholet?
### CONTEXT
CREATE TABLE table_name_89 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, nationality VARCHAR)
### ANSWER
SELECT elevator FROM table_name_89 WHERE elevated = "april 12, 1281" AND nationality = "french" AND elector = "jean cholet"</s> | {
"answer": "SELECT elevator FROM table_name_89 WHERE elevated = \"april 12, 1281\" AND nationality = \"french\" AND elector = \"jean cholet\"",
"context": "CREATE TABLE table_name_89 (elevator VARCHAR, elector VARCHAR, elevated VARCHAR, nationality VARCHAR)",
"question": "Which Elevator has Elevated of april 12, 1281, a Nationality of french, and an Elector of jean cholet?"
} |
### QUESTION
What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1?
### CONTEXT
CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = "1 stroke" AND tournament = "joburg open 1"</s> | {
"answer": "SELECT runner_s__up FROM table_name_51 WHERE margin_of_victory = \"1 stroke\" AND tournament = \"joburg open 1\"",
"context": "CREATE TABLE table_name_51 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)",
"question": "What is Runner(s)-Up, when Margin of Victory is 1 Stroke, and when Tournament is Joburg Open 1?"
} |
### QUESTION
Which Elevator has a Title of bishop of palestrina?
### CONTEXT
CREATE TABLE table_name_29 (elevator VARCHAR, title VARCHAR)
### ANSWER
SELECT elevator FROM table_name_29 WHERE title = "bishop of palestrina"</s> | {
"answer": "SELECT elevator FROM table_name_29 WHERE title = \"bishop of palestrina\"",
"context": "CREATE TABLE table_name_29 (elevator VARCHAR, title VARCHAR)",
"question": "Which Elevator has a Title of bishop of palestrina?"
} |
### QUESTION
What is the sum of the poles of Team la filière, which has less than 162 points?
### CONTEXT
CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)
### ANSWER
SELECT SUM(poles) FROM table_name_13 WHERE team = "la filière" AND points < 162</s> | {
"answer": "SELECT SUM(poles) FROM table_name_13 WHERE team = \"la filière\" AND points < 162",
"context": "CREATE TABLE table_name_13 (poles INTEGER, team VARCHAR, points VARCHAR)",
"question": "What is the sum of the poles of Team la filière, which has less than 162 points?"
} |
### QUESTION
What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3?
### CONTEXT
CREATE TABLE table_name_3 (cultural_and_educational_panel INTEGER, university_of_dublin VARCHAR, administrative_panel VARCHAR, agricultural_panel VARCHAR)
### ANSWER
SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 11 AND university_of_dublin < 3</s> | {
"answer": "SELECT SUM(cultural_and_educational_panel) FROM table_name_3 WHERE administrative_panel > 1 AND agricultural_panel = 11 AND university_of_dublin < 3",
"context": "CREATE TABLE table_name_3 (cultural_and_educational_panel INTEGER, university_of_dublin VARCHAR, administrative_panel VARCHAR, agricultural_panel VARCHAR)",
"question": "What is the sum of the Cultural and Educational Panels that have an Administrative Panel greater than 1, an Agricultural Panel of 11 and a University of Dublin smaller than 3?"
} |
### QUESTION
What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?
### CONTEXT
CREATE TABLE table_name_46 (agricultural_panel INTEGER, industrial_and_commercial_panel INTEGER)
### ANSWER
SELECT SUM(agricultural_panel) FROM table_name_46 WHERE industrial_and_commercial_panel < 0</s> | {
"answer": "SELECT SUM(agricultural_panel) FROM table_name_46 WHERE industrial_and_commercial_panel < 0",
"context": "CREATE TABLE table_name_46 (agricultural_panel INTEGER, industrial_and_commercial_panel INTEGER)",
"question": "What is the sum of Agricultural panels that have an Industrial and Commercial Panel smaller than 0?"
} |
### QUESTION
What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1?
### CONTEXT
CREATE TABLE table_name_49 (national_university_of_ireland INTEGER, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR)
### ANSWER
SELECT MIN(national_university_of_ireland) FROM table_name_49 WHERE cultural_and_educational_panel = 0 AND labour_panel < 1</s> | {
"answer": "SELECT MIN(national_university_of_ireland) FROM table_name_49 WHERE cultural_and_educational_panel = 0 AND labour_panel < 1",
"context": "CREATE TABLE table_name_49 (national_university_of_ireland INTEGER, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR)",
"question": "What is the lowest number of National University of Ireland that has a Cultural and Educational Panel of 0, and a Labour Panel smaller than 1?"
} |
### QUESTION
What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0
### CONTEXT
CREATE TABLE table_name_45 (industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
### ANSWER
SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by_the_taoiseach < 11 AND cultural_and_educational_panel < 0</s> | {
"answer": "SELECT COUNT(industrial_and_commercial_panel) FROM table_name_45 WHERE labour_panel > 1 AND nominated_by_the_taoiseach < 11 AND cultural_and_educational_panel < 0",
"context": "CREATE TABLE table_name_45 (industrial_and_commercial_panel VARCHAR, cultural_and_educational_panel VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)",
"question": "What is the total of Industrial and Commercial Panels that have a Labour Panel greater than 1, a Nominated by the Taoiseach lesss than 11 and a Cultural and Educational Panel smaller than 0"
} |
### QUESTION
What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473?
### CONTEXT
CREATE TABLE table_name_21 (assists VARCHAR, minutes VARCHAR, player VARCHAR, position VARCHAR, goals VARCHAR)
### ANSWER
SELECT COUNT(assists) FROM table_name_21 WHERE position = "striker" AND goals < 4 AND player = "edmundo rodriguez" AND minutes < 473</s> | {
"answer": "SELECT COUNT(assists) FROM table_name_21 WHERE position = \"striker\" AND goals < 4 AND player = \"edmundo rodriguez\" AND minutes < 473",
"context": "CREATE TABLE table_name_21 (assists VARCHAR, minutes VARCHAR, player VARCHAR, position VARCHAR, goals VARCHAR)",
"question": "What is the total number of assists when Edmundo Rodriguez is playing the position of striker, less than 4 goals were scored, and the minutes were less than 473?"
} |
### QUESTION
Which To par has a Player of jack nicklaus, and a Total smaller than 146?
### CONTEXT
CREATE TABLE table_name_63 (to_par INTEGER, player VARCHAR, total VARCHAR)
### ANSWER
SELECT AVG(to_par) FROM table_name_63 WHERE player = "jack nicklaus" AND total < 146</s> | {
"answer": "SELECT AVG(to_par) FROM table_name_63 WHERE player = \"jack nicklaus\" AND total < 146",
"context": "CREATE TABLE table_name_63 (to_par INTEGER, player VARCHAR, total VARCHAR)",
"question": "Which To par has a Player of jack nicklaus, and a Total smaller than 146?"
} |
### QUESTION
What average points for highers has 0 has points for ordinary, and Ng as the grade, and less than 0 as points for foundation?
### CONTEXT
CREATE TABLE table_name_25 (points_for_higher INTEGER, points_for_foundation VARCHAR, points_for_ordinary VARCHAR, grade VARCHAR)
### ANSWER
SELECT AVG(points_for_higher) FROM table_name_25 WHERE points_for_ordinary = 0 AND grade = "ng" AND points_for_foundation < 0</s> | {
"answer": "SELECT AVG(points_for_higher) FROM table_name_25 WHERE points_for_ordinary = 0 AND grade = \"ng\" AND points_for_foundation < 0",
"context": "CREATE TABLE table_name_25 (points_for_higher INTEGER, points_for_foundation VARCHAR, points_for_ordinary VARCHAR, grade VARCHAR)",
"question": "What average points for highers has 0 has points for ordinary, and Ng as the grade, and less than 0 as points for foundation?"
} |
### QUESTION
What team has 0 points and a contact tired/retired, and 71 laps?
### CONTEXT
CREATE TABLE table_name_80 (team VARCHAR, laps VARCHAR, points VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT team FROM table_name_80 WHERE points = 0 AND time_retired = "contact" AND laps = 71</s> | {
"answer": "SELECT team FROM table_name_80 WHERE points = 0 AND time_retired = \"contact\" AND laps = 71",
"context": "CREATE TABLE table_name_80 (team VARCHAR, laps VARCHAR, points VARCHAR, time_retired VARCHAR)",
"question": "What team has 0 points and a contact tired/retired, and 71 laps?"
} |
### QUESTION
What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?
### CONTEXT
CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = "ktm" AND time_retired = "+56.440" AND grid < 11</s> | {
"answer": "SELECT AVG(laps) FROM table_name_92 WHERE manufacturer = \"ktm\" AND time_retired = \"+56.440\" AND grid < 11",
"context": "CREATE TABLE table_name_92 (laps INTEGER, grid VARCHAR, manufacturer VARCHAR, time_retired VARCHAR)",
"question": "What was the average number of laps completed by KTM riders, with times of +56.440 and grid values under 11?"
} |
### QUESTION
What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660?
### CONTEXT
CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)
### ANSWER
SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = "aprilia" AND time_retired = "+1.660"</s> | {
"answer": "SELECT MAX(grid) FROM table_name_22 WHERE manufacturer = \"aprilia\" AND time_retired = \"+1.660\"",
"context": "CREATE TABLE table_name_22 (grid INTEGER, manufacturer VARCHAR, time_retired VARCHAR)",
"question": "What was the highest grid value for riders with manufacturer of Aprilia and time of +1.660?"
} |
### QUESTION
What team does Oliver Dobbins play for?
### CONTEXT
CREATE TABLE table_name_39 (team VARCHAR, player VARCHAR)
### ANSWER
SELECT team FROM table_name_39 WHERE player = "oliver dobbins"</s> | {
"answer": "SELECT team FROM table_name_39 WHERE player = \"oliver dobbins\"",
"context": "CREATE TABLE table_name_39 (team VARCHAR, player VARCHAR)",
"question": "What team does Oliver Dobbins play for?"
} |
### QUESTION
What year did the United States win with a total of 278?
### CONTEXT
CREATE TABLE table_name_4 (year_s__won VARCHAR, country VARCHAR, total VARCHAR)
### ANSWER
SELECT year_s__won FROM table_name_4 WHERE country = "united states" AND total = 278</s> | {
"answer": "SELECT year_s__won FROM table_name_4 WHERE country = \"united states\" AND total = 278",
"context": "CREATE TABLE table_name_4 (year_s__won VARCHAR, country VARCHAR, total VARCHAR)",
"question": "What year did the United States win with a total of 278?"
} |
### QUESTION
What is the to par when the total is larger than 288?
### CONTEXT
CREATE TABLE table_name_97 (to_par VARCHAR, total INTEGER)
### ANSWER
SELECT to_par FROM table_name_97 WHERE total > 288</s> | {
"answer": "SELECT to_par FROM table_name_97 WHERE total > 288",
"context": "CREATE TABLE table_name_97 (to_par VARCHAR, total INTEGER)",
"question": "What is the to par when the total is larger than 288?"
} |
### QUESTION
Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament?
### CONTEXT
CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_21 WHERE tournament = "merrill lynch/golf digest commemorative pro-am"</s> | {
"answer": "SELECT runner_s__up FROM table_name_21 WHERE tournament = \"merrill lynch/golf digest commemorative pro-am\"",
"context": "CREATE TABLE table_name_21 (runner_s__up VARCHAR, tournament VARCHAR)",
"question": "Who was the Runner-up for the merrill lynch/golf digest commemorative pro-am tournament?"
} |
### QUESTION
What's the latest year that daisy garcia reyes did not place in miss world?
### CONTEXT
CREATE TABLE table_name_11 (year INTEGER, placement_in_miss_world VARCHAR, delegate VARCHAR)
### ANSWER
SELECT MAX(year) FROM table_name_11 WHERE placement_in_miss_world = "did not place" AND delegate = "daisy garcia reyes"</s> | {
"answer": "SELECT MAX(year) FROM table_name_11 WHERE placement_in_miss_world = \"did not place\" AND delegate = \"daisy garcia reyes\"",
"context": "CREATE TABLE table_name_11 (year INTEGER, placement_in_miss_world VARCHAR, delegate VARCHAR)",
"question": "What's the latest year that daisy garcia reyes did not place in miss world?"
} |
### QUESTION
Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?
### CONTEXT
CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)
### ANSWER
SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = "2 strokes" AND tournament = "mazda senior tournament players championship"</s> | {
"answer": "SELECT runner_s__up FROM table_name_86 WHERE margin_of_victory = \"2 strokes\" AND tournament = \"mazda senior tournament players championship\"",
"context": "CREATE TABLE table_name_86 (runner_s__up VARCHAR, margin_of_victory VARCHAR, tournament VARCHAR)",
"question": "Who was the runner-up for the mazda senior tournament players championship tournament when the margin of victory was 2 strokes?"
} |
### QUESTION
What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko?
### CONTEXT
CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)
### ANSWER
SELECT week_of FROM table_name_2 WHERE semi_finalists = "anke huber chanda rubin" AND runner_up = "meredith mcgrath larisa savchenko"</s> | {
"answer": "SELECT week_of FROM table_name_2 WHERE semi_finalists = \"anke huber chanda rubin\" AND runner_up = \"meredith mcgrath larisa savchenko\"",
"context": "CREATE TABLE table_name_2 (week_of VARCHAR, semi_finalists VARCHAR, runner_up VARCHAR)",
"question": "What is the Week when anke huber chanda rubin shows for Semi finalists, and the Runner-up is meredith mcgrath larisa savchenko?"
} |
### QUESTION
Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11?
### CONTEXT
CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR, method VARCHAR, location VARCHAR)
### ANSWER
SELECT opponent FROM table_name_7 WHERE method = "tko" AND location = "elgin, illinois, usa" AND date = "2001-02-11"</s> | {
"answer": "SELECT opponent FROM table_name_7 WHERE method = \"tko\" AND location = \"elgin, illinois, usa\" AND date = \"2001-02-11\"",
"context": "CREATE TABLE table_name_7 (opponent VARCHAR, date VARCHAR, method VARCHAR, location VARCHAR)",
"question": "Which Opponent has a Method of tko, and a Location of elgin, illinois, usa on 2001-02-11?"
} |
### QUESTION
What party established in 1797 won an election in 2007?
### CONTEXT
CREATE TABLE table_name_17 (party VARCHAR, established VARCHAR, election VARCHAR)
### ANSWER
SELECT party FROM table_name_17 WHERE established > 1797 AND election = 2007</s> | {
"answer": "SELECT party FROM table_name_17 WHERE established > 1797 AND election = 2007",
"context": "CREATE TABLE table_name_17 (party VARCHAR, established VARCHAR, election VARCHAR)",
"question": "What party established in 1797 won an election in 2007?"
} |
### QUESTION
What is the largest height when the prominence is 3,118?
### CONTEXT
CREATE TABLE table_name_98 (height__m_ INTEGER, prominence__m_ VARCHAR)
### ANSWER
SELECT MAX(height__m_) FROM table_name_98 WHERE prominence__m_ = 3 OFFSET 118</s> | {
"answer": "SELECT MAX(height__m_) FROM table_name_98 WHERE prominence__m_ = 3 OFFSET 118",
"context": "CREATE TABLE table_name_98 (height__m_ INTEGER, prominence__m_ VARCHAR)",
"question": "What is the largest height when the prominence is 3,118?"
} |
### QUESTION
Which Population has a County of mississippi, and a Number of households smaller than 17,741?
### CONTEXT
CREATE TABLE table_name_21 (population INTEGER, county VARCHAR, number_of_households VARCHAR)
### ANSWER
SELECT SUM(population) FROM table_name_21 WHERE county = "mississippi" AND number_of_households < 17 OFFSET 741</s> | {
"answer": "SELECT SUM(population) FROM table_name_21 WHERE county = \"mississippi\" AND number_of_households < 17 OFFSET 741",
"context": "CREATE TABLE table_name_21 (population INTEGER, county VARCHAR, number_of_households VARCHAR)",
"question": "Which Population has a County of mississippi, and a Number of households smaller than 17,741?"
} |
### QUESTION
What rank is He Yingqin who was born before 1890?
### CONTEXT
CREATE TABLE table_name_75 (rank INTEGER, name VARCHAR, birth VARCHAR)
### ANSWER
SELECT AVG(rank) FROM table_name_75 WHERE name = "he yingqin" AND birth < 1890</s> | {
"answer": "SELECT AVG(rank) FROM table_name_75 WHERE name = \"he yingqin\" AND birth < 1890",
"context": "CREATE TABLE table_name_75 (rank INTEGER, name VARCHAR, birth VARCHAR)",
"question": "What rank is He Yingqin who was born before 1890?"
} |
### QUESTION
What is the highest crude death rate when deaths are 3 433 and average population is greater than 298?
### CONTEXT
CREATE TABLE table_name_16 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, average_population__x_1000_ VARCHAR)
### ANSWER
SELECT MAX(crude_death_rate__per_1000_) FROM table_name_16 WHERE deaths = "3 433" AND average_population__x_1000_ > 298</s> | {
"answer": "SELECT MAX(crude_death_rate__per_1000_) FROM table_name_16 WHERE deaths = \"3 433\" AND average_population__x_1000_ > 298",
"context": "CREATE TABLE table_name_16 (crude_death_rate__per_1000_ INTEGER, deaths VARCHAR, average_population__x_1000_ VARCHAR)",
"question": "What is the highest crude death rate when deaths are 3 433 and average population is greater than 298?"
} |
### QUESTION
How many live births where the crude birth rate is lore than 15.7, average population is less than 297 and deaths are al 4 686?
### CONTEXT
CREATE TABLE table_name_79 (live_births VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, average_population__x_1000_ VARCHAR)
### ANSWER
SELECT live_births FROM table_name_79 WHERE crude_birth_rate__per_1000_ > 15.7 AND average_population__x_1000_ < 297 AND deaths = "4 686"</s> | {
"answer": "SELECT live_births FROM table_name_79 WHERE crude_birth_rate__per_1000_ > 15.7 AND average_population__x_1000_ < 297 AND deaths = \"4 686\"",
"context": "CREATE TABLE table_name_79 (live_births VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, average_population__x_1000_ VARCHAR)",
"question": "How many live births where the crude birth rate is lore than 15.7, average population is less than 297 and deaths are al 4 686?"
} |
### QUESTION
What is the national change where crude birth rate is less than 11.4, crude death rate is more than 12.1 and deaths are 4 376?
### CONTEXT
CREATE TABLE table_name_96 (natural_change VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)
### ANSWER
SELECT natural_change FROM table_name_96 WHERE crude_birth_rate__per_1000_ < 11.4 AND crude_death_rate__per_1000_ > 12.1 AND deaths = "4 376"</s> | {
"answer": "SELECT natural_change FROM table_name_96 WHERE crude_birth_rate__per_1000_ < 11.4 AND crude_death_rate__per_1000_ > 12.1 AND deaths = \"4 376\"",
"context": "CREATE TABLE table_name_96 (natural_change VARCHAR, deaths VARCHAR, crude_birth_rate__per_1000_ VARCHAR, crude_death_rate__per_1000_ VARCHAR)",
"question": "What is the national change where crude birth rate is less than 11.4, crude death rate is more than 12.1 and deaths are 4 376?"
} |
### QUESTION
What is the average population when deaths are 3 557 and crude death date is less than 11.9?
### CONTEXT
CREATE TABLE table_name_40 (average_population__x_1000_ INTEGER, deaths VARCHAR, crude_death_rate__per_1000_ VARCHAR)
### ANSWER
SELECT AVG(average_population__x_1000_) FROM table_name_40 WHERE deaths = "3 557" AND crude_death_rate__per_1000_ < 11.9</s> | {
"answer": "SELECT AVG(average_population__x_1000_) FROM table_name_40 WHERE deaths = \"3 557\" AND crude_death_rate__per_1000_ < 11.9",
"context": "CREATE TABLE table_name_40 (average_population__x_1000_ INTEGER, deaths VARCHAR, crude_death_rate__per_1000_ VARCHAR)",
"question": "What is the average population when deaths are 3 557 and crude death date is less than 11.9?"
} |
### QUESTION
What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2?
### CONTEXT
CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR)
### ANSWER
SELECT venue FROM table_name_23 WHERE competition = "2002 fifa world cup qualifier" AND result = "8-2"</s> | {
"answer": "SELECT venue FROM table_name_23 WHERE competition = \"2002 fifa world cup qualifier\" AND result = \"8-2\"",
"context": "CREATE TABLE table_name_23 (venue VARCHAR, competition VARCHAR, result VARCHAR)",
"question": "What is the Venue for the 2002 fifa world cup qualifier, and a Result of 8-2?"
} |
### QUESTION
What is the covalent (single bond) value of sodium?
### CONTEXT
CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR)
### ANSWER
SELECT covalent__single_bond_ FROM table_name_21 WHERE name = "sodium"</s> | {
"answer": "SELECT covalent__single_bond_ FROM table_name_21 WHERE name = \"sodium\"",
"context": "CREATE TABLE table_name_21 (covalent__single_bond_ VARCHAR, name VARCHAR)",
"question": "What is the covalent (single bond) value of sodium?"
} |
### QUESTION
What is the maximum goals score with less than 13 wins, greater than 86 goals were conceded, and more than 32 games lost?
### CONTEXT
CREATE TABLE table_name_87 (goals_scored INTEGER, loses VARCHAR, wins VARCHAR, goals_conceded VARCHAR)
### ANSWER
SELECT MAX(goals_scored) FROM table_name_87 WHERE wins < 13 AND goals_conceded > 86 AND loses > 32</s> | {
"answer": "SELECT MAX(goals_scored) FROM table_name_87 WHERE wins < 13 AND goals_conceded > 86 AND loses > 32",
"context": "CREATE TABLE table_name_87 (goals_scored INTEGER, loses VARCHAR, wins VARCHAR, goals_conceded VARCHAR)",
"question": "What is the maximum goals score with less than 13 wins, greater than 86 goals were conceded, and more than 32 games lost?"
} |
### QUESTION
On what surface was the match played with a score of 2–6, 6–3, 6–4?
### CONTEXT
CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR)
### ANSWER
SELECT surface FROM table_name_32 WHERE score = "2–6, 6–3, 6–4"</s> | {
"answer": "SELECT surface FROM table_name_32 WHERE score = \"2–6, 6–3, 6–4\"",
"context": "CREATE TABLE table_name_32 (surface VARCHAR, score VARCHAR)",
"question": "On what surface was the match played with a score of 2–6, 6–3, 6–4?"
} |
### QUESTION
What is 02-03, when School Year is % Learning In Latvian?
### CONTEXT
CREATE TABLE table_name_33 (school_year VARCHAR)
### ANSWER
SELECT 02 AS _03 FROM table_name_33 WHERE school_year = "% learning in latvian"</s> | {
"answer": "SELECT 02 AS _03 FROM table_name_33 WHERE school_year = \"% learning in latvian\"",
"context": "CREATE TABLE table_name_33 (school_year VARCHAR)",
"question": "What is 02-03, when School Year is % Learning In Latvian?"
} |
### QUESTION
Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994?
### CONTEXT
CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = "taipei, taiwan" AND date = "november 14, 1994"</s> | {
"answer": "SELECT opponent_in_the_final FROM table_name_93 WHERE tournament = \"taipei, taiwan\" AND date = \"november 14, 1994\"",
"context": "CREATE TABLE table_name_93 (opponent_in_the_final VARCHAR, tournament VARCHAR, date VARCHAR)",
"question": "Who was the final opponent in the tournament in Taipei, Taiwan on November 14, 1994?"
} |
### QUESTION
Which inhabitants have lega lombarda as the party, with an election greater than 2010?
### CONTEXT
CREATE TABLE table_name_26 (inhabitants VARCHAR, party VARCHAR, election VARCHAR)
### ANSWER
SELECT inhabitants FROM table_name_26 WHERE party = "lega lombarda" AND election > 2010</s> | {
"answer": "SELECT inhabitants FROM table_name_26 WHERE party = \"lega lombarda\" AND election > 2010",
"context": "CREATE TABLE table_name_26 (inhabitants VARCHAR, party VARCHAR, election VARCHAR)",
"question": "Which inhabitants have lega lombarda as the party, with an election greater than 2010?"
} |
### QUESTION
What is the lowest election that has cinisello balsamo as the municipality?
### CONTEXT
CREATE TABLE table_name_4 (election INTEGER, municipality VARCHAR)
### ANSWER
SELECT MIN(election) FROM table_name_4 WHERE municipality = "cinisello balsamo"</s> | {
"answer": "SELECT MIN(election) FROM table_name_4 WHERE municipality = \"cinisello balsamo\"",
"context": "CREATE TABLE table_name_4 (election INTEGER, municipality VARCHAR)",
"question": "What is the lowest election that has cinisello balsamo as the municipality?"
} |
### QUESTION
Who was played against in the final on November 14, 1994?
### CONTEXT
CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR)
### ANSWER
SELECT opponent_in_the_final FROM table_name_17 WHERE date = "november 14, 1994"</s> | {
"answer": "SELECT opponent_in_the_final FROM table_name_17 WHERE date = \"november 14, 1994\"",
"context": "CREATE TABLE table_name_17 (opponent_in_the_final VARCHAR, date VARCHAR)",
"question": "Who was played against in the final on November 14, 1994?"
} |
Subsets and Splits
No saved queries yet
Save your SQL queries to embed, download, and access them later. Queries will appear here once saved.