combined_text stringlengths 106 1.05k |
|---|
###question:What is Episodes (TV+extra) 2, when Broadcasts (TV) 1 is less than 13, and when Directors is "Shigehito Takayanagi"?###answer:SELECT episodes__tv + extra__2 FROM table_name_26 WHERE broadcasts__tv__1 < 13 AND directors = "shigehito takayanagi"###context:CREATE TABLE table_name_26 (episodes__tv VARCHAR, extr... |
###question:What was the lowest pick when the position was OF with the Chicago White Sox?###answer:SELECT MIN(pick) FROM table_name_35 WHERE position = "of" AND team = "chicago white sox"###context:CREATE TABLE table_name_35 (pick INTEGER, position VARCHAR, team VARCHAR) |
###question:What is the affiliation of the University of Maryland?###answer:SELECT affiliation FROM table_name_54 WHERE school = "university of maryland"###context:CREATE TABLE table_name_54 (affiliation VARCHAR, school VARCHAR) |
###question:What school has the nickname of Cardinals?###answer:SELECT MIN(founded) FROM table_name_9 WHERE nickname = "cardinals"###context:CREATE TABLE table_name_9 (founded INTEGER, nickname VARCHAR) |
###question:What is the nickname of the school located in Fairfax, VA?###answer:SELECT nickname FROM table_name_98 WHERE location = "fairfax, va"###context:CREATE TABLE table_name_98 (nickname VARCHAR, location VARCHAR) |
###question:What is "house", when "four" is "opat"?###answer:SELECT house FROM table_name_89 WHERE four = "opat"###context:CREATE TABLE table_name_89 (house VARCHAR, four VARCHAR) |
###question:What is "house", when "what" is "ano", and when "three" is "tulo"?###answer:SELECT house FROM table_name_24 WHERE what = "ano" AND three = "tulo"###context:CREATE TABLE table_name_24 (house VARCHAR, what VARCHAR, three VARCHAR) |
###question:What is the language, when "house" is "balay", when "three" is "tatlo", and when "four" is "apat"?###answer:SELECT english FROM table_name_52 WHERE house = "balay" AND three = "tatlo" AND four = "apat"###context:CREATE TABLE table_name_52 (english VARCHAR, four VARCHAR, house VARCHAR, three VARCHAR) |
###question:What is "what", when "person" is "tawo", when "three" is "tuyo", and when "coconut" is "niyog"?###answer:SELECT what FROM table_name_7 WHERE person = "tawo" AND three = "tuyo" AND coconut = "niyog"###context:CREATE TABLE table_name_7 (what VARCHAR, coconut VARCHAR, person VARCHAR, three VARCHAR) |
###question:What is the language, when "what" is "ango"?###answer:SELECT english FROM table_name_32 WHERE what = "ango"###context:CREATE TABLE table_name_32 (english VARCHAR, what VARCHAR) |
###question:Who is the opponent for the game played on august 20, 2006?###answer:SELECT opponent FROM table_name_47 WHERE date = "august 20, 2006"###context:CREATE TABLE table_name_47 (opponent VARCHAR, date VARCHAR) |
###question:On which Surface will Estrella Cabeza Candela play?###answer:SELECT surface FROM table_name_67 WHERE opponent = "estrella cabeza candela"###context:CREATE TABLE table_name_67 (surface VARCHAR, opponent VARCHAR) |
###question:What was the opponent on December 16, 1989?###answer:SELECT opponent FROM table_name_14 WHERE date = "december 16, 1989"###context:CREATE TABLE table_name_14 (opponent VARCHAR, date VARCHAR) |
###question:What was the highest attendance on November 12, 1989?###answer:SELECT MAX(attendance) FROM table_name_80 WHERE date = "november 12, 1989"###context:CREATE TABLE table_name_80 (attendance INTEGER, date VARCHAR) |
###question:What was the week on December 10, 1989?###answer:SELECT week FROM table_name_39 WHERE date = "december 10, 1989"###context:CREATE TABLE table_name_39 (week VARCHAR, date VARCHAR) |
###question:What attendance is dated february 27?###answer:SELECT AVG(attendance) FROM table_name_66 WHERE date = "february 27"###context:CREATE TABLE table_name_66 (attendance INTEGER, date VARCHAR) |
###question:What date has 37 points?###answer:SELECT date FROM table_name_95 WHERE points = 37###context:CREATE TABLE table_name_95 (date VARCHAR, points VARCHAR) |
###question:Who was the Team that was played against on February 24 and a game after game 55?###answer:SELECT team FROM table_name_61 WHERE game > 55 AND date = "february 24"###context:CREATE TABLE table_name_61 (team VARCHAR, game VARCHAR, date VARCHAR) |
###question:what is the name when the lane is less than 4 and mark is 52.64?###answer:SELECT name FROM table_name_37 WHERE lane < 4 AND mark = "52.64"###context:CREATE TABLE table_name_37 (name VARCHAR, lane VARCHAR, mark VARCHAR) |
###question:what is the number of times that the heat is 3 and the name is cxhristy ekpukhon ihunaegbo?###answer:SELECT COUNT(lane) FROM table_name_29 WHERE heat = 3 AND name = "cxhristy ekpukhon ihunaegbo"###context:CREATE TABLE table_name_29 (lane VARCHAR, heat VARCHAR, name VARCHAR) |
###question:Name the Score which has a Time of 18:00 and a Venue of african union?###answer:SELECT score FROM table_name_99 WHERE time = "18:00" AND venue = "african union"###context:CREATE TABLE table_name_99 (score VARCHAR, time VARCHAR, venue VARCHAR) |
###question:Name the Venue which has a Score of 8 – 1?###answer:SELECT venue FROM table_name_61 WHERE score = "8 – 1"###context:CREATE TABLE table_name_61 (venue VARCHAR, score VARCHAR) |
###question:What is 2nd Leg, when Team 1 is "H"?###answer:SELECT 2 AS nd_leg FROM table_name_97 WHERE team_1 = "h"###context:CREATE TABLE table_name_97 (team_1 VARCHAR) |
###question:Who are the Batsmen from the year 2002?###answer:SELECT batsmen FROM table_name_98 WHERE year = "2002"###context:CREATE TABLE table_name_98 (batsmen VARCHAR, year VARCHAR) |
###question:What score did the year 1948 have?###answer:SELECT score FROM table_name_21 WHERE year = "1948"###context:CREATE TABLE table_name_21 (score VARCHAR, year VARCHAR) |
###question:Who is the Batsman from the year 1982?###answer:SELECT batsmen FROM table_name_83 WHERE year = "1982"###context:CREATE TABLE table_name_83 (batsmen VARCHAR, year VARCHAR) |
###question:What is the score in 1929?###answer:SELECT score FROM table_name_46 WHERE year = "1929"###context:CREATE TABLE table_name_46 (score VARCHAR, year VARCHAR) |
###question:Who was the batsmen at the Brit Oval location?###answer:SELECT batsmen FROM table_name_76 WHERE location = "the brit oval"###context:CREATE TABLE table_name_76 (batsmen VARCHAR, location VARCHAR) |
###question:What year was the bridge in Kent built?###answer:SELECT built FROM table_name_63 WHERE county = "kent"###context:CREATE TABLE table_name_63 (built VARCHAR, county VARCHAR) |
###question:In which county is East Providence?###answer:SELECT county FROM table_name_55 WHERE location = "east providence"###context:CREATE TABLE table_name_55 (county VARCHAR, location VARCHAR) |
###question:What county had a bridge biult in 1884?###answer:SELECT county FROM table_name_37 WHERE built = "1884"###context:CREATE TABLE table_name_37 (county VARCHAR, built VARCHAR) |
###question:What is the Place of the Player with a Score of 68-73-66-74=281?###answer:SELECT place FROM table_name_13 WHERE score = 68 - 73 - 66 - 74 = 281###context:CREATE TABLE table_name_13 (place VARCHAR, score VARCHAR) |
###question:What Country's Player scored 71-69-70-71=281?###answer:SELECT country FROM table_name_21 WHERE score = 71 - 69 - 70 - 71 = 281###context:CREATE TABLE table_name_21 (country VARCHAR, score VARCHAR) |
###question:What is T5 Place Vijay Singh's To par?###answer:SELECT to_par FROM table_name_60 WHERE place = "t5" AND player = "vijay singh"###context:CREATE TABLE table_name_60 (to_par VARCHAR, place VARCHAR, player VARCHAR) |
###question:What is Score, when Player is "Bob Murphy"?###answer:SELECT score FROM table_name_9 WHERE player = "bob murphy"###context:CREATE TABLE table_name_9 (score VARCHAR, player VARCHAR) |
###question:What is Player, when To Par is "+1", when Country is "United States", and when Score is "71-70=141"?###answer:SELECT player FROM table_name_32 WHERE to_par = "+1" AND country = "united states" AND score = 71 - 70 = 141###context:CREATE TABLE table_name_32 (player VARCHAR, to_par VARCHAR, country VARCHAR, sc... |
###question:What is Score, when Place is "T8", and when Player is "Orville Moody"?###answer:SELECT score FROM table_name_40 WHERE place = "t8" AND player = "orville moody"###context:CREATE TABLE table_name_40 (score VARCHAR, place VARCHAR, player VARCHAR) |
###question:What is Score, when Player is "Deane Beman"?###answer:SELECT score FROM table_name_20 WHERE player = "deane beman"###context:CREATE TABLE table_name_20 (score VARCHAR, player VARCHAR) |
###question:What is Country, when Player is "Jack Nicklaus"?###answer:SELECT country FROM table_name_56 WHERE player = "jack nicklaus"###context:CREATE TABLE table_name_56 (country VARCHAR, player VARCHAR) |
###question:What is the Country, when Place is "1"?###answer:SELECT country FROM table_name_46 WHERE place = "1"###context:CREATE TABLE table_name_46 (country VARCHAR, place VARCHAR) |
###question:WHAT IS THE RESULT FOR best urban/alternative performance, IN 2003 OR GREATER?###answer:SELECT result FROM table_name_1 WHERE category = "best urban/alternative performance" AND year > 2003###context:CREATE TABLE table_name_1 (result VARCHAR, category VARCHAR, year VARCHAR) |
###question:WHAT IS THE TITLE WITH CATEGORY OF best r&b song?###answer:SELECT title FROM table_name_95 WHERE category = "best r&b song"###context:CREATE TABLE table_name_95 (title VARCHAR, category VARCHAR) |
###question:WHAT IS THE RESULT FOR 2003, IN best urban/alternative performance?###answer:SELECT result FROM table_name_79 WHERE year = 2003 AND category = "best urban/alternative performance"###context:CREATE TABLE table_name_79 (result VARCHAR, year VARCHAR, category VARCHAR) |
###question:WHAT IS THE YEAR OF FLOETIC?###answer:SELECT SUM(year) FROM table_name_5 WHERE title = "floetic"###context:CREATE TABLE table_name_5 (year INTEGER, title VARCHAR) |
###question:Who had the highest assists when the nuggets record was 2-4?###answer:SELECT high_assists FROM table_name_64 WHERE record = "2-4"###context:CREATE TABLE table_name_64 (high_assists VARCHAR, record VARCHAR) |
###question:Who had the highest assists in game 3?###answer:SELECT high_assists FROM table_name_92 WHERE game = 3###context:CREATE TABLE table_name_92 (high_assists VARCHAR, game VARCHAR) |
###question:What is Time, when Ground is Waverley Park, and when Away Team is Footscray?###answer:SELECT time FROM table_name_69 WHERE ground = "waverley park" AND away_team = "footscray"###context:CREATE TABLE table_name_69 (time VARCHAR, ground VARCHAR, away_team VARCHAR) |
###question:What is Ground, when Away Team is Sydney?###answer:SELECT ground FROM table_name_73 WHERE away_team = "sydney"###context:CREATE TABLE table_name_73 (ground VARCHAR, away_team VARCHAR) |
###question:What is Date, when Home Team is Richmond?###answer:SELECT date FROM table_name_65 WHERE home_team = "richmond"###context:CREATE TABLE table_name_65 (date VARCHAR, home_team VARCHAR) |
###question:What is Home Team Score, when Time is 12:00 PM, and when Ground is Waverley Park?###answer:SELECT home_team AS score FROM table_name_39 WHERE time = "12:00 pm" AND ground = "waverley park"###context:CREATE TABLE table_name_39 (home_team VARCHAR, time VARCHAR, ground VARCHAR) |
###question:What is the highest year for the US Open?###answer:SELECT MAX(year) FROM table_name_4 WHERE championship = "us open"###context:CREATE TABLE table_name_4 (year INTEGER, championship VARCHAR) |
###question:What is Result, when Week is 16?###answer:SELECT result FROM table_name_72 WHERE week = 16###context:CREATE TABLE table_name_72 (result VARCHAR, week VARCHAR) |
###question:What is Record, when Attendance is 30,110?###answer:SELECT record FROM table_name_84 WHERE attendance = "30,110"###context:CREATE TABLE table_name_84 (record VARCHAR, attendance VARCHAR) |
###question:What is Date, when Opponent is At Saskatchewan Roughriders?###answer:SELECT date FROM table_name_13 WHERE opponent = "at saskatchewan roughriders"###context:CREATE TABLE table_name_13 (date VARCHAR, opponent VARCHAR) |
###question:Which School name has students smaller than 389, and grades of 10-12?###answer:SELECT school_name FROM table_name_64 WHERE students < 389 AND grades = "10-12"###context:CREATE TABLE table_name_64 (school_name VARCHAR, students VARCHAR, grades VARCHAR) |
###question:What was the score of the game where the home team was the cairns taipans?###answer:SELECT score FROM table_name_85 WHERE home_team = "cairns taipans"###context:CREATE TABLE table_name_85 (score VARCHAR, home_team VARCHAR) |
###question:What was the score of the game where the adelaide 36ers were the home team?###answer:SELECT score FROM table_name_39 WHERE home_team = "adelaide 36ers"###context:CREATE TABLE table_name_39 (score VARCHAR, home_team VARCHAR) |
###question:What was the score of the game where the venue was cairns convention centre?###answer:SELECT score FROM table_name_54 WHERE venue = "cairns convention centre"###context:CREATE TABLE table_name_54 (score VARCHAR, venue VARCHAR) |
###question:Who was the away team during the game when the home team was the new zealand breakers?###answer:SELECT away_team FROM table_name_36 WHERE home_team = "new zealand breakers"###context:CREATE TABLE table_name_36 (away_team VARCHAR, home_team VARCHAR) |
###question:What was the score of the game which featured the gold coast blaze as the away team and the adelaide 36ers as the home team?###answer:SELECT score FROM table_name_16 WHERE away_team = "gold coast blaze" AND home_team = "adelaide 36ers"###context:CREATE TABLE table_name_16 (score VARCHAR, away_team VARCHAR, ... |
###question:What is the total rank of the company with less than 248.44 billion in assets, an industry of oil and gas, headquarters in France, and a market value greater than 152.62 billions?###answer:SELECT COUNT(rank) FROM table_name_92 WHERE assets__billion_$_ < 248.44 AND industry = "oil and gas" AND headquarters =... |
###question:What company has more than 195.34 billion in sales, ranked greater than 7, more than 11.29 billion in profits, and a market value greater than 198.14 billion?###answer:SELECT company FROM table_name_62 WHERE sales__billion_$_ > 195.34 AND rank > 7 AND profits__billion_$_ > 11.29 AND market_value__billion_$_... |
###question:What is the average rank of the company with more than 146.56 billion in sales and profits of 11.68 billions?###answer:SELECT AVG(rank) FROM table_name_97 WHERE sales__billion_$_ > 146.56 AND profits__billion_$_ = 11.68###context:CREATE TABLE table_name_97 (rank INTEGER, sales__billion_$_ VARCHAR, profits__... |
###question:What was the position of the player from the college of Nevada with a round over 5?###answer:SELECT position FROM table_name_23 WHERE round > 5 AND college = "nevada"###context:CREATE TABLE table_name_23 (position VARCHAR, round VARCHAR, college VARCHAR) |
###question:Which college had a pick in a round under 7, with a pick number 13 and overall was under 186?###answer:SELECT college FROM table_name_6 WHERE round < 7 AND overall < 186 AND pick = 13###context:CREATE TABLE table_name_6 (college VARCHAR, pick VARCHAR, round VARCHAR, overall VARCHAR) |
###question:How many Parishes in Merrimack which has 4 Cemeteries?###answer:SELECT MIN(parishes) FROM table_name_62 WHERE pastoral_region = "merrimack" AND cemeteries < 4###context:CREATE TABLE table_name_62 (parishes INTEGER, pastoral_region VARCHAR, cemeteries VARCHAR) |
###question:What Pastoral Region has 3 Cemeteries?###answer:SELECT pastoral_region FROM table_name_57 WHERE cemeteries = 3###context:CREATE TABLE table_name_57 (pastoral_region VARCHAR, cemeteries VARCHAR) |
###question:How many High schools in the Region with 8 Cemeteries?###answer:SELECT SUM(high_schools) FROM table_name_38 WHERE cemeteries = 8###context:CREATE TABLE table_name_38 (high_schools INTEGER, cemeteries VARCHAR) |
###question:What Pastoral Region has Episcopal Vicar Robert Francis Hennessey?###answer:SELECT pastoral_region FROM table_name_81 WHERE episcopal_vicar = "robert francis hennessey"###context:CREATE TABLE table_name_81 (pastoral_region VARCHAR, episcopal_vicar VARCHAR) |
###question:What is the name of the person with more than 299 games during the 1995–07 period?###answer:SELECT name FROM table_name_69 WHERE games > 299 AND period = "1995–07"###context:CREATE TABLE table_name_69 (name VARCHAR, games VARCHAR, period VARCHAR) |
###question:What is the number of games for Shlomi Avrahami?###answer:SELECT COUNT(games) FROM table_name_75 WHERE name = "shlomi avrahami"###context:CREATE TABLE table_name_75 (games VARCHAR, name VARCHAR) |
###question:What is the rank for the period of 1973–89, with less than 423 games.###answer:SELECT SUM(rank) FROM table_name_7 WHERE period = "1973–89" AND games < 423###context:CREATE TABLE table_name_7 (rank INTEGER, period VARCHAR, games VARCHAR) |
###question:What is the team 1 when Ulisses is team 2?###answer:SELECT team_1 FROM table_name_98 WHERE team_2 = "ulisses"###context:CREATE TABLE table_name_98 (team_1 VARCHAR, team_2 VARCHAR) |
###question:What is 2009, when Year is "Highest Mean Annual Temperature"?###answer:SELECT 2009 FROM table_name_31 WHERE year = "highest mean annual temperature"###context:CREATE TABLE table_name_31 (year VARCHAR) |
###question:How many gold values have totals over 30, bronzes over 35, and are in Swimming?###answer:SELECT COUNT(gold) FROM table_name_75 WHERE total > 30 AND sport = "swimming" AND bronze > 35###context:CREATE TABLE table_name_75 (gold VARCHAR, bronze VARCHAR, total VARCHAR, sport VARCHAR) |
###question:What is the highest bronze value with silvers over 2, golds under 16, and in Cycling?###answer:SELECT MAX(bronze) FROM table_name_58 WHERE silver > 2 AND sport = "cycling" AND gold < 16###context:CREATE TABLE table_name_58 (bronze INTEGER, gold VARCHAR, silver VARCHAR, sport VARCHAR) |
###question:What is the total associated with Bronzes over 35?###answer:SELECT total FROM table_name_15 WHERE bronze > 35###context:CREATE TABLE table_name_15 (total VARCHAR, bronze INTEGER) |
###question:What is the smallest bronze value associated with golds over 0, silvers over 11, and totals of 36?###answer:SELECT MIN(bronze) FROM table_name_63 WHERE gold > 0 AND total = 36 AND silver > 11###context:CREATE TABLE table_name_63 (bronze INTEGER, silver VARCHAR, gold VARCHAR, total VARCHAR) |
###question:What is the average number of golds in athletics associated with over 42 silvers?###answer:SELECT AVG(gold) FROM table_name_66 WHERE sport = "athletics" AND silver > 42###context:CREATE TABLE table_name_66 (gold INTEGER, sport VARCHAR, silver VARCHAR) |
###question:What is the smallest number of silvers associated with bronzes under 20, totals of 1, golds of 0, and in Water Polo?###answer:SELECT MIN(silver) FROM table_name_90 WHERE bronze < 20 AND total = 1 AND sport = "water polo" AND gold < 0###context:CREATE TABLE table_name_90 (silver INTEGER, gold VARCHAR, sport ... |
###question:What was the lowest pick number for Marc Pilon?###answer:SELECT MIN(pick__number) FROM table_name_69 WHERE player = "marc pilon"###context:CREATE TABLE table_name_69 (pick__number INTEGER, player VARCHAR) |
###question:What player was from the British Columbia college?###answer:SELECT player FROM table_name_23 WHERE college = "british columbia"###context:CREATE TABLE table_name_23 (player VARCHAR, college VARCHAR) |
###question:What was the highest pick number for the Hamilton tiger-cats?###answer:SELECT MAX(pick__number) FROM table_name_13 WHERE cfl_team = "hamilton tiger-cats"###context:CREATE TABLE table_name_13 (pick__number INTEGER, cfl_team VARCHAR) |
###question:What was the pick number for the WR position?###answer:SELECT pick__number FROM table_name_59 WHERE position = "wr"###context:CREATE TABLE table_name_59 (pick__number VARCHAR, position VARCHAR) |
###question:Can you tell me the Goal that has the Result of 2-0?###answer:SELECT goal FROM table_name_84 WHERE result = "2-0"###context:CREATE TABLE table_name_84 (goal VARCHAR, result VARCHAR) |
###question:What is Place, when Prize is "$381.030"?###answer:SELECT place FROM table_name_32 WHERE prize = "$381.030"###context:CREATE TABLE table_name_32 (place VARCHAR, prize VARCHAR) |
###question:What is Rank, when Event is "LAPT3 Punta Del Este"?###answer:SELECT rank FROM table_name_65 WHERE event = "lapt3 punta del este"###context:CREATE TABLE table_name_65 (rank VARCHAR, event VARCHAR) |
###question:What is Name, when Prize is "$279.330"?###answer:SELECT name FROM table_name_64 WHERE prize = "$279.330"###context:CREATE TABLE table_name_64 (name VARCHAR, prize VARCHAR) |
###question:What is Prize, when Rank is "2nd"?###answer:SELECT prize FROM table_name_2 WHERE rank = "2nd"###context:CREATE TABLE table_name_2 (prize VARCHAR, rank VARCHAR) |
###question:What is Rank, when Event is "LAPT4 São Paulo"?###answer:SELECT rank FROM table_name_66 WHERE event = "lapt4 são paulo"###context:CREATE TABLE table_name_66 (rank VARCHAR, event VARCHAR) |
###question:What is Prize, when Name is "Valdemar Kwaysser"?###answer:SELECT prize FROM table_name_58 WHERE name = "valdemar kwaysser"###context:CREATE TABLE table_name_58 (prize VARCHAR, name VARCHAR) |
###question:What is the bus power for the Controlnet Fieldbus?###answer:SELECT bus_power FROM table_name_5 WHERE fieldbus = "controlnet"###context:CREATE TABLE table_name_5 (bus_power VARCHAR, fieldbus VARCHAR) |
###question:What is the millisecond cycle for the Fieldbus?###answer:SELECT sub_millisecond_cycle FROM table_name_28 WHERE "fieldbus" = "fieldbus"###context:CREATE TABLE table_name_28 (sub_millisecond_cycle VARCHAR) |
###question:What is the synchronisation for the controlnet fieldbus?###answer:SELECT synchronisation FROM table_name_70 WHERE fieldbus = "controlnet"###context:CREATE TABLE table_name_70 (synchronisation VARCHAR, fieldbus VARCHAR) |
###question:Which Position has a College of colorado?###answer:SELECT position FROM table_name_31 WHERE college = "colorado"###context:CREATE TABLE table_name_31 (position VARCHAR, college VARCHAR) |
###question:Which College has an Overall larger than 211, a Position of db, and a Name of carl charon?###answer:SELECT college FROM table_name_7 WHERE overall > 211 AND position = "db" AND name = "carl charon"###context:CREATE TABLE table_name_7 (college VARCHAR, name VARCHAR, overall VARCHAR, position VARCHAR) |
###question:Which Overall has a College of michigan state, a Position of fb, and a Round larger than 8?###answer:SELECT SUM(overall) FROM table_name_46 WHERE college = "michigan state" AND position = "fb" AND round > 8###context:CREATE TABLE table_name_46 (overall INTEGER, round VARCHAR, college VARCHAR, position VARCH... |
###question:Which Round has a College of arizona?###answer:SELECT MIN(round) FROM table_name_26 WHERE college = "arizona"###context:CREATE TABLE table_name_26 (round INTEGER, college VARCHAR) |
###question:Which Overall has a Round of 7?###answer:SELECT MIN(overall) FROM table_name_99 WHERE round = 7###context:CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR) |
###question:Which Round has a Pick larger than 1?###answer:SELECT SUM(round) FROM table_name_4 WHERE pick > 1###context:CREATE TABLE table_name_4 (round INTEGER, pick INTEGER) |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.