combined_text
stringlengths
106
1.05k
###question:What is the largest number of events with the Masters Tournament and less than 4 in the top-25?###answer:SELECT MAX(events) FROM table_name_77 WHERE tournament = "masters tournament" AND top_25 < 4###context:CREATE TABLE table_name_77 (events INTEGER, tournament VARCHAR, top_25 VARCHAR)
###question:What was the record of the game played on November 7?###answer:SELECT record FROM table_name_45 WHERE game < 7 AND date = "november 7"###context:CREATE TABLE table_name_45 (record VARCHAR, game VARCHAR, date VARCHAR)
###question:What was the game number of the game played against Charlotte?###answer:SELECT COUNT(game) FROM table_name_67 WHERE team = "charlotte"###context:CREATE TABLE table_name_67 (game VARCHAR, team VARCHAR)
###question:What venue held the 1966 fifa world cup qualification on may 7, 1965?###answer:SELECT venue FROM table_name_95 WHERE competition = "1966 fifa world cup qualification" AND date = "may 7, 1965"###context:CREATE TABLE table_name_95 (venue VARCHAR, competition VARCHAR, date VARCHAR)
###question:What was the result for the 1966 fifa world cup qualification in mexico city, mexico and a goal over 8?###answer:SELECT result FROM table_name_41 WHERE venue = "mexico city, mexico" AND competition = "1966 fifa world cup qualification" AND goal > 8###context:CREATE TABLE table_name_41 (result VARCHAR, goal ...
###question:When was the venue mexico city, mexico with a goal of 8?###answer:SELECT date FROM table_name_9 WHERE venue = "mexico city, mexico" AND goal = 8###context:CREATE TABLE table_name_9 (date VARCHAR, venue VARCHAR, goal VARCHAR)
###question:In what place was the golfer that had a score of 69?###answer:SELECT place FROM table_name_62 WHERE score = 69###context:CREATE TABLE table_name_62 (place VARCHAR, score VARCHAR)
###question:What was T3 player Lee Janzen's score?###answer:SELECT MIN(score) FROM table_name_1 WHERE place = "t3" AND player = "lee janzen"###context:CREATE TABLE table_name_1 (score INTEGER, place VARCHAR, player VARCHAR)
###question:What is the lowest number of participants in 2013 when there were more than 5 participants in 2010, less than 4 participants in 2012 and country was germany?###answer:SELECT MIN(2013) FROM table_name_34 WHERE 2010 > 5 AND country = "germany" AND 2012 < 4###context:CREATE TABLE table_name_34 (country VARCHAR...
###question:What is the average number of participants in 2012 when there were less than 8 in 2013 and 7 in 2011?###answer:SELECT AVG(2012) FROM table_name_19 WHERE 2013 < 8 AND 2011 = 7###context:CREATE TABLE table_name_19 (Id VARCHAR)
###question:What is the lowest number of participants in 2012 when there were 72 in 2010 and less than 56 in 2013?###answer:SELECT MIN(2012) FROM table_name_17 WHERE 2010 = 72 AND 2013 < 56###context:CREATE TABLE table_name_17 (Id VARCHAR)
###question:What is the sum of participants in 2013 for Russia when there were 5 in 2010 and less than 4 in 2012?###answer:SELECT SUM(2013) FROM table_name_99 WHERE 2010 = 5 AND country = "russia" AND 2012 < 4###context:CREATE TABLE table_name_99 (country VARCHAR)
###question:What is the lowest number of participants in 2010 when there were 0 participants in 2012?###answer:SELECT MIN(2010) FROM table_name_76 WHERE 2012 < 0###context:CREATE TABLE table_name_76 (Id VARCHAR)
###question:What was the game result on November 29, 1959?###answer:SELECT result FROM table_name_14 WHERE date = "november 29, 1959"###context:CREATE TABLE table_name_14 (result VARCHAR, date VARCHAR)
###question:What was the result for the game against the Pittsburgh Steelers?###answer:SELECT result FROM table_name_85 WHERE opponent = "pittsburgh steelers"###context:CREATE TABLE table_name_85 (result VARCHAR, opponent VARCHAR)
###question:What is VFB Stuttgart II Team's Stadiuim?###answer:SELECT stadium FROM table_name_91 WHERE team = "vfb stuttgart ii"###context:CREATE TABLE table_name_91 (stadium VARCHAR, team VARCHAR)
###question:What is the Capacity of Ernst-Abbe-Sportfeld?###answer:SELECT capacity FROM table_name_25 WHERE stadium = "ernst-abbe-sportfeld"###context:CREATE TABLE table_name_25 (capacity VARCHAR, stadium VARCHAR)
###question:What is the Capacity of the Rainer Kraft's Stadium?###answer:SELECT AVG(capacity) FROM table_name_69 WHERE head_coach = "rainer kraft"###context:CREATE TABLE table_name_69 (capacity INTEGER, head_coach VARCHAR)
###question:When did the Visiting San Antonio Spurs score 97-113?###answer:SELECT date FROM table_name_22 WHERE visitor = "san antonio spurs" AND score = "97-113"###context:CREATE TABLE table_name_22 (date VARCHAR, visitor VARCHAR, score VARCHAR)
###question:When did the Houston Rockets play Home?###answer:SELECT date FROM table_name_48 WHERE home = "houston rockets"###context:CREATE TABLE table_name_48 (date VARCHAR, home VARCHAR)
###question:WHAT RANK DOES LEONARD NIMOY HAVE?###answer:SELECT AVG(rank) FROM table_name_16 WHERE director = "leonard nimoy"###context:CREATE TABLE table_name_16 (rank INTEGER, director VARCHAR)
###question:WHAT IS THE RANK OF MARTIN BREST?###answer:SELECT SUM(rank) FROM table_name_93 WHERE director = "martin brest"###context:CREATE TABLE table_name_93 (rank INTEGER, director VARCHAR)
###question:WHAT IS THE STUDIO WITH A GROSS $81,198,894?###answer:SELECT studio FROM table_name_49 WHERE gross = "$81,198,894"###context:CREATE TABLE table_name_49 (studio VARCHAR, gross VARCHAR)
###question:WHAT IS THE GROSS DOLLARS WITH A RANK OF 7 OR MORE, AND DIRECTOR BARRY LEVINSON?###answer:SELECT gross FROM table_name_71 WHERE rank > 7 AND director = "barry levinson"###context:CREATE TABLE table_name_71 (gross VARCHAR, rank VARCHAR, director VARCHAR)
###question:WHAT IS THE GROSS WITH A DIRECTOR OF RICHARD TUGGLE?###answer:SELECT gross FROM table_name_73 WHERE director = "richard tuggle"###context:CREATE TABLE table_name_73 (gross VARCHAR, director VARCHAR)
###question:Can you tell me the Score that has the Country of united states, and the Place of t2, and the Player of tom watson?###answer:SELECT score FROM table_name_48 WHERE country = "united states" AND place = "t2" AND player = "tom watson"###context:CREATE TABLE table_name_48 (score VARCHAR, player VARCHAR, country...
###question:Which Species has a Length (bp/aa) of 1154bp/358aa?###answer:SELECT species FROM table_name_78 WHERE length__bp_aa_ = "1154bp/358aa"###context:CREATE TABLE table_name_78 (species VARCHAR, length__bp_aa_ VARCHAR)
###question:What NCBI Accession Number (mRNA/Protein) has a Protein Identity of 69%?###answer:SELECT ncbi_accession_number__mrna_protein_ FROM table_name_99 WHERE protein_identity = "69%"###context:CREATE TABLE table_name_99 (ncbi_accession_number__mrna_protein_ VARCHAR, protein_identity VARCHAR)
###question:What is the NCBI Accession Number (mRNA/Protein) for the homo sapiens Species?###answer:SELECT ncbi_accession_number__mrna_protein_ FROM table_name_63 WHERE species = "homo sapiens"###context:CREATE TABLE table_name_63 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)
###question:What is the NCBI Accession Number (mRNA/Protein) for the mus musculus Species?###answer:SELECT ncbi_accession_number__mrna_protein_ FROM table_name_36 WHERE species = "mus musculus"###context:CREATE TABLE table_name_36 (ncbi_accession_number__mrna_protein_ VARCHAR, species VARCHAR)
###question:What was the winning score when the runner-up was Neal Briggs?###answer:SELECT winning_score FROM table_name_9 WHERE runner_s__up = "neal briggs"###context:CREATE TABLE table_name_9 (winning_score VARCHAR, runner_s__up VARCHAR)
###question:What day was the winning score –16 (67-70-69-66=272)?###answer:SELECT date FROM table_name_16 WHERE winning_score = –16(67 - 70 - 69 - 66 = 272)###context:CREATE TABLE table_name_16 (date VARCHAR, winning_score VARCHAR)
###question:Who was the runner-up with the margin of victory of 8 strokes?###answer:SELECT runner_s__up FROM table_name_6 WHERE margin_of_victory = "8 strokes"###context:CREATE TABLE table_name_6 (runner_s__up VARCHAR, margin_of_victory VARCHAR)
###question:For which tournament was Anthony Wall the runner-up?###answer:SELECT tournament FROM table_name_11 WHERE runner_s__up = "anthony wall"###context:CREATE TABLE table_name_11 (tournament VARCHAR, runner_s__up VARCHAR)
###question:For which tournament was the margin of victory 7 strokes?###answer:SELECT tournament FROM table_name_50 WHERE margin_of_victory = "7 strokes"###context:CREATE TABLE table_name_50 (tournament VARCHAR, margin_of_victory VARCHAR)
###question:WHAT IS THE PLACE THAT HAS SCORE OF 65 OR BETTER, FOR ROCCO MEDIATE?###answer:SELECT place FROM table_name_30 WHERE score > 65 AND player = "rocco mediate"###context:CREATE TABLE table_name_30 (place VARCHAR, score VARCHAR, player VARCHAR)
###question:WHAT IS THE PLAYER WITH A SCORE OF 66?###answer:SELECT player FROM table_name_76 WHERE score = 66###context:CREATE TABLE table_name_76 (player VARCHAR, score VARCHAR)
###question:WHAT IS THE PLAYER WITH T7 PLACE, FOR ENGLAND?###answer:SELECT player FROM table_name_92 WHERE place = "t7" AND country = "england"###context:CREATE TABLE table_name_92 (player VARCHAR, place VARCHAR, country VARCHAR)
###question:What is the number of cups when the other was more than 3, the league more than 3, for Lauri Dalla Valle, and a Total more than 21?###answer:SELECT AVG(cups) FROM table_name_9 WHERE other > 3 AND league > 3 AND player = "lauri dalla valle" AND total > 21###context:CREATE TABLE table_name_9 (cups INTEGER, to...
###question:What is the number for other when Adam Pepper is the player with a total more than 7?###answer:SELECT COUNT(other) FROM table_name_60 WHERE player = "adam pepper" AND total > 7###context:CREATE TABLE table_name_60 (other VARCHAR, player VARCHAR, total VARCHAR)
###question:What is the highest losses for more than 11 wins, a goal difference greater than 5, a 3 position, and more than 3 draws?###answer:SELECT MAX(losses) FROM table_name_33 WHERE wins > 11 AND goal_difference > 5 AND position = 3 AND draws > 3###context:CREATE TABLE table_name_33 (losses INTEGER, draws VARCHAR, ...
###question:What is the average points with less than 30 played?###answer:SELECT AVG(points) FROM table_name_77 WHERE played < 30###context:CREATE TABLE table_name_77 (points INTEGER, played INTEGER)
###question:What is the lowest amount of draws club ud lérida, which has less than 41 goals, has?###answer:SELECT MIN(draws) FROM table_name_86 WHERE club = "ud lérida" AND goals_for < 41###context:CREATE TABLE table_name_86 (draws INTEGER, club VARCHAR, goals_for VARCHAR)
###question:What is the total amount of points for a position less than 7, 68 goals for, and less than 30 played?###answer:SELECT COUNT(points) FROM table_name_59 WHERE position < 7 AND goals_for = 68 AND played < 30###context:CREATE TABLE table_name_59 (points VARCHAR, played VARCHAR, position VARCHAR, goals_for VARCH...
###question:What is teh average amount of goals for club real avilés cf, which has more than 59 goals against and a -10 goal difference?###answer:SELECT AVG(goals_for) FROM table_name_53 WHERE goals_against > 59 AND club = "real avilés cf" AND goal_difference > -10###context:CREATE TABLE table_name_53 (goals_for INTEGE...
###question:What is the average goal difference of club cultural leonesa, which has more than 27 points and less than 9 losses?###answer:SELECT AVG(goal_difference) FROM table_name_63 WHERE points > 27 AND losses < 9 AND club = "cultural leonesa"###context:CREATE TABLE table_name_63 (goal_difference INTEGER, club VARCH...
###question:For the game played on November 29, who had the highest rebounds?###answer:SELECT high_rebounds FROM table_name_73 WHERE date = "november 29"###context:CREATE TABLE table_name_73 (high_rebounds VARCHAR, date VARCHAR)
###question:WHAT TEAM WAS AN NCAA CHAMPION?###answer:SELECT team FROM table_name_76 WHERE notes = "ncaa champion"###context:CREATE TABLE table_name_76 (team VARCHAR, notes VARCHAR)
###question:When the champion was Gay Brewer Category:Articles with hCards what was the total score?###answer:SELECT total_score FROM table_name_90 WHERE champion = "gay brewer category:articles with hcards"###context:CREATE TABLE table_name_90 (total_score VARCHAR, champion VARCHAR)
###question:What was the To Par [a] when Charles Coody Category:Articles with hCards was champion and the year was earlier than 1973?###answer:SELECT to_par_[a_] FROM table_name_6 WHERE year < 1973 AND champion = "charles coody category:articles with hcards"###context:CREATE TABLE table_name_6 (to_par_ VARCHAR, a_ VARC...
###question:When the United States had a total score of 274 what was the average year?###answer:SELECT AVG(year) FROM table_name_67 WHERE total_score = "274" AND country = "united states"###context:CREATE TABLE table_name_67 (year INTEGER, total_score VARCHAR, country VARCHAR)
###question:What is 1st Leg, when Team 1 is "Makedonija"?###answer:SELECT 1 AS st_leg FROM table_name_52 WHERE team_1 = "makedonija"###context:CREATE TABLE table_name_52 (team_1 VARCHAR)
###question:What's the record for home team ottawa senators on march 6?###answer:SELECT record FROM table_name_45 WHERE home = "ottawa senators" AND date = "march 6"###context:CREATE TABLE table_name_45 (record VARCHAR, home VARCHAR, date VARCHAR)
###question:What's the score on february 18 when the visitors are the montreal canadiens?###answer:SELECT score FROM table_name_46 WHERE visitor = "montreal canadiens" AND date = "february 18"###context:CREATE TABLE table_name_46 (score VARCHAR, visitor VARCHAR, date VARCHAR)
###question:Which fleet was named Orenburg?###answer:SELECT fleet FROM table_name_87 WHERE name = "orenburg"###context:CREATE TABLE table_name_87 (fleet VARCHAR, name VARCHAR)
###question:Which Player has a Rank of t12, and a Country of taiwan, and a Lifespan of 1963–?###answer:SELECT player FROM table_name_4 WHERE rank = "t12" AND country = "taiwan" AND lifespan = "1963–"###context:CREATE TABLE table_name_4 (player VARCHAR, lifespan VARCHAR, rank VARCHAR, country VARCHAR)
###question:Which Country has a Player of arjun atwal?###answer:SELECT country FROM table_name_19 WHERE player = "arjun atwal"###context:CREATE TABLE table_name_19 (country VARCHAR, player VARCHAR)
###question:Which Wins have a Winning span of 2000–2010?###answer:SELECT SUM(wins) FROM table_name_46 WHERE winning_span = "2000–2010"###context:CREATE TABLE table_name_46 (wins INTEGER, winning_span VARCHAR)
###question:WHAT WAS THE PICK NUMBER FOR BRANDON RUSH?###answer:SELECT COUNT(pick) FROM table_name_82 WHERE player = "brandon rush"###context:CREATE TABLE table_name_82 (pick VARCHAR, player VARCHAR)
###question:WHAT IS THE HIGHEST ROUND FOR MIKE TAYLOR, WITH PICK HIGHER THAN 55?###answer:SELECT MAX(round) FROM table_name_86 WHERE player = "mike taylor" AND pick > 55###context:CREATE TABLE table_name_86 (round INTEGER, player VARCHAR, pick VARCHAR)
###question:WHAT POSITION HAS A PICK SMALLER THAN 33, AND PLAYER BEING DARRELL ARTHUR?###answer:SELECT position FROM table_name_67 WHERE pick < 33 AND player = "darrell arthur"###context:CREATE TABLE table_name_67 (position VARCHAR, pick VARCHAR, player VARCHAR)
###question:What was the finish of the player who had a total of 282?###answer:SELECT finish FROM table_name_80 WHERE total = 282###context:CREATE TABLE table_name_80 (finish VARCHAR, total VARCHAR)
###question:What years did Lou Graham win in?###answer:SELECT year_s__won FROM table_name_41 WHERE player = "lou graham"###context:CREATE TABLE table_name_41 (year_s__won VARCHAR, player VARCHAR)
###question:How many floors did the tallest building in Aston have?###answer:SELECT floors FROM table_name_43 WHERE location = "aston"###context:CREATE TABLE table_name_43 (floors VARCHAR, location VARCHAR)
###question:What is the name of the building at the Jewellery quarter?###answer:SELECT name FROM table_name_61 WHERE location = "jewellery quarter"###context:CREATE TABLE table_name_61 (name VARCHAR, location VARCHAR)
###question:What is the name of the building at Aston?###answer:SELECT name FROM table_name_59 WHERE location = "aston"###context:CREATE TABLE table_name_59 (name VARCHAR, location VARCHAR)
###question:How many floors did the building at the Jewellery quarter have?###answer:SELECT floors FROM table_name_66 WHERE location = "jewellery quarter"###context:CREATE TABLE table_name_66 (floors VARCHAR, location VARCHAR)
###question:What is Season, when Lead is "Michael Goodfellow"?###answer:SELECT season FROM table_name_12 WHERE lead = "michael goodfellow"###context:CREATE TABLE table_name_12 (season VARCHAR, lead VARCHAR)
###question:What is Season, when Third is "Glen Muirhead"?###answer:SELECT season FROM table_name_62 WHERE third = "glen muirhead"###context:CREATE TABLE table_name_62 (season VARCHAR, third VARCHAR)
###question:What home team has an n/a attendance?###answer:SELECT home FROM table_name_38 WHERE attendance = "n/a"###context:CREATE TABLE table_name_38 (home VARCHAR, attendance VARCHAR)
###question:What's the sum of the points when attendance is 8,000 on february 22?###answer:SELECT SUM(points) FROM table_name_41 WHERE attendance = "8,000" AND date = "february 22"###context:CREATE TABLE table_name_41 (points INTEGER, attendance VARCHAR, date VARCHAR)
###question:Can you tell me the total number of 100s that has the Balls larger than 325, and the Runs smaller than 572?###answer:SELECT COUNT(100 AS s) FROM table_name_44 WHERE balls > 325 AND runs < 572###context:CREATE TABLE table_name_44 (balls VARCHAR, runs VARCHAR)
###question:Can you tell me the sum of 100s that has the Matches of 12, and the Strike Rate smaller than 144.81?###answer:SELECT SUM(100 AS s) FROM table_name_92 WHERE matches = 12 AND strike_rate < 144.81###context:CREATE TABLE table_name_92 (matches VARCHAR, strike_rate VARCHAR)
###question:Can you tell me the sum of 100s that has the Team of deccan chargers, and the Match of 8, and the Average larger than 35.57?###answer:SELECT SUM(100 AS s) FROM table_name_41 WHERE team = "deccan chargers" AND matches = 8 AND average > 35.57###context:CREATE TABLE table_name_41 (average VARCHAR, team VARCHAR...
###question:Can you tell me the total number of Matched that has the Strike Rate smallet than 152.3, and the Balls of 395?###answer:SELECT COUNT(matches) FROM table_name_88 WHERE strike_rate < 152.3 AND balls = 395###context:CREATE TABLE table_name_88 (matches VARCHAR, strike_rate VARCHAR, balls VARCHAR)
###question:On what date did Jesse Levine play on a hard surface?###answer:SELECT date FROM table_name_78 WHERE surface = "hard" AND opponent = "jesse levine"###context:CREATE TABLE table_name_78 (date VARCHAR, surface VARCHAR, opponent VARCHAR)
###question:Name the Venue which has a Losing Team of newcastle knights?###answer:SELECT venue FROM table_name_7 WHERE losing_team = "newcastle knights"###context:CREATE TABLE table_name_7 (venue VARCHAR, losing_team VARCHAR)
###question:WHich Losing Team has a Venue of sydney football stadium, and a Total larger than 80, and a Winning Team of tigers?###answer:SELECT losing_team FROM table_name_87 WHERE venue = "sydney football stadium" AND total > 80 AND winning_team = "tigers"###context:CREATE TABLE table_name_87 (losing_team VARCHAR, win...
###question:Which Score has a Losing Team of sydney roosters, and a Total of 88?###answer:SELECT score FROM table_name_77 WHERE losing_team = "sydney roosters" AND total = 88###context:CREATE TABLE table_name_77 (score VARCHAR, losing_team VARCHAR, total VARCHAR)
###question:What was the TV Time for opponent jacksonville jaguars?###answer:SELECT tv_time FROM table_name_51 WHERE opponent = "jacksonville jaguars"###context:CREATE TABLE table_name_51 (tv_time VARCHAR, opponent VARCHAR)
###question:What was the tv time on december 6, 1998?###answer:SELECT tv_time FROM table_name_24 WHERE date = "december 6, 1998"###context:CREATE TABLE table_name_24 (tv_time VARCHAR, date VARCHAR)
###question:How many weeks has the opponent been san francisco 49ers?###answer:SELECT COUNT(week) FROM table_name_65 WHERE opponent = "san francisco 49ers"###context:CREATE TABLE table_name_65 (week VARCHAR, opponent VARCHAR)
###question:What college did the player drafted after round 2 before pick 160 attend?###answer:SELECT college FROM table_name_50 WHERE pick < 160 AND round > 2###context:CREATE TABLE table_name_50 (college VARCHAR, pick VARCHAR, round VARCHAR)
###question:What round was jerry corcoran drafted in as pick number 114?###answer:SELECT MAX(round) FROM table_name_63 WHERE pick > 114 AND player = "jerry corcoran"###context:CREATE TABLE table_name_63 (round INTEGER, pick VARCHAR, player VARCHAR)
###question:What is the nationality of the round 4 draft selection who played college ball at oklahoma?###answer:SELECT nationality FROM table_name_33 WHERE round = 4 AND college = "oklahoma"###context:CREATE TABLE table_name_33 (nationality VARCHAR, round VARCHAR, college VARCHAR)
###question:Who was the highest drafted player that attended college at Virginia?###answer:SELECT MAX(pick) FROM table_name_44 WHERE college = "virginia"###context:CREATE TABLE table_name_44 (pick INTEGER, college VARCHAR)
###question:What round was northeastern college player Reggie Lewis drafted in?###answer:SELECT MIN(round) FROM table_name_26 WHERE college = "northeastern" AND player = "reggie lewis"###context:CREATE TABLE table_name_26 (round INTEGER, college VARCHAR, player VARCHAR)
###question:What Away Competition had a Result of lost 2-4?###answer:SELECT competition FROM table_name_41 WHERE venue = "away" AND result = "lost 2-4"###context:CREATE TABLE table_name_41 (competition VARCHAR, venue VARCHAR, result VARCHAR)
###question:What is the Venue against the Bracknell Bees?###answer:SELECT venue FROM table_name_9 WHERE opponent = "bracknell bees"###context:CREATE TABLE table_name_9 (venue VARCHAR, opponent VARCHAR)
###question:What is the Away Competition on the 6th?###answer:SELECT competition FROM table_name_81 WHERE venue = "away" AND date = "6th"###context:CREATE TABLE table_name_81 (competition VARCHAR, venue VARCHAR, date VARCHAR)
###question:What Competition had a Result of lost 1-2?###answer:SELECT competition FROM table_name_34 WHERE result = "lost 1-2"###context:CREATE TABLE table_name_34 (competition VARCHAR, result VARCHAR)
###question:What is the Man of the Match of the Competition with a Result of lost 2-5?###answer:SELECT man_of_the_match FROM table_name_73 WHERE result = "lost 2-5"###context:CREATE TABLE table_name_73 (man_of_the_match VARCHAR, result VARCHAR)
###question:What is the Date of the Competition with Man of the Match Ollie Bronnimann?###answer:SELECT date FROM table_name_41 WHERE man_of_the_match = "ollie bronnimann"###context:CREATE TABLE table_name_41 (date VARCHAR, man_of_the_match VARCHAR)
###question:what is team 2 when team 1 is fc rouen (d1)?###answer:SELECT team_2 FROM table_name_85 WHERE team_1 = "fc rouen (d1)"###context:CREATE TABLE table_name_85 (team_2 VARCHAR, team_1 VARCHAR)
###question:what is team 1 when team 2 is gazélec ajaccio (d3)?###answer:SELECT team_1 FROM table_name_6 WHERE team_2 = "gazélec ajaccio (d3)"###context:CREATE TABLE table_name_6 (team_1 VARCHAR, team_2 VARCHAR)
###question:what is the 1st round when team 2 is olympique lyonnais (d2)?###answer:SELECT 1 AS st_round FROM table_name_67 WHERE team_2 = "olympique lyonnais (d2)"###context:CREATE TABLE table_name_67 (team_2 VARCHAR)
###question:what is the total when the league is less than 1?###answer:SELECT total FROM table_name_89 WHERE league < 1###context:CREATE TABLE table_name_89 (total VARCHAR, league INTEGER)
###question:What is the lowest profits (billion $) for the rank 6?###answer:SELECT MIN(profits__billion_) AS $_ FROM table_name_25 WHERE rank = 6###context:CREATE TABLE table_name_25 (profits__billion_ INTEGER, rank VARCHAR)
###question:What is the smallest rank for an industry of banking, a company of bank of america, and profits (billion $) larger than 16.47?###answer:SELECT MIN(rank) FROM table_name_36 WHERE industry = "banking" AND company = "bank of america" AND profits__billion_$_ > 16.47###context:CREATE TABLE table_name_36 (rank IN...
###question:What is the lowest market value (billion $) with a headquarter of usa , and the rank larger than 3, assets (billion$) larger than 208.34, and the company jpmorgan chase?###answer:SELECT MIN(market_value__billion_) AS $_ FROM table_name_2 WHERE headquarters = "usa" AND rank > 3 AND assets__billion_$_ > 208.3...