combined_text
stringlengths
106
1.05k
###question:What is the first leg score when team 2 is Wagad Mogadishu?###answer:SELECT 1 AS st_leg FROM table_name_61 WHERE team_2 = "wagad mogadishu"###context:CREATE TABLE table_name_61 (team_2 VARCHAR)
###question:What is the Status with a Name that is anas cheuen?###answer:SELECT status FROM table_name_77 WHERE name = "anas cheuen"###context:CREATE TABLE table_name_77 (status VARCHAR, name VARCHAR)
###question:What is the Unit with a Name that is anas cheuen?###answer:SELECT unit FROM table_name_58 WHERE name = "anas cheuen"###context:CREATE TABLE table_name_58 (unit VARCHAR, name VARCHAR)
###question:What team was the Opponent when the Score was 31-6?###answer:SELECT opponent FROM table_name_83 WHERE score = "31-6"###context:CREATE TABLE table_name_83 (opponent VARCHAR, score VARCHAR)
###question:What is the Score when the record was 9-3-0?###answer:SELECT score FROM table_name_76 WHERE record = "9-3-0"###context:CREATE TABLE table_name_76 (score VARCHAR, record VARCHAR)
###question:What is the away team where the home team is Coventry City?###answer:SELECT away_team FROM table_name_73 WHERE home_team = "coventry city"###context:CREATE TABLE table_name_73 (away_team VARCHAR, home_team VARCHAR)
###question:What is the score where the away team is Exeter City?###answer:SELECT score FROM table_name_20 WHERE away_team = "exeter city"###context:CREATE TABLE table_name_20 (score VARCHAR, away_team VARCHAR)
###question:How many ties does Walsall have?###answer:SELECT tie_no FROM table_name_97 WHERE away_team = "walsall"###context:CREATE TABLE table_name_97 (tie_no VARCHAR, away_team VARCHAR)
###question:Where Bolton Wanderers is the home team, who is the away team?###answer:SELECT away_team FROM table_name_7 WHERE home_team = "bolton wanderers"###context:CREATE TABLE table_name_7 (away_team VARCHAR, home_team VARCHAR)
###question:How many ties are there where attendance is 11,997?###answer:SELECT tie_no FROM table_name_43 WHERE attendance = "11,997"###context:CREATE TABLE table_name_43 (tie_no VARCHAR, attendance VARCHAR)
###question:Where the away team is Bradford City, who is the home team?###answer:SELECT home_team FROM table_name_83 WHERE away_team = "bradford city"###context:CREATE TABLE table_name_83 (home_team VARCHAR, away_team VARCHAR)
###question:For which school/club team did the player in the position of Guard/Forward play?###answer:SELECT school_club_team FROM table_name_35 WHERE position = "guard/forward"###context:CREATE TABLE table_name_35 (school_club_team VARCHAR, position VARCHAR)
###question:How was the player in the position of Center acquired?###answer:SELECT acquisition_via FROM table_name_26 WHERE position = "center"###context:CREATE TABLE table_name_26 (acquisition_via VARCHAR, position VARCHAR)
###question:In what season did Omar Thomas play, with a jersey number larger than 15?###answer:SELECT season FROM table_name_81 WHERE number > 15 AND name = "omar thomas"###context:CREATE TABLE table_name_81 (season VARCHAR, number VARCHAR, name VARCHAR)
###question:How many total players came from the school/club team of De La Salle?###answer:SELECT COUNT(number) FROM table_name_62 WHERE school_club_team = "de la salle"###context:CREATE TABLE table_name_62 (number VARCHAR, school_club_team VARCHAR)
###question:Which player is in the position of Guard/Forward?###answer:SELECT name FROM table_name_67 WHERE position = "guard/forward"###context:CREATE TABLE table_name_67 (name VARCHAR, position VARCHAR)
###question:What is the most wins associated with under 4 events with 0 top-5s?###answer:SELECT MAX(wins) FROM table_name_38 WHERE top_5 > 0 AND events < 4###context:CREATE TABLE table_name_38 (wins INTEGER, top_5 VARCHAR, events VARCHAR)
###question:What is the average number of events having 1 top-10, fewer than 4 cuts made, and 0 wins?###answer:SELECT AVG(events) FROM table_name_98 WHERE top_10 = 1 AND wins > 0 AND cuts_made < 4###context:CREATE TABLE table_name_98 (events INTEGER, cuts_made VARCHAR, top_10 VARCHAR, wins VARCHAR)
###question:What is the average number of wins for events larger than 28?###answer:SELECT AVG(wins) FROM table_name_22 WHERE events > 28###context:CREATE TABLE table_name_22 (wins INTEGER, events INTEGER)
###question:What is the sum of top-25s for events with more than 1 top-5?###answer:SELECT SUM(top_25) FROM table_name_71 WHERE top_5 > 1###context:CREATE TABLE table_name_71 (top_25 INTEGER, top_5 INTEGER)
###question:Who is the producer of city sharks?###answer:SELECT producer FROM table_name_57 WHERE title = "city sharks"###context:CREATE TABLE table_name_57 (producer VARCHAR, title VARCHAR)
###question:What is the title of the film when the producer was 2003?###answer:SELECT title FROM table_name_65 WHERE producer = "2003"###context:CREATE TABLE table_name_65 (title VARCHAR, producer VARCHAR)
###question:Who is the director when the title is 2003?###answer:SELECT director FROM table_name_27 WHERE title = "2003"###context:CREATE TABLE table_name_27 (director VARCHAR, title VARCHAR)
###question:What is the production cost when the producer is raintree pictures?###answer:SELECT production_cost FROM table_name_63 WHERE producer = "raintree pictures"###context:CREATE TABLE table_name_63 (production_cost VARCHAR, producer VARCHAR)
###question:What was the lowest attendance at a week 15 game?###answer:SELECT MIN(attendance) FROM table_name_50 WHERE week = 15###context:CREATE TABLE table_name_50 (attendance INTEGER, week VARCHAR)
###question:What is the Score for the game with a record of 38-18?###answer:SELECT score FROM table_name_84 WHERE record = "38-18"###context:CREATE TABLE table_name_84 (score VARCHAR, record VARCHAR)
###question:What team was the opponent when the score was 8-2?###answer:SELECT opponent FROM table_name_24 WHERE score = "8-2"###context:CREATE TABLE table_name_24 (opponent VARCHAR, score VARCHAR)
###question:What is the Location when the opponent shows vs. ole miss, and a Loss of mckean (4-1)?###answer:SELECT location FROM table_name_41 WHERE opponent = "vs. ole miss" AND loss = "mckean (4-1)"###context:CREATE TABLE table_name_41 (location VARCHAR, opponent VARCHAR, loss VARCHAR)
###question:What is the name of the Opponent when there is a Record of 39-19?###answer:SELECT opponent FROM table_name_79 WHERE record = "39-19"###context:CREATE TABLE table_name_79 (opponent VARCHAR, record VARCHAR)
###question:What is the Record on may 24, with a Loss of hayes (2-1)?###answer:SELECT record FROM table_name_98 WHERE date = "may 24" AND loss = "hayes (2-1)"###context:CREATE TABLE table_name_98 (record VARCHAR, date VARCHAR, loss VARCHAR)
###question:What is the Location when the Opponent shows vs. #23 south carolina?###answer:SELECT location FROM table_name_83 WHERE opponent = "vs. #23 south carolina"###context:CREATE TABLE table_name_83 (location VARCHAR, opponent VARCHAR)
###question:What is that if the weight for the play born on June 2, 1983?###answer:SELECT SUM(weight__kg_) FROM table_name_90 WHERE birthdate = "june 2, 1983"###context:CREATE TABLE table_name_90 (weight__kg_ INTEGER, birthdate VARCHAR)
###question:What was the highest weight in kg for F Position, Jersey #12?###answer:SELECT MAX(weight__kg_) FROM table_name_41 WHERE position = "f" AND jersey__number = 12###context:CREATE TABLE table_name_41 (weight__kg_ INTEGER, position VARCHAR, jersey__number VARCHAR)
###question:Which player is the NHL right, who was born in Downers Grove, Illinois?###answer:SELECT nhl_rights, _if_any FROM table_name_7 WHERE birthplace = "downers grove, illinois"###context:CREATE TABLE table_name_7 (nhl_rights VARCHAR, _if_any VARCHAR, birthplace VARCHAR)
###question:Which coding's variant id is abd'1a 3?###answer:SELECT coding FROM table_name_48 WHERE variant_id = "abd'1a 3"###context:CREATE TABLE table_name_48 (coding VARCHAR, variant_id VARCHAR)
###question:Which 5'utr splice's coding is 1a 2, when the Variant id is abd'1a 2?###answer:SELECT 5 AS ’utr_splice FROM table_name_70 WHERE coding = "1a 2" AND variant_id = "abd'1a 2"###context:CREATE TABLE table_name_70 (coding VARCHAR, variant_id VARCHAR)
###question:Which genbank id's variant is abd1a?###answer:SELECT genbank_id FROM table_name_41 WHERE variant_id = "abd1a"###context:CREATE TABLE table_name_41 (genbank_id VARCHAR, variant_id VARCHAR)
###question:What year did Orlando have a School/Club team in Clemson?###answer:SELECT years_in_orlando FROM table_name_53 WHERE school_club_team = "clemson"###context:CREATE TABLE table_name_53 (years_in_orlando VARCHAR, school_club_team VARCHAR)
###question:What years did the player in Orlando play that is from the United States, and is part of the school/club team Clemson?###answer:SELECT years_in_orlando FROM table_name_7 WHERE nationality = "united states" AND school_club_team = "clemson"###context:CREATE TABLE table_name_7 (years_in_orlando VARCHAR, nation...
###question:Who is the player for the School/Club team in Georgia?###answer:SELECT player FROM table_name_73 WHERE school_club_team = "georgia"###context:CREATE TABLE table_name_73 (player VARCHAR, school_club_team VARCHAR)
###question:What was the nationality of the player Pat Garrity?###answer:SELECT nationality FROM table_name_28 WHERE player = "pat garrity"###context:CREATE TABLE table_name_28 (nationality VARCHAR, player VARCHAR)
###question:What is the nationality of the School/Club team of Louisville?###answer:SELECT nationality FROM table_name_43 WHERE school_club_team = "louisville"###context:CREATE TABLE table_name_43 (nationality VARCHAR, school_club_team VARCHAR)
###question:How many features did Adam Carroll win 6 times when the start was larger than 32?###answer:SELECT COUNT(feature) FROM table_name_88 WHERE wins = 6 AND driver = "adam carroll" AND starts > 32###context:CREATE TABLE table_name_88 (feature VARCHAR, starts VARCHAR, wins VARCHAR, driver VARCHAR)
###question:What is the lowest feature with 2 wins and 2 sprints?###answer:SELECT MIN(feature) FROM table_name_32 WHERE wins = 2 AND sprint = 2###context:CREATE TABLE table_name_32 (feature INTEGER, wins VARCHAR, sprint VARCHAR)
###question:How many sprints on average had 10 wins and less than 5 features?###answer:SELECT AVG(sprint) FROM table_name_85 WHERE wins = 10 AND feature < 5###context:CREATE TABLE table_name_85 (sprint INTEGER, wins VARCHAR, feature VARCHAR)
###question:Which country has a lane greater than 6 and a mark of 6.63?###answer:SELECT country FROM table_name_80 WHERE lane > 6 AND mark = "6.63"###context:CREATE TABLE table_name_80 (country VARCHAR, lane VARCHAR, mark VARCHAR)
###question:What is the lowest lane for Nigeria, with a react less than 0.133?###answer:SELECT MIN(lane) FROM table_name_17 WHERE country = "nigeria" AND react < 0.133###context:CREATE TABLE table_name_17 (lane INTEGER, country VARCHAR, react VARCHAR)
###question:What is the mark for Kim Collins?###answer:SELECT mark FROM table_name_11 WHERE name = "kim collins"###context:CREATE TABLE table_name_11 (mark VARCHAR, name VARCHAR)
###question:Which country had 1 Bronze, 1 Silver, with a total of 3 medals?###answer:SELECT nation FROM table_name_10 WHERE bronze = 1 AND total = 3 AND silver = 1###context:CREATE TABLE table_name_10 (nation VARCHAR, silver VARCHAR, bronze VARCHAR, total VARCHAR)
###question:Which country had more than 2 silvers and less than 4 golds?###answer:SELECT nation FROM table_name_65 WHERE silver > 2 AND gold < 4###context:CREATE TABLE table_name_65 (nation VARCHAR, silver VARCHAR, gold VARCHAR)
###question:What's the average bronze with a total number of medals being 1, with more than 0 silvers?###answer:SELECT AVG(bronze) FROM table_name_25 WHERE total = 1 AND silver > 0###context:CREATE TABLE table_name_25 (bronze INTEGER, total VARCHAR, silver VARCHAR)
###question:In the 2005 season, how many races did the 15th place team complete?###answer:SELECT AVG(races) FROM table_name_98 WHERE final_placing = "15th" AND season = "2005"###context:CREATE TABLE table_name_98 (races INTEGER, final_placing VARCHAR, season VARCHAR)
###question:Which team completed 10 races?###answer:SELECT team_name FROM table_name_92 WHERE races = 10###context:CREATE TABLE table_name_92 (team_name VARCHAR, races VARCHAR)
###question:What is the PBA team with a Pick that is 4?###answer:SELECT pba_team FROM table_name_35 WHERE pick = 4###context:CREATE TABLE table_name_35 (pba_team VARCHAR, pick VARCHAR)
###question:What is the Player with a Pick that is 6?###answer:SELECT player FROM table_name_15 WHERE pick = 6###context:CREATE TABLE table_name_15 (player VARCHAR, pick VARCHAR)
###question:How many totals have 1 gold and a rank smaller than 2?###answer:SELECT COUNT(total) FROM table_name_32 WHERE gold = 1 AND rank < 2###context:CREATE TABLE table_name_32 (total VARCHAR, gold VARCHAR, rank VARCHAR)
###question:How much gold did South Korea get?###answer:SELECT SUM(gold) FROM table_name_49 WHERE nation = "south korea"###context:CREATE TABLE table_name_49 (gold INTEGER, nation VARCHAR)
###question:What locomotive built after 1895 has the highest SLM number?###answer:SELECT MAX(SLM) AS number FROM table_name_26 WHERE built > 1895###context:CREATE TABLE table_name_26 (SLM INTEGER, built INTEGER)
###question:Which type of locomotive was built in 1923?###answer:SELECT type FROM table_name_46 WHERE built = 1923###context:CREATE TABLE table_name_46 (type VARCHAR, built VARCHAR)
###question:When the United Kingdom had a time of 1:30.51.2, what was the lowest that they ranked?###answer:SELECT MIN(place) FROM table_name_8 WHERE country = "united kingdom" AND time = "1:30.51.2"###context:CREATE TABLE table_name_8 (place INTEGER, country VARCHAR, time VARCHAR)
###question:What County scored with a speed of 98.09mph?###answer:SELECT country FROM table_name_7 WHERE speed = "98.09mph"###context:CREATE TABLE table_name_7 (country VARCHAR, speed VARCHAR)
###question:What is Set 4, when Date is Jun 27, and when Set 3 is 17-25?###answer:SELECT set_4 FROM table_name_64 WHERE date = "jun 27" AND set_3 = "17-25"###context:CREATE TABLE table_name_64 (set_4 VARCHAR, date VARCHAR, set_3 VARCHAR)
###question:What is Score, when Set 3 is 17-25?###answer:SELECT score FROM table_name_67 WHERE set_3 = "17-25"###context:CREATE TABLE table_name_67 (score VARCHAR, set_3 VARCHAR)
###question:What is Set 5, when Date is Jun 26, and when Set 2 is 25-22?###answer:SELECT set_5 FROM table_name_46 WHERE date = "jun 26" AND set_2 = "25-22"###context:CREATE TABLE table_name_46 (set_5 VARCHAR, date VARCHAR, set_2 VARCHAR)
###question:What is Set 1, when Set 3 is 22-25?###answer:SELECT set_1 FROM table_name_39 WHERE set_3 = "22-25"###context:CREATE TABLE table_name_39 (set_1 VARCHAR, set_3 VARCHAR)
###question:What is Set 1, when Date is Jun 26, and when Set 4 is 26-24?###answer:SELECT set_1 FROM table_name_87 WHERE date = "jun 26" AND set_4 = "26-24"###context:CREATE TABLE table_name_87 (set_1 VARCHAR, date VARCHAR, set_4 VARCHAR)
###question:What is Set 4, when Set 5 is NA, and when Set 3 is 19-25?###answer:SELECT set_4 FROM table_name_10 WHERE set_5 = "na" AND set_3 = "19-25"###context:CREATE TABLE table_name_10 (set_4 VARCHAR, set_5 VARCHAR, set_3 VARCHAR)
###question:What is the Team when the match was in buenos aires , argentina?###answer:SELECT team FROM table_name_60 WHERE location = "buenos aires , argentina"###context:CREATE TABLE table_name_60 (team VARCHAR, location VARCHAR)
###question:What is the Location when the team was seve ballesteros & manuel piñero?###answer:SELECT location FROM table_name_61 WHERE team = "seve ballesteros & manuel piñero"###context:CREATE TABLE table_name_61 (location VARCHAR, team VARCHAR)
###question:What is the Location when the individual was josé maria cañizares?###answer:SELECT location FROM table_name_23 WHERE individual = "josé maria cañizares"###context:CREATE TABLE table_name_23 (location VARCHAR, individual VARCHAR)
###question:What is the highest Year when the team was seve ballesteros & manuel piñero?###answer:SELECT MAX(year) FROM table_name_59 WHERE team = "seve ballesteros & manuel piñero"###context:CREATE TABLE table_name_59 (year INTEGER, team VARCHAR)
###question:What is the total number of acres at Sai Tso Wan, opening before 1978?###answer:SELECT COUNT(acres) FROM table_name_29 WHERE landfill = "sai tso wan" AND opened < 1978###context:CREATE TABLE table_name_29 (acres VARCHAR, landfill VARCHAR, opened VARCHAR)
###question:Which Rank has a Goals smaller than 76, and a Matches larger than 270?###answer:SELECT SUM(rank) FROM table_name_42 WHERE goals < 76 AND matches > 270###context:CREATE TABLE table_name_42 (rank INTEGER, goals VARCHAR, matches VARCHAR)
###question:Which Matches have a Rank smaller than 5, a Years of 1995–2003, and a Goals smaller than 104?###answer:SELECT AVG(matches) FROM table_name_67 WHERE rank < 5 AND years = "1995–2003" AND goals < 104###context:CREATE TABLE table_name_67 (matches INTEGER, goals VARCHAR, rank VARCHAR, years VARCHAR)
###question:Which Goals have a Name of lee dong-gook?###answer:SELECT MAX(goals) FROM table_name_17 WHERE name = "lee dong-gook"###context:CREATE TABLE table_name_17 (goals INTEGER, name VARCHAR)
###question:Which Rank has a Years of 1998–present?###answer:SELECT AVG(rank) FROM table_name_82 WHERE years = "1998–present"###context:CREATE TABLE table_name_82 (rank INTEGER, years VARCHAR)
###question:Which Matches have a Rank of 2?###answer:SELECT COUNT(matches) FROM table_name_94 WHERE rank = 2###context:CREATE TABLE table_name_94 (matches VARCHAR, rank VARCHAR)
###question:What Position was achieved in the World Championships Competition in Tokyo, Japan?###answer:SELECT position FROM table_name_24 WHERE competition = "world championships" AND venue = "tokyo, japan"###context:CREATE TABLE table_name_24 (position VARCHAR, competition VARCHAR, venue VARCHAR)
###question:Which Competition was 1st Position with 57.03 in Notes?###answer:SELECT competition FROM table_name_57 WHERE position = "1st" AND notes = "57.03"###context:CREATE TABLE table_name_57 (competition VARCHAR, position VARCHAR, notes VARCHAR)
###question:What is the earliest Year for 400m h Event with 54.86 in Notes?###answer:SELECT MIN(year) FROM table_name_55 WHERE event = "400m h" AND notes = "54.86"###context:CREATE TABLE table_name_55 (year INTEGER, event VARCHAR, notes VARCHAR)
###question:What is the total number of appearances for players from Chaux-de-Fonds with places over 8?###answer:SELECT COUNT(appearances) FROM table_name_25 WHERE team = "chaux-de-fonds" AND place > 8###context:CREATE TABLE table_name_25 (appearances VARCHAR, team VARCHAR, place VARCHAR)
###question:What is the highest week of the game on November 9, 1997?###answer:SELECT MAX(week) FROM table_name_1 WHERE date = "november 9, 1997"###context:CREATE TABLE table_name_1 (week INTEGER, date VARCHAR)
###question:Which Proto-Austronesian has a Proto-Oceanic of *lima?###answer:SELECT proto_austronesian FROM table_name_97 WHERE proto_oceanic = "*lima"###context:CREATE TABLE table_name_97 (proto_austronesian VARCHAR, proto_oceanic VARCHAR)
###question:Which Proto-Oceanic has a Proto-Polynesian of *lima?###answer:SELECT proto_oceanic FROM table_name_85 WHERE proto_polynesian = "*lima"###context:CREATE TABLE table_name_85 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)
###question:Which Number has a Proto-Polynesian of *taha?###answer:SELECT number FROM table_name_71 WHERE proto_polynesian = "*taha"###context:CREATE TABLE table_name_71 (number VARCHAR, proto_polynesian VARCHAR)
###question:WHich Proto-Polynesian has a Number of five?###answer:SELECT proto_polynesian FROM table_name_69 WHERE number = "five"###context:CREATE TABLE table_name_69 (proto_polynesian VARCHAR, number VARCHAR)
###question:Which Proto-Polynesian has a Proto-Malayo-Polynesian of *telu?###answer:SELECT proto_polynesian FROM table_name_50 WHERE proto_malayo_polynesian = "*telu"###context:CREATE TABLE table_name_50 (proto_polynesian VARCHAR, proto_malayo_polynesian VARCHAR)
###question:Which Proto-Oceanic has a Proto-Polynesian of *lima?###answer:SELECT proto_oceanic FROM table_name_48 WHERE proto_polynesian = "*lima"###context:CREATE TABLE table_name_48 (proto_oceanic VARCHAR, proto_polynesian VARCHAR)
###question:How many countries in 2009 have fewer than 1 in 1999, more than 0 in 2006 and none in 1997?###answer:SELECT COUNT(2009) FROM table_name_49 WHERE 1999 < 1 AND 2006 > 0 AND 1997 < 0###context:CREATE TABLE table_name_49 (Id VARCHAR)
###question:How much is the highest number in 2006 with fewer than 0 in 2002?###answer:SELECT MAX(2006) FROM table_name_16 WHERE 2002 < 0###context:CREATE TABLE table_name_16 (Id VARCHAR)
###question:How many are there in 2003 that have 0 in 2001, more than 0 in 2009 and fewer than 0 in 1999?###answer:SELECT SUM(2003) FROM table_name_97 WHERE 2001 = 0 AND 2009 > 0 AND 1999 < 0###context:CREATE TABLE table_name_97 (Id VARCHAR)
###question:Which country has more than 0 in 2012 and 2009, 0 in 2008 and more than 0 in 2004?###answer:SELECT country FROM table_name_18 WHERE 2012 > 0 AND 2009 > 0 AND 2008 = 0 AND 2004 > 0###context:CREATE TABLE table_name_18 (country VARCHAR)
###question:Which % GDP has an Expenditure larger than 50.9, and a Year larger than 2009, and an Income of 39.3?###answer:SELECT _percentage_gdp FROM table_name_16 WHERE expenditure > 50.9 AND year > 2009 AND income = 39.3###context:CREATE TABLE table_name_16 (_percentage_gdp VARCHAR, income VARCHAR, expenditure VARCHA...
###question:Which Year has an Expenditure smaller than 41.3, and a % GDP of x, and an Income larger than 34.4?###answer:SELECT SUM(year) FROM table_name_65 WHERE expenditure < 41.3 AND _percentage_gdp = "x" AND income > 34.4###context:CREATE TABLE table_name_65 (year INTEGER, income VARCHAR, expenditure VARCHAR, _perce...
###question:Which Surplus(Deficit) has an Expenditure larger than 45.8, and a Year smaller than 2011, and a % GDP of (0.9%)?###answer:SELECT surplus_deficit_ FROM table_name_88 WHERE expenditure > 45.8 AND year < 2011 AND _percentage_gdp = "(0.9%)"###context:CREATE TABLE table_name_88 (surplus_deficit_ VARCHAR, _percen...
###question:Which Year has an Expenditure of 55, and an Income smaller than 36.2?###answer:SELECT MIN(year) FROM table_name_7 WHERE expenditure = 55 AND income < 36.2###context:CREATE TABLE table_name_7 (year INTEGER, expenditure VARCHAR, income VARCHAR)
###question:Which % GDP has a Year smaller than 2011, and an Expenditure larger than 41.3, and an Income smaller than 48, and a Surplus(Deficit) of (24.6)?###answer:SELECT _percentage_gdp FROM table_name_19 WHERE year < 2011 AND expenditure > 41.3 AND income < 48 AND surplus_deficit_ = "(24.6)"###context:CREATE TABLE t...
###question:What year was the Grand Prix Passing Shot Bordeaux that had Runners-up of Diego Nargiso?###answer:SELECT year FROM table_name_96 WHERE tournament_name = "grand prix passing shot bordeaux" AND runners_up = "diego nargiso"###context:CREATE TABLE table_name_96 (year VARCHAR, tournament_name VARCHAR, runners_up...
###question:What tournament had a score of 5–7, 6–4, 6–4?###answer:SELECT tournament_name FROM table_name_65 WHERE score = "5–7, 6–4, 6–4"###context:CREATE TABLE table_name_65 (tournament_name VARCHAR, score VARCHAR)
###question:After 1989, what was the score of the Grand Prix Passing Shot where the Runners-up were Jeff Tarango?###answer:SELECT score FROM table_name_65 WHERE year > 1989 AND tournament_name = "grand prix passing shot" AND runners_up = "jeff tarango"###context:CREATE TABLE table_name_65 (score VARCHAR, runners_up VAR...