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