combined_text stringlengths 106 1.05k |
|---|
###question:How many seats does leader Raymond McCartney have?###answer:SELECT SUM(number_of_seats) FROM table_name_2 WHERE leader = "raymond mccartney"###context:CREATE TABLE table_name_2 (number_of_seats INTEGER, leader VARCHAR) |
###question:Which leader of the Democratic Unionist party has more than 8 seats?###answer:SELECT leader FROM table_name_35 WHERE number_of_seats > 8 AND party = "democratic unionist party"###context:CREATE TABLE table_name_35 (leader VARCHAR, number_of_seats VARCHAR, party VARCHAR) |
###question:Anuya Bhagvath was nominated for what award?###answer:SELECT award FROM table_name_60 WHERE outcome = "nominated" AND name = "anuya bhagvath"###context:CREATE TABLE table_name_60 (award VARCHAR, outcome VARCHAR, name VARCHAR) |
###question:Which award has film lyricist in the category?###answer:SELECT award FROM table_name_11 WHERE category = "film lyricist"###context:CREATE TABLE table_name_11 (award VARCHAR, category VARCHAR) |
###question:What is the category Anuya Bhagvath was nominated for at vijay award?###answer:SELECT ceremony FROM table_name_39 WHERE award = "vijay award" AND outcome = "nominated" AND name = "anuya bhagvath"###context:CREATE TABLE table_name_39 (ceremony VARCHAR, name VARCHAR, award VARCHAR, outcome VARCHAR) |
###question:Which ceremony has the best lyricist category?###answer:SELECT ceremony FROM table_name_67 WHERE category = "best lyricist"###context:CREATE TABLE table_name_67 (ceremony VARCHAR, category VARCHAR) |
###question:Which best 3-year period has a best 15-year period of smyslov; kasparov, and a Position of 5?###answer:SELECT best_3_year_period FROM table_name_61 WHERE best_15_year_period = "smyslov; kasparov" AND position = 5###context:CREATE TABLE table_name_61 (best_3_year_period VARCHAR, best_15_year_period VARCHAR, ... |
###question:Which best 5-year period has a best 15-year period of alekhine; lasker?###answer:SELECT best_5_year_period FROM table_name_37 WHERE best_15_year_period = "alekhine; lasker"###context:CREATE TABLE table_name_37 (best_5_year_period VARCHAR, best_15_year_period VARCHAR) |
###question:Which best 10-year period has a best 2-year period of petrosian?###answer:SELECT best_10_year_period FROM table_name_32 WHERE best_2_year_period = "petrosian"###context:CREATE TABLE table_name_32 (best_10_year_period VARCHAR, best_2_year_period VARCHAR) |
###question:Which Position has a best 3-year period of petrosian?###answer:SELECT MAX(position) FROM table_name_69 WHERE best_3_year_period = "petrosian"###context:CREATE TABLE table_name_69 (position INTEGER, best_3_year_period VARCHAR) |
###question:What is High Rebounds, when Score is 61-59?###answer:SELECT high_rebounds FROM table_name_6 WHERE score = "61-59"###context:CREATE TABLE table_name_6 (high_rebounds VARCHAR, score VARCHAR) |
###question:What is Score, when High Rebounds is "Nolan (10)"?###answer:SELECT score FROM table_name_61 WHERE high_rebounds = "nolan (10)"###context:CREATE TABLE table_name_61 (score VARCHAR, high_rebounds VARCHAR) |
###question:What is Opponent, when High Rebounds is "Pierson (6)"?###answer:SELECT opponent FROM table_name_67 WHERE high_rebounds = "pierson (6)"###context:CREATE TABLE table_name_67 (opponent VARCHAR, high_rebounds VARCHAR) |
###question:What is the sum of Game(s), when High Rebounds is "Pierson (6)"?###answer:SELECT SUM(game) FROM table_name_6 WHERE high_rebounds = "pierson (6)"###context:CREATE TABLE table_name_6 (game INTEGER, high_rebounds VARCHAR) |
###question:How many Laps did Bob Wollek have?###answer:SELECT AVG(laps) FROM table_name_5 WHERE driver = "bob wollek"###context:CREATE TABLE table_name_5 (laps INTEGER, driver VARCHAR) |
###question:How many Laps did Team Primagaz Competition have?###answer:SELECT laps FROM table_name_14 WHERE team = "primagaz competition"###context:CREATE TABLE table_name_14 (laps VARCHAR, team VARCHAR) |
###question:What Team had 40 Laps in C1 Class?###answer:SELECT team FROM table_name_46 WHERE class = "c1" AND laps = 40###context:CREATE TABLE table_name_46 (team VARCHAR, class VARCHAR, laps VARCHAR) |
###question:What Team has Bob Wollek as a Driver with 76 Laps in C1 Class?###answer:SELECT team FROM table_name_63 WHERE class = "c1" AND laps = 76 AND driver = "bob wollek"###context:CREATE TABLE table_name_63 (team VARCHAR, driver VARCHAR, class VARCHAR, laps VARCHAR) |
###question:How many Laps does GP Motorsport Team have?###answer:SELECT SUM(laps) FROM table_name_43 WHERE team = "gp motorsport"###context:CREATE TABLE table_name_43 (laps INTEGER, team VARCHAR) |
###question:what is the location when the score is w 105-99?###answer:SELECT location FROM table_name_58 WHERE score = "w 105-99"###context:CREATE TABLE table_name_58 (location VARCHAR, score VARCHAR) |
###question:what is the location on november 23?###answer:SELECT location FROM table_name_58 WHERE date = "november 23"###context:CREATE TABLE table_name_58 (location VARCHAR, date VARCHAR) |
###question:Name the highest Ends Lost which has an Shot % larger than 78, and a Ends Won smaller than 38?###answer:SELECT MAX(ends_lost) FROM table_name_63 WHERE shot__percentage > 78 AND ends_won < 38###context:CREATE TABLE table_name_63 (ends_lost INTEGER, shot__percentage VARCHAR, ends_won VARCHAR) |
###question:Name the Country which has Stolen Ends larger than 7, and a Skip of david murdoch?###answer:SELECT country FROM table_name_67 WHERE stolen_ends > 7 AND skip = "david murdoch"###context:CREATE TABLE table_name_67 (country VARCHAR, stolen_ends VARCHAR, skip VARCHAR) |
###question:Name the average Stolen Ends which has an Ends Lost smaller than 35?###answer:SELECT AVG(stolen_ends) FROM table_name_89 WHERE ends_lost < 35###context:CREATE TABLE table_name_89 (stolen_ends INTEGER, ends_lost INTEGER) |
###question:Name the average Blank Ends which has a Shot % smaller than 78, and a Ends Won larger than 43?###answer:SELECT AVG(blank_ends) FROM table_name_80 WHERE shot__percentage < 78 AND ends_won > 43###context:CREATE TABLE table_name_80 (blank_ends INTEGER, shot__percentage VARCHAR, ends_won VARCHAR) |
###question:What rank has skyfall as the title?###answer:SELECT rank FROM table_name_35 WHERE title = "skyfall"###context:CREATE TABLE table_name_35 (rank VARCHAR, title VARCHAR) |
###question:What director(s) have the intouchables as the title?###answer:SELECT director_s_ FROM table_name_67 WHERE title = "the intouchables"###context:CREATE TABLE table_name_67 (director_s_ VARCHAR, title VARCHAR) |
###question:What studio has 6 as the rank?###answer:SELECT studio FROM table_name_32 WHERE rank = 6###context:CREATE TABLE table_name_32 (studio VARCHAR, rank VARCHAR) |
###question:How many ranks have $1,084,439,099 as the worldwide gross?###answer:SELECT SUM(rank) FROM table_name_91 WHERE worldwide_gross = "$1,084,439,099"###context:CREATE TABLE table_name_91 (rank INTEGER, worldwide_gross VARCHAR) |
###question:What is the 1981 value of the Macedonian population with a 1971 number greater than 192 and a 1991 of 1748?###answer:SELECT 1981 FROM table_name_54 WHERE number_1971 > 192 AND 1991 = 1748###context:CREATE TABLE table_name_54 (number_1971 VARCHAR) |
###question:What is the lowest 1971 number of the Macedonian population with a 2002 value greater than 133 and a 1991 value less than 171?###answer:SELECT MIN(number_1971) FROM table_name_15 WHERE 2002 > 133 AND 1991 < 171###context:CREATE TABLE table_name_15 (number_1971 INTEGER) |
###question:What is the total 1961 number of the plandište Macedonian population with a 1981 value greater than 1027?###answer:SELECT COUNT(1961) FROM table_name_47 WHERE macedonian_population_in_vojvodina = "plandište" AND 1981 > 1027###context:CREATE TABLE table_name_47 (macedonian_population_in_vojvodina VARCHAR) |
###question:What is the 1961 total of the Macedonian population with a 1971 number of 3325 and a 1991 value greater than 3177?###answer:SELECT COUNT(1961) FROM table_name_15 WHERE number_1971 = 3325 AND 1991 > 3177###context:CREATE TABLE table_name_15 (number_1971 VARCHAR) |
###question:What airport is in Muscat?###answer:SELECT airport FROM table_name_60 WHERE city = "muscat"###context:CREATE TABLE table_name_60 (airport VARCHAR, city VARCHAR) |
###question:What country is Bandar Abbas in?###answer:SELECT country FROM table_name_8 WHERE city = "bandar abbas"###context:CREATE TABLE table_name_8 (country VARCHAR, city VARCHAR) |
###question:What is the city in India with an airport named Sardar Vallabhbhai Patel International Airport?###answer:SELECT city FROM table_name_58 WHERE country = "india" AND airport = "sardar vallabhbhai patel international airport"###context:CREATE TABLE table_name_58 (city VARCHAR, country VARCHAR, airport VARCHAR) |
###question:What airport is in China with an ICAO of zbaa?###answer:SELECT airport FROM table_name_55 WHERE country = "china" AND icao = "zbaa"###context:CREATE TABLE table_name_55 (airport VARCHAR, country VARCHAR, icao VARCHAR) |
###question:What airport is in Toronto?###answer:SELECT airport FROM table_name_87 WHERE city = "toronto"###context:CREATE TABLE table_name_87 (airport VARCHAR, city VARCHAR) |
###question:What country has an ICAO of ypph?###answer:SELECT country FROM table_name_67 WHERE icao = "ypph"###context:CREATE TABLE table_name_67 (country VARCHAR, icao VARCHAR) |
###question:When the mark is 8.54, the reaction time was over 0.23800000000000002 seconds, what's the highest amount of points recorded?###answer:SELECT MAX(points) FROM table_name_79 WHERE mark = "8.54" AND react > 0.23800000000000002###context:CREATE TABLE table_name_79 (points INTEGER, mark VARCHAR, react VARCHAR) |
###question:Which country has a reaction time of under 0.242 seconds and over 1041 points?###answer:SELECT country FROM table_name_58 WHERE react < 0.242 AND points > 1041###context:CREATE TABLE table_name_58 (country VARCHAR, react VARCHAR, points VARCHAR) |
###question:If a country has 1008 points what's their reaction time?###answer:SELECT MAX(react) FROM table_name_84 WHERE points = 1008###context:CREATE TABLE table_name_84 (react INTEGER, points VARCHAR) |
###question:Which wicket had 580 runs?###answer:SELECT wicket FROM table_name_85 WHERE runs = "580"###context:CREATE TABLE table_name_85 (wicket VARCHAR, runs VARCHAR) |
###question:Who fielded against the 8th wicket?###answer:SELECT fielding_team FROM table_name_81 WHERE wicket = "8th"###context:CREATE TABLE table_name_81 (fielding_team VARCHAR, wicket VARCHAR) |
###question:How many runs did Vijay Hazare and Gul Mohammad score?###answer:SELECT runs FROM table_name_98 WHERE batting_partners = "vijay hazare and gul mohammad"###context:CREATE TABLE table_name_98 (runs VARCHAR, batting_partners VARCHAR) |
###question:Who were the batting partners in Colombo?###answer:SELECT batting_partners FROM table_name_99 WHERE venue = "colombo"###context:CREATE TABLE table_name_99 (batting_partners VARCHAR, venue VARCHAR) |
###question:Who was the batting team in the 2006 season?###answer:SELECT batting_team FROM table_name_61 WHERE season = "2006"###context:CREATE TABLE table_name_61 (batting_team VARCHAR, season VARCHAR) |
###question:In what season was 577 runs scored?###answer:SELECT season FROM table_name_33 WHERE runs = "577"###context:CREATE TABLE table_name_33 (season VARCHAR, runs VARCHAR) |
###question:What opposing team has 20 against?###answer:SELECT opposing_team FROM table_name_7 WHERE against = 20###context:CREATE TABLE table_name_7 (opposing_team VARCHAR, against VARCHAR) |
###question:Venue for Hawke's bay?###answer:SELECT venue FROM table_name_14 WHERE opposing_team = "hawke's bay"###context:CREATE TABLE table_name_14 (venue VARCHAR, opposing_team VARCHAR) |
###question:What is the average December, when Game is "36"?###answer:SELECT AVG(december) FROM table_name_39 WHERE game = 36###context:CREATE TABLE table_name_39 (december INTEGER, game VARCHAR) |
###question:What is the lowest Game, when December is greater than 13, and when Score is "5 - 0"?###answer:SELECT MIN(game) FROM table_name_22 WHERE december > 13 AND score = "5 - 0"###context:CREATE TABLE table_name_22 (game INTEGER, december VARCHAR, score VARCHAR) |
###question:What is the sum of December, when Game is greater than 31, and when Score is "5 - 2"?###answer:SELECT SUM(december) FROM table_name_61 WHERE game > 31 AND score = "5 - 2"###context:CREATE TABLE table_name_61 (december INTEGER, game VARCHAR, score VARCHAR) |
###question:What is Record, when Game is "36"?###answer:SELECT record FROM table_name_79 WHERE game = 36###context:CREATE TABLE table_name_79 (record VARCHAR, game VARCHAR) |
###question:What was the away team that played against home team Leatherhead?###answer:SELECT away_team FROM table_name_53 WHERE home_team = "leatherhead"###context:CREATE TABLE table_name_53 (away_team VARCHAR, home_team VARCHAR) |
###question:What was the score of the match played against away team Arsenal?###answer:SELECT score FROM table_name_96 WHERE away_team = "arsenal"###context:CREATE TABLE table_name_96 (score VARCHAR, away_team VARCHAR) |
###question:Can you tell me the highest Total votes that has the % of popular vote of 0.86%, and the # of seats won larger than 0?###answer:SELECT MAX(total_votes) FROM table_name_48 WHERE _percentage_of_popular_vote = "0.86%" AND _number_of_seats_won > 0###context:CREATE TABLE table_name_48 (total_votes INTEGER, _perc... |
###question:Can you tell me the average Total votes that has the # of seats won smaller than 0?###answer:SELECT AVG(total_votes) FROM table_name_75 WHERE _number_of_seats_won < 0###context:CREATE TABLE table_name_75 (total_votes INTEGER, _number_of_seats_won INTEGER) |
###question:Can you tell me the total number of Total votes that has the Election larger than 2009, and the Candidates fielded larger than 61?###answer:SELECT COUNT(total_votes) FROM table_name_71 WHERE election > 2009 AND candidates_fielded > 61###context:CREATE TABLE table_name_71 (total_votes VARCHAR, election VARCH... |
###question:Which tournament did the opponent Guillermo Carry play?###answer:SELECT tournament FROM table_name_60 WHERE opponent = "guillermo carry"###context:CREATE TABLE table_name_60 (tournament VARCHAR, opponent VARCHAR) |
###question:Who was the opponent on April 21, 2008?###answer:SELECT opponent FROM table_name_44 WHERE date = "april 21, 2008"###context:CREATE TABLE table_name_44 (opponent VARCHAR, date VARCHAR) |
###question:Who is the opponent on November 22, 2009, clay surface?###answer:SELECT opponent FROM table_name_46 WHERE surface = "clay" AND date = "november 22, 2009"###context:CREATE TABLE table_name_46 (opponent VARCHAR, surface VARCHAR, date VARCHAR) |
###question:Which Laps have a Grid larger than 8, and a Rider of anthony west?###answer:SELECT MAX(laps) FROM table_name_60 WHERE grid > 8 AND rider = "anthony west"###context:CREATE TABLE table_name_60 (laps INTEGER, grid VARCHAR, rider VARCHAR) |
###question:Which time has a Rider of anthony west?###answer:SELECT time FROM table_name_66 WHERE rider = "anthony west"###context:CREATE TABLE table_name_66 (time VARCHAR, rider VARCHAR) |
###question:Which Grid is the highest one that has a Rider of colin edwards, and Laps smaller than 28?###answer:SELECT MAX(grid) FROM table_name_86 WHERE rider = "colin edwards" AND laps < 28###context:CREATE TABLE table_name_86 (grid INTEGER, rider VARCHAR, laps VARCHAR) |
###question:Which Laps have a Rider of andrea dovizioso?###answer:SELECT MIN(laps) FROM table_name_2 WHERE rider = "andrea dovizioso"###context:CREATE TABLE table_name_2 (laps INTEGER, rider VARCHAR) |
###question:What college/junior/club team had a player selected in round 6?###answer:SELECT college_junior_club_team__league_ FROM table_name_4 WHERE round = 6###context:CREATE TABLE table_name_4 (college_junior_club_team__league_ VARCHAR, round VARCHAR) |
###question:What round of the draft was Stan Adams selected?###answer:SELECT AVG(round) FROM table_name_59 WHERE player = "stan adams"###context:CREATE TABLE table_name_59 (round INTEGER, player VARCHAR) |
###question:What is the attendance for the t7-7 result?###answer:SELECT attendance FROM table_name_17 WHERE result = "t7-7"###context:CREATE TABLE table_name_17 (attendance VARCHAR, result VARCHAR) |
###question:What is the date for 45,000 in attendance?###answer:SELECT date FROM table_name_32 WHERE attendance = "45,000"###context:CREATE TABLE table_name_32 (date VARCHAR, attendance VARCHAR) |
###question:How many strokes under par was the player who scored 71?###answer:SELECT to_par FROM table_name_43 WHERE score = 71###context:CREATE TABLE table_name_43 (to_par VARCHAR, score VARCHAR) |
###question:What place is Jay Hebert?###answer:SELECT place FROM table_name_60 WHERE player = "jay hebert"###context:CREATE TABLE table_name_60 (place VARCHAR, player VARCHAR) |
###question:Which Games lost has Points against of 61, and Points difference smaller than 42?###answer:SELECT SUM(games_lost) FROM table_name_74 WHERE points_against = 61 AND points_difference < 42###context:CREATE TABLE table_name_74 (games_lost INTEGER, points_against VARCHAR, points_difference VARCHAR) |
###question:Which Games won has Bonus points larger than 1, a Points difference smaller than 50, Points against of 106, and Points for smaller than 152?###answer:SELECT COUNT(games_won) FROM table_name_58 WHERE bonus_points > 1 AND points_difference < 50 AND points_against = 106 AND points_for < 152###context:CREATE TA... |
###question:Which Score has a Record of 1-2?###answer:SELECT score FROM table_name_40 WHERE record = "1-2"###context:CREATE TABLE table_name_40 (score VARCHAR, record VARCHAR) |
###question:What is the Record for April 15?###answer:SELECT record FROM table_name_45 WHERE date = "april 15"###context:CREATE TABLE table_name_45 (record VARCHAR, date VARCHAR) |
###question:What is the Record for April 13?###answer:SELECT record FROM table_name_14 WHERE date = "april 13"###context:CREATE TABLE table_name_14 (record VARCHAR, date VARCHAR) |
###question:On April 15 who is the Home team?###answer:SELECT home FROM table_name_80 WHERE date = "april 15"###context:CREATE TABLE table_name_80 (home VARCHAR, date VARCHAR) |
###question:Which Attendance has a Date of december 22, 1985, and a Week smaller than 16?###answer:SELECT SUM(attendance) FROM table_name_65 WHERE date = "december 22, 1985" AND week < 16###context:CREATE TABLE table_name_65 (attendance INTEGER, date VARCHAR, week VARCHAR) |
###question:Which Attendance has a Result of w 23-21, and a Week smaller than 5?###answer:SELECT AVG(attendance) FROM table_name_75 WHERE result = "w 23-21" AND week < 5###context:CREATE TABLE table_name_75 (attendance INTEGER, result VARCHAR, week VARCHAR) |
###question:Which Week has a Result of w 20-13?###answer:SELECT AVG(week) FROM table_name_20 WHERE result = "w 20-13"###context:CREATE TABLE table_name_20 (week INTEGER, result VARCHAR) |
###question:What are the Japanese characters for the Chinese word 叉焼?###answer:SELECT japanese FROM table_name_28 WHERE chinese = "叉焼"###context:CREATE TABLE table_name_28 (japanese VARCHAR, chinese VARCHAR) |
###question:What language did the word that means mahjong first come from?###answer:SELECT source_language FROM table_name_28 WHERE meaning = "mahjong"###context:CREATE TABLE table_name_28 (source_language VARCHAR, meaning VARCHAR) |
###question:What is the Romanization of the Mandarin word whose Rōmaji is ūroncha###answer:SELECT romanization FROM table_name_81 WHERE source_language = "mandarin" AND rōmaji = "ūroncha"###context:CREATE TABLE table_name_81 (romanization VARCHAR, source_language VARCHAR, rōmaji VARCHAR) |
###question:What language did the word mahjong originate from?###answer:SELECT source_language FROM table_name_31 WHERE meaning = "mahjong"###context:CREATE TABLE table_name_31 (source_language VARCHAR, meaning VARCHAR) |
###question:What are the Chinese characters for the word that has a Rōmaji of chāshū?###answer:SELECT chinese FROM table_name_61 WHERE rōmaji = "chāshū"###context:CREATE TABLE table_name_61 (chinese VARCHAR, rōmaji VARCHAR) |
###question:What was the category of Richard Nixon as President in a year prior to 2009?###answer:SELECT category FROM table_name_3 WHERE president = "richard nixon" AND year < 2009###context:CREATE TABLE table_name_3 (category VARCHAR, president VARCHAR, year VARCHAR) |
###question:What is the film that Raymond Massey was nominated for?###answer:SELECT film FROM table_name_94 WHERE nominee = "raymond massey"###context:CREATE TABLE table_name_94 (film VARCHAR, nominee VARCHAR) |
###question:What was the film of Richard Nixon as President in a year newer than 1996?###answer:SELECT film FROM table_name_49 WHERE president = "richard nixon" AND year > 1996###context:CREATE TABLE table_name_49 (film VARCHAR, president VARCHAR, year VARCHAR) |
###question:WHich Partner has a Outcome of winner, and a Opponents in the final of rick leach jim pugh?###answer:SELECT partner FROM table_name_3 WHERE outcome = "winner" AND opponents_in_the_final = "rick leach jim pugh"###context:CREATE TABLE table_name_3 (partner VARCHAR, outcome VARCHAR, opponents_in_the_final VARC... |
###question:Which Score in the final has a Surface of hard on august 20, 1989?###answer:SELECT score_in_the_final FROM table_name_47 WHERE surface = "hard" AND date = "august 20, 1989"###context:CREATE TABLE table_name_47 (score_in_the_final VARCHAR, surface VARCHAR, date VARCHAR) |
###question:Name the Outcome which has a Score in the final of 4–6, 4–6 on october 21, 1990?###answer:SELECT outcome FROM table_name_15 WHERE score_in_the_final = "4–6, 4–6" AND date = "october 21, 1990"###context:CREATE TABLE table_name_15 (outcome VARCHAR, score_in_the_final VARCHAR, date VARCHAR) |
###question:Which Tournament has a Score in the final of 7–5, 6–4?###answer:SELECT tournament FROM table_name_2 WHERE score_in_the_final = "7–5, 6–4"###context:CREATE TABLE table_name_2 (tournament VARCHAR, score_in_the_final VARCHAR) |
###question:Name the Score which has a Partner of jorge lozano, an Outcome of runner-up, and Opponents in the final of udo riglewski michael stich?###answer:SELECT score_in_the_final FROM table_name_85 WHERE partner = "jorge lozano" AND outcome = "runner-up" AND opponents_in_the_final = "udo riglewski michael stich"###... |
###question:Name the Date which has Opponents in the final of patrick mcenroe tim wilkison?###answer:SELECT date FROM table_name_12 WHERE opponents_in_the_final = "patrick mcenroe tim wilkison"###context:CREATE TABLE table_name_12 (date VARCHAR, opponents_in_the_final VARCHAR) |
###question:What is the total number of goals that have games under 11, debut round over 15, and age of 20 years, 71 days?###answer:SELECT COUNT(goals__2008_) FROM table_name_86 WHERE games__2008_ < 11 AND debut_round > 15 AND age_at_debut = "20 years, 71 days"###context:CREATE TABLE table_name_86 (goals__2008_ VARCHAR... |
###question:What is the name that has a debut round over 14, games under 2, and a club of Melbourne?###answer:SELECT name FROM table_name_93 WHERE debut_round > 14 AND games__2008_ < 2 AND club = "melbourne"###context:CREATE TABLE table_name_93 (name VARCHAR, club VARCHAR, debut_round VARCHAR, games__2008_ VARCHAR) |
###question:What is the name of team 2 that has 1-2 as the score?###answer:SELECT team_2 FROM table_name_91 WHERE score = "1-2"###context:CREATE TABLE table_name_91 (team_2 VARCHAR, score VARCHAR) |
###question:In the 2005 season with a score of 0-4 what is the team 1?###answer:SELECT team_1 FROM table_name_9 WHERE season = "2005" AND score = "0-4"###context:CREATE TABLE table_name_9 (team_1 VARCHAR, season VARCHAR, score VARCHAR) |
###question:Team 2 of Yokohama F. Marinos in the n/a venue had what score?###answer:SELECT score FROM table_name_90 WHERE venue = "n/a" AND team_2 = "yokohama f. marinos"###context:CREATE TABLE table_name_90 (score VARCHAR, venue VARCHAR, team_2 VARCHAR) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.