Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
48,200 | <question>: How many wins where there total for Series named formula 3 euro series as well as having more than 2 Podiums? <context>: CREATE TABLE table_name_43 (wins VARCHAR, series VARCHAR, podiums VARCHAR) | SELECT COUNT(wins) FROM table_name_43 WHERE series = "formula 3 euro series" AND podiums > 2 |
48,201 | <question>: What is the largest amount of wins that was before the 2007 season, as well as the Team being silverstone motorsport academy? <context>: CREATE TABLE table_name_92 (wins INTEGER, season VARCHAR, team VARCHAR) | SELECT MAX(wins) FROM table_name_92 WHERE season < 2007 AND team = "silverstone motorsport academy" |
48,202 | <question>: What is the newest Season in which had 0 Podiums, and having 1 total of Races, as well as total wins larger than 0? <context>: CREATE TABLE table_name_65 (season INTEGER, wins VARCHAR, podiums VARCHAR, races VARCHAR) | SELECT MAX(season) FROM table_name_65 WHERE podiums = 0 AND races = 1 AND wins > 0 |
48,203 | <question>: Name the week for december 4, 2009 <context>: CREATE TABLE table_name_80 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_80 WHERE date = "december 4, 2009" |
48,204 | <question>: Name the opponent with record of 6-2 <context>: CREATE TABLE table_name_19 (opponent VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_19 WHERE record = "6-2" |
48,205 | <question>: Name the opponent with result of w 35-21 <context>: CREATE TABLE table_name_82 (opponent VARCHAR, result VARCHAR) | SELECT opponent FROM table_name_82 WHERE result = "w 35-21" |
48,206 | <question>: Name the date with resultof w 35-7 <context>: CREATE TABLE table_name_22 (date VARCHAR, result VARCHAR) | SELECT date FROM table_name_22 WHERE result = "w 35-7" |
48,207 | <question>: Name the date with record of 3-1 <context>: CREATE TABLE table_name_33 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_33 WHERE record = "3-1" |
48,208 | <question>: Name the week for date of bye <context>: CREATE TABLE table_name_29 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_29 WHERE date = "bye" |
48,209 | <question>: What is the friendly game for Germany of France? <context>: CREATE TABLE table_name_58 (friendly VARCHAR, germany VARCHAR) | SELECT friendly FROM table_name_58 WHERE germany = "france" |
48,210 | <question>: What company is numbered larger than 5 and priced at $389M? <context>: CREATE TABLE table_name_84 (company VARCHAR, number VARCHAR, price VARCHAR) | SELECT company FROM table_name_84 WHERE number > 5 AND price = "$389m" |
48,211 | <question>: Which category was william ivey long a nominee and nominated in? <context>: CREATE TABLE table_name_55 (category VARCHAR, result VARCHAR, nominee VARCHAR) | SELECT category FROM table_name_55 WHERE result = "nominated" AND nominee = "william ivey long" |
48,212 | <question>: What is the half-life discovered in 2003? <context>: CREATE TABLE table_name_22 (half_life VARCHAR, discovery_year VARCHAR) | SELECT half_life FROM table_name_22 WHERE discovery_year = "2003" |
48,213 | <question>: What is the decay mode of the 265m hs isotope discovered in 1984? <context>: CREATE TABLE table_name_28 (decay_mode VARCHAR, discovery_year VARCHAR, isotope VARCHAR) | SELECT decay_mode FROM table_name_28 WHERE discovery_year = "1984" AND isotope = "265m hs" |
48,214 | <question>: What is the Frequency MHz of Trinidad, Colorado? <context>: CREATE TABLE table_name_6 (frequency_mhz VARCHAR, city_of_license VARCHAR) | SELECT frequency_mhz FROM table_name_6 WHERE city_of_license = "trinidad, colorado" |
48,215 | <question>: What city of license has an ERP W smaller than 500, Class A, and Frequency MHz larger than 89.7? <context>: CREATE TABLE table_name_76 (city_of_license VARCHAR, frequency_mhz VARCHAR, erp_w VARCHAR, class VARCHAR) | SELECT city_of_license FROM table_name_76 WHERE erp_w < 500 AND class = "a" AND frequency_mhz > 89.7 |
48,216 | <question>: What is the smallest capacity for Fandok? <context>: CREATE TABLE table_name_84 (capacity INTEGER, team VARCHAR) | SELECT MIN(capacity) FROM table_name_84 WHERE team = "fandok" |
48,217 | <question>: What is the highest pick number of a defensive back with less than 136 overall points? <context>: CREATE TABLE table_name_99 (pick__number INTEGER, overall VARCHAR, position VARCHAR) | SELECT MAX(pick__number) FROM table_name_99 WHERE overall < 136 AND position = "defensive back" |
48,218 | <question>: What is the lowest pick number of John Scully? <context>: CREATE TABLE table_name_45 (pick__number INTEGER, name VARCHAR) | SELECT MIN(pick__number) FROM table_name_45 WHERE name = "john scully" |
48,219 | <question>: What is the total points with less than 5 games? <context>: CREATE TABLE table_name_28 (points VARCHAR, games INTEGER) | SELECT COUNT(points) FROM table_name_28 WHERE games < 5 |
48,220 | <question>: What was the outcome for the India Open? <context>: CREATE TABLE table_name_34 (outcome VARCHAR, venue VARCHAR) | SELECT outcome FROM table_name_34 WHERE venue = "india open" |
48,221 | <question>: What was the Outcome at the 1985 India Open? <context>: CREATE TABLE table_name_16 (outcome VARCHAR, year VARCHAR, venue VARCHAR) | SELECT outcome FROM table_name_16 WHERE year = "1985" AND venue = "india open" |
48,222 | <question>: What was the outcome in 1982 with Kang Haeng-Suk as partner? <context>: CREATE TABLE table_name_88 (outcome VARCHAR, partner VARCHAR, year VARCHAR) | SELECT outcome FROM table_name_88 WHERE partner = "kang haeng-suk" AND year = "1982" |
48,223 | <question>: Which Party has a First elected smaller than 1878, and a District of south carolina 3? <context>: CREATE TABLE table_name_4 (party VARCHAR, first_elected VARCHAR, district VARCHAR) | SELECT party FROM table_name_4 WHERE first_elected < 1878 AND district = "south carolina 3" |
48,224 | <question>: Which Result has a First elected of 1876, and a District of south carolina 3? <context>: CREATE TABLE table_name_6 (result VARCHAR, first_elected VARCHAR, district VARCHAR) | SELECT result FROM table_name_6 WHERE first_elected = 1876 AND district = "south carolina 3" |
48,225 | <question>: Which Result has a First elected larger than 1876, and an Incumbent of john s. richardson? <context>: CREATE TABLE table_name_98 (result VARCHAR, first_elected VARCHAR, incumbent VARCHAR) | SELECT result FROM table_name_98 WHERE first_elected > 1876 AND incumbent = "john s. richardson" |
48,226 | <question>: Who is the incumbent that is a republican and first elected before 1864? <context>: CREATE TABLE table_name_73 (incumbent VARCHAR, party VARCHAR, first_elected VARCHAR) | SELECT incumbent FROM table_name_73 WHERE party = "republican" AND first_elected < 1864 |
48,227 | <question>: What district is the democratic Francis C. Le Blond from? <context>: CREATE TABLE table_name_69 (district VARCHAR, party VARCHAR, incumbent VARCHAR) | SELECT district FROM table_name_69 WHERE party = "democratic" AND incumbent = "francis c. le blond" |
48,228 | <question>: In the Ohio 4 district, that is the first elected date that has a result of re-elected? <context>: CREATE TABLE table_name_66 (first_elected INTEGER, result VARCHAR, district VARCHAR) | SELECT SUM(first_elected) FROM table_name_66 WHERE result = "re-elected" AND district = "ohio 4" |
48,229 | <question>: What is the party in Ohio 6 District? <context>: CREATE TABLE table_name_68 (party VARCHAR, district VARCHAR) | SELECT party FROM table_name_68 WHERE district = "ohio 6" |
48,230 | <question>: Which To par has a Year of 1994? <context>: CREATE TABLE table_name_24 (to_par VARCHAR, year VARCHAR) | SELECT to_par FROM table_name_24 WHERE year = 1994 |
48,231 | <question>: Which Country has a Margin of victory of 2 strokes? <context>: CREATE TABLE table_name_91 (country VARCHAR, margin_of_victory VARCHAR) | SELECT country FROM table_name_91 WHERE margin_of_victory = "2 strokes" |
48,232 | <question>: Which Year is the lowest one that has a To par of –1? <context>: CREATE TABLE table_name_93 (year INTEGER, to_par VARCHAR) | SELECT MIN(year) FROM table_name_93 WHERE to_par = "–1" |
48,233 | <question>: Which Margin of victory has a Year larger than 1994, and a To par of –14, and a Score of 69-67-69-69=274? <context>: CREATE TABLE table_name_25 (margin_of_victory VARCHAR, year VARCHAR, to_par VARCHAR, score VARCHAR) | SELECT margin_of_victory FROM table_name_25 WHERE year > 1994 AND to_par = "–14" AND score = 69 - 67 - 69 - 69 = 274 |
48,234 | <question>: What was the record after the game at the Astrodome? <context>: CREATE TABLE table_name_37 (record VARCHAR, location VARCHAR) | SELECT record FROM table_name_37 WHERE location = "astrodome" |
48,235 | <question>: What was the record after the game against the Houston Oilers? <context>: CREATE TABLE table_name_98 (record VARCHAR, opponent VARCHAR) | SELECT record FROM table_name_98 WHERE opponent = "houston oilers" |
48,236 | <question>: What is the average total score of Belarus, which had an E score less than 8.2? <context>: CREATE TABLE table_name_71 (total INTEGER, nation VARCHAR, e_score VARCHAR) | SELECT AVG(total) FROM table_name_71 WHERE nation = "belarus" AND e_score < 8.2 |
48,237 | <question>: What is the total of the team with a T score greater than 8 and an E score less than 8.4? <context>: CREATE TABLE table_name_57 (total INTEGER, t_score VARCHAR, e_score VARCHAR) | SELECT SUM(total) FROM table_name_57 WHERE t_score > 8 AND e_score < 8.4 |
48,238 | <question>: What is the T score of the team with an E score of 6.625? <context>: CREATE TABLE table_name_52 (t_score VARCHAR, e_score VARCHAR) | SELECT t_score FROM table_name_52 WHERE e_score = 6.625 |
48,239 | <question>: What is the total of Poland, which has an E score greater than 7.725? <context>: CREATE TABLE table_name_97 (total VARCHAR, nation VARCHAR, e_score VARCHAR) | SELECT COUNT(total) FROM table_name_97 WHERE nation = "poland" AND e_score > 7.725 |
48,240 | <question>: What is the total of the team with a T score less than 6.8? <context>: CREATE TABLE table_name_88 (total INTEGER, t_score INTEGER) | SELECT SUM(total) FROM table_name_88 WHERE t_score < 6.8 |
48,241 | <question>: What date has a competition of 2012 afc challenge cup, and dasarath rangasala stadium, kathmandu as the venue? <context>: CREATE TABLE table_name_56 (date VARCHAR, competition VARCHAR, venue VARCHAR) | SELECT date FROM table_name_56 WHERE competition = "2012 afc challenge cup" AND venue = "dasarath rangasala stadium, kathmandu" |
48,242 | <question>: What opposition do 31.1% of Social Democrats have? <context>: CREATE TABLE table_name_70 (opposition VARCHAR, social_democrats__a_ VARCHAR) | SELECT opposition FROM table_name_70 WHERE social_democrats__a_ = "31.1%" |
48,243 | <question>: Which Position has a Round larger than 14, and a School/Club Team of north texas? <context>: CREATE TABLE table_name_22 (position VARCHAR, round VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_name_22 WHERE round > 14 AND school_club_team = "north texas" |
48,244 | <question>: Which Round has a Player of anthony christnovich? <context>: CREATE TABLE table_name_72 (round VARCHAR, player VARCHAR) | SELECT round FROM table_name_72 WHERE player = "anthony christnovich" |
48,245 | <question>: Which Round is the lowest one that has a School/Club Team of virginia? <context>: CREATE TABLE table_name_20 (round INTEGER, school_club_team VARCHAR) | SELECT MIN(round) FROM table_name_20 WHERE school_club_team = "virginia" |
48,246 | <question>: What is the name of the leading scorer on 2006-11-22? <context>: CREATE TABLE table_name_5 (leading_scorer VARCHAR, date VARCHAR) | SELECT leading_scorer FROM table_name_5 WHERE date = "2006-11-22" |
48,247 | <question>: What is the name of the leading scorer when the record was 9–6? <context>: CREATE TABLE table_name_18 (leading_scorer VARCHAR, record VARCHAR) | SELECT leading_scorer FROM table_name_18 WHERE record = "9–6" |
48,248 | <question>: What is the number of people in Attendance when Visitor was the warriors on 2006-11-04? <context>: CREATE TABLE table_name_40 (attendance VARCHAR, visitor VARCHAR, date VARCHAR) | SELECT attendance FROM table_name_40 WHERE visitor = "warriors" AND date = "2006-11-04" |
48,249 | <question>: What is the name of the visitor on 2006-11-04? <context>: CREATE TABLE table_name_46 (visitor VARCHAR, date VARCHAR) | SELECT visitor FROM table_name_46 WHERE date = "2006-11-04" |
48,250 | <question>: What is the name of the Leading scorer when the Score was 89–102? <context>: CREATE TABLE table_name_59 (leading_scorer VARCHAR, score VARCHAR) | SELECT leading_scorer FROM table_name_59 WHERE score = "89–102" |
48,251 | <question>: How many people live in Norton? <context>: CREATE TABLE table_name_1 (population INTEGER, town VARCHAR) | SELECT SUM(population) FROM table_name_1 WHERE town = "norton" |
48,252 | <question>: Which Year has a Borough of harrogate, and a Rank smaller than 6, and a Definition of civil parish? <context>: CREATE TABLE table_name_59 (year VARCHAR, definition VARCHAR, borough VARCHAR, rank VARCHAR) | SELECT year FROM table_name_59 WHERE borough = "harrogate" AND rank < 6 AND definition = "civil parish" |
48,253 | <question>: Which Definition has a Rank smaller than 12, and a Town of tadcaster? <context>: CREATE TABLE table_name_63 (definition VARCHAR, rank VARCHAR, town VARCHAR) | SELECT definition FROM table_name_63 WHERE rank < 12 AND town = "tadcaster" |
48,254 | <question>: Which Rank is the lowest one that has a Borough of richmondshire, and a Population larger than 8,178? <context>: CREATE TABLE table_name_16 (rank INTEGER, borough VARCHAR, population VARCHAR) | SELECT MIN(rank) FROM table_name_16 WHERE borough = "richmondshire" AND population > 8 OFFSET 178 |
48,255 | <question>: How many bronze medals did Bulgaria receive? <context>: CREATE TABLE table_name_1 (bronze VARCHAR, nation VARCHAR) | SELECT bronze FROM table_name_1 WHERE nation = "bulgaria" |
48,256 | <question>: What was Phil Mickelson's score to par? <context>: CREATE TABLE table_name_28 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_28 WHERE player = "phil mickelson" |
48,257 | <question>: What name has an overall less than 268, and 1 as the round? <context>: CREATE TABLE table_name_98 (name VARCHAR, overall VARCHAR, round VARCHAR) | SELECT name FROM table_name_98 WHERE overall < 268 AND round = 1 |
48,258 | <question>: How many pick #'s have james britt as the name, with a round greater than 2? <context>: CREATE TABLE table_name_91 (pick__number VARCHAR, name VARCHAR, round VARCHAR) | SELECT COUNT(pick__number) FROM table_name_91 WHERE name = "james britt" AND round > 2 |
48,259 | <question>: what is the score on november 15 <context>: CREATE TABLE table_name_66 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_66 WHERE date = "november 15" |
48,260 | <question>: Which Wins is the highest one that has a Country of united states, and a Player of andy bean, and a Rank smaller than 4? <context>: CREATE TABLE table_name_66 (wins INTEGER, rank VARCHAR, country VARCHAR, player VARCHAR) | SELECT MAX(wins) FROM table_name_66 WHERE country = "united states" AND player = "andy bean" AND rank < 4 |
48,261 | <question>: Which Country has a Rank of 5? <context>: CREATE TABLE table_name_23 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_23 WHERE rank = 5 |
48,262 | <question>: Which Earnings ($) is the lowest one that has a Rank smaller than 1? <context>: CREATE TABLE table_name_12 (earnings___ INTEGER, rank INTEGER) | SELECT MIN(earnings___) AS $__ FROM table_name_12 WHERE rank < 1 |
48,263 | <question>: What is the score of the game on September 13 when the Expos were the opponent? <context>: CREATE TABLE table_name_49 (score VARCHAR, opponent VARCHAR, date VARCHAR) | SELECT score FROM table_name_49 WHERE opponent = "expos" AND date = "september 13" |
48,264 | <question>: Who was the opponent on the September 3 game? <context>: CREATE TABLE table_name_38 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_38 WHERE date = "september 3" |
48,265 | <question>: What is the save of the game on September 15? <context>: CREATE TABLE table_name_92 (save VARCHAR, date VARCHAR) | SELECT save FROM table_name_92 WHERE date = "september 15" |
48,266 | <question>: Which Game site has a Week larger than 14? <context>: CREATE TABLE table_name_44 (game_site VARCHAR, week INTEGER) | SELECT game_site FROM table_name_44 WHERE week > 14 |
48,267 | <question>: Which Date has a Game site of jeppesen stadium? <context>: CREATE TABLE table_name_27 (date VARCHAR, game_site VARCHAR) | SELECT date FROM table_name_27 WHERE game_site = "jeppesen stadium" |
48,268 | <question>: Which Game site has 27,189 Attendances ? <context>: CREATE TABLE table_name_99 (game_site VARCHAR, attendance VARCHAR) | SELECT game_site FROM table_name_99 WHERE attendance = "27,189" |
48,269 | <question>: When is it has 15,557 Attendances? <context>: CREATE TABLE table_name_35 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_35 WHERE attendance = "15,557" |
48,270 | <question>: With an Overall less than 171, what is the Round pick of Lance Moon? <context>: CREATE TABLE table_name_36 (round INTEGER, name VARCHAR, overall VARCHAR) | SELECT MIN(round) FROM table_name_36 WHERE name = "lance moon" AND overall < 171 |
48,271 | <question>: What is the Name of draft Pick #10? <context>: CREATE TABLE table_name_19 (name VARCHAR, pick__number VARCHAR) | SELECT name FROM table_name_19 WHERE pick__number = 10 |
48,272 | <question>: How many Rounds have a Defensive End Pick? <context>: CREATE TABLE table_name_16 (round VARCHAR, position VARCHAR) | SELECT COUNT(round) FROM table_name_16 WHERE position = "defensive end" |
48,273 | <question>: What was the time when Shinya Aoki was the opponent? <context>: CREATE TABLE table_name_57 (time VARCHAR, opponent VARCHAR) | SELECT time FROM table_name_57 WHERE opponent = "shinya aoki" |
48,274 | <question>: Which method was used in round 1 with a record of 1-0? <context>: CREATE TABLE table_name_89 (method VARCHAR, round VARCHAR, record VARCHAR) | SELECT method FROM table_name_89 WHERE round = 1 AND record = "1-0" |
48,275 | <question>: Which rank has a team of Suzuki with under 16 points? <context>: CREATE TABLE table_name_96 (rank VARCHAR, team VARCHAR, points VARCHAR) | SELECT rank FROM table_name_96 WHERE team = "suzuki" AND points < 16 |
48,276 | <question>: Which class has a rank of 5th? <context>: CREATE TABLE table_name_79 (class VARCHAR, rank VARCHAR) | SELECT class FROM table_name_79 WHERE rank = "5th" |
48,277 | <question>: Which team has a class of 500cc and rank of 16th? <context>: CREATE TABLE table_name_88 (team VARCHAR, class VARCHAR, rank VARCHAR) | SELECT team FROM table_name_88 WHERE class = "500cc" AND rank = "16th" |
48,278 | <question>: Which team has 16 points and ranks 14th? <context>: CREATE TABLE table_name_90 (team VARCHAR, points VARCHAR, rank VARCHAR) | SELECT team FROM table_name_90 WHERE points = 16 AND rank = "14th" |
48,279 | <question>: What is the dance that has priscilla presley is the worst dancer(s), and the worst score of 21? <context>: CREATE TABLE table_name_68 (dance VARCHAR, worst_dancer_s_ VARCHAR, worst_score VARCHAR) | SELECT dance FROM table_name_68 WHERE worst_dancer_s_ = "priscilla presley" AND worst_score = "21" |
48,280 | <question>: What is the best score of the dance freestyle? <context>: CREATE TABLE table_name_30 (best_score VARCHAR, dance VARCHAR) | SELECT best_score FROM table_name_30 WHERE dance = "freestyle" |
48,281 | <question>: Which dance has the worst dancer(s) as marissa jaret winokur? <context>: CREATE TABLE table_name_52 (dance VARCHAR, worst_dancer_s_ VARCHAR) | SELECT dance FROM table_name_52 WHERE worst_dancer_s_ = "marissa jaret winokur" |
48,282 | <question>: Which Points have an Opponent of vancouver canucks? <context>: CREATE TABLE table_name_91 (points INTEGER, opponent VARCHAR) | SELECT AVG(points) FROM table_name_91 WHERE opponent = "vancouver canucks" |
48,283 | <question>: How many Points have a Score of 3–0? <context>: CREATE TABLE table_name_80 (points VARCHAR, score VARCHAR) | SELECT COUNT(points) FROM table_name_80 WHERE score = "3–0" |
48,284 | <question>: Which Game has Points smaller than 10, and an October larger than 12, and an Opponent of @ washington capitals? <context>: CREATE TABLE table_name_5 (game INTEGER, opponent VARCHAR, points VARCHAR, october VARCHAR) | SELECT SUM(game) FROM table_name_5 WHERE points < 10 AND october > 12 AND opponent = "@ washington capitals" |
48,285 | <question>: Which Record has Points larger than 0, and a Score of 7–3? <context>: CREATE TABLE table_name_96 (record VARCHAR, points VARCHAR, score VARCHAR) | SELECT record FROM table_name_96 WHERE points > 0 AND score = "7–3" |
48,286 | <question>: On what date was the game more than 5? <context>: CREATE TABLE table_name_23 (date VARCHAR, game INTEGER) | SELECT date FROM table_name_23 WHERE game > 5 |
48,287 | <question>: Which series was on May 16? <context>: CREATE TABLE table_name_4 (series VARCHAR, date VARCHAR) | SELECT series FROM table_name_4 WHERE date = "may 16" |
48,288 | <question>: Name the date for oregon jurisdiction <context>: CREATE TABLE table_name_92 (date VARCHAR, jurisdiction VARCHAR) | SELECT date FROM table_name_92 WHERE jurisdiction = "oregon" |
48,289 | <question>: Name the john b. anderson for ronald reagan of 43% and phil crane of 0% <context>: CREATE TABLE table_name_21 (john_b_anderson VARCHAR, phil_crane VARCHAR, ronald_reagan VARCHAR) | SELECT john_b_anderson FROM table_name_21 WHERE phil_crane = "0%" AND ronald_reagan = "43%" |
48,290 | <question>: Name the howard bake when bush had 66% <context>: CREATE TABLE table_name_64 (howard_baker VARCHAR, george_h_w_bush VARCHAR) | SELECT howard_baker FROM table_name_64 WHERE george_h_w_bush = "66%" |
48,291 | <question>: Name the george bush for ronald reagan of 43% <context>: CREATE TABLE table_name_59 (george_h_w_bush VARCHAR, ronald_reagan VARCHAR) | SELECT george_h_w_bush FROM table_name_59 WHERE ronald_reagan = "43%" |
48,292 | <question>: Name the howard baker for ronald reagan of 72% <context>: CREATE TABLE table_name_46 (howard_baker VARCHAR, ronald_reagan VARCHAR) | SELECT howard_baker FROM table_name_46 WHERE ronald_reagan = "72%" |
48,293 | <question>: What is the sum of goals for the 2004/05 Season? <context>: CREATE TABLE table_name_48 (goals INTEGER, season VARCHAR) | SELECT SUM(goals) FROM table_name_48 WHERE season = "2004/05" |
48,294 | <question>: What is the lowest caps for the Club of SBV Excelsior? <context>: CREATE TABLE table_name_86 (caps INTEGER, club VARCHAR) | SELECT MIN(caps) FROM table_name_86 WHERE club = "sbv excelsior" |
48,295 | <question>: Which season has Caps lower than 36 for the Club of NAC Breda? <context>: CREATE TABLE table_name_35 (season VARCHAR, caps VARCHAR, club VARCHAR) | SELECT season FROM table_name_35 WHERE caps < 36 AND club = "nac breda" |
48,296 | <question>: Which Opponents in the final have a Partner of daniella dominikovic? <context>: CREATE TABLE table_name_91 (opponents_in_the_final VARCHAR, partner VARCHAR) | SELECT opponents_in_the_final FROM table_name_91 WHERE partner = "daniella dominikovic" |
48,297 | <question>: Which Date has a Partner of daniella dominikovic? <context>: CREATE TABLE table_name_33 (date VARCHAR, partner VARCHAR) | SELECT date FROM table_name_33 WHERE partner = "daniella dominikovic" |
48,298 | <question>: Which Surface has a Partner of pemra özgen? <context>: CREATE TABLE table_name_89 (surface VARCHAR, partner VARCHAR) | SELECT surface FROM table_name_89 WHERE partner = "pemra özgen" |
48,299 | <question>: Which Date has Opponents in the final of valeria casillo lilly raffa? <context>: CREATE TABLE table_name_59 (date VARCHAR, opponents_in_the_final VARCHAR) | SELECT date FROM table_name_59 WHERE opponents_in_the_final = "valeria casillo lilly raffa" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.