Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
47,300 | <question>: What was the total score when the E score was larger than 9.6 and the A score was 6? <context>: CREATE TABLE table_name_85 (total VARCHAR, e_score VARCHAR, a_score VARCHAR) | SELECT total FROM table_name_85 WHERE e_score > 9.6 AND a_score = 6 |
47,301 | <question>: What was the average E score when the T score was less than 4? <context>: CREATE TABLE table_name_69 (e_score INTEGER, t_score INTEGER) | SELECT AVG(e_score) FROM table_name_69 WHERE t_score < 4 |
47,302 | <question>: What was the average T score when the E score was larger than 9.6 and the team was from Spain? <context>: CREATE TABLE table_name_88 (t_score INTEGER, nation VARCHAR, e_score VARCHAR) | SELECT AVG(t_score) FROM table_name_88 WHERE nation = "spain" AND e_score > 9.6 |
47,303 | <question>: What was the total number of A scores for Japan when the T score was more than 4? <context>: CREATE TABLE table_name_63 (a_score VARCHAR, nation VARCHAR, t_score VARCHAR) | SELECT COUNT(a_score) FROM table_name_63 WHERE nation = "japan" AND t_score > 4 |
47,304 | <question>: What was the sum of the E scores when the total score was 19.466? <context>: CREATE TABLE table_name_7 (e_score INTEGER, total VARCHAR) | SELECT SUM(e_score) FROM table_name_7 WHERE total = 19.466 |
47,305 | <question>: What is the total number of E scores when the total score was 19.7 and the A score was more than 6? <context>: CREATE TABLE table_name_49 (e_score VARCHAR, total VARCHAR, a_score VARCHAR) | SELECT COUNT(e_score) FROM table_name_49 WHERE total = 19.7 AND a_score > 6 |
47,306 | <question>: What is the highest number of draws with 14 points and less than 7 games? <context>: CREATE TABLE table_name_39 (drawn INTEGER, points VARCHAR, games VARCHAR) | SELECT MAX(drawn) FROM table_name_39 WHERE points = 14 AND games < 7 |
47,307 | <question>: What was the attendance at the game with a record of 4-5? <context>: CREATE TABLE table_name_92 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_92 WHERE record = "4-5" |
47,308 | <question>: What was the date of the week 16 game? <context>: CREATE TABLE table_name_79 (date VARCHAR, week VARCHAR) | SELECT date FROM table_name_79 WHERE week = 16 |
47,309 | <question>: What was the record at the game with a result of W 13-12 after week 4? <context>: CREATE TABLE table_name_10 (record VARCHAR, week VARCHAR, result VARCHAR) | SELECT record FROM table_name_10 WHERE week > 4 AND result = "w 13-12" |
47,310 | <question>: Who was the opponent at the game attended by 62,019 before week 17? <context>: CREATE TABLE table_name_22 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_22 WHERE week < 17 AND attendance = "62,019" |
47,311 | <question>: Name the surface for january 8, 2001 <context>: CREATE TABLE table_name_93 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_93 WHERE date = "january 8, 2001" |
47,312 | <question>: Name the outcome for jordan kerr july 19, 2004 <context>: CREATE TABLE table_name_79 (outcome VARCHAR, partnering VARCHAR, date VARCHAR) | SELECT outcome FROM table_name_79 WHERE partnering = "jordan kerr" AND date = "july 19, 2004" |
47,313 | <question>: Name the score for opponents of nathan healey igor kunitsyn <context>: CREATE TABLE table_name_57 (score VARCHAR, opponents_in_the_final VARCHAR) | SELECT score FROM table_name_57 WHERE opponents_in_the_final = "nathan healey igor kunitsyn" |
47,314 | <question>: Name the outcome for opponents of jonas björkman john mcenroe <context>: CREATE TABLE table_name_60 (outcome VARCHAR, opponents_in_the_final VARCHAR) | SELECT outcome FROM table_name_60 WHERE opponents_in_the_final = "jonas björkman john mcenroe" |
47,315 | <question>: Name the surface for paul goldstein and date of october 2, 2006 <context>: CREATE TABLE table_name_79 (surface VARCHAR, partnering VARCHAR, date VARCHAR) | SELECT surface FROM table_name_79 WHERE partnering = "paul goldstein" AND date = "october 2, 2006" |
47,316 | <question>: Which Games have a Drawn smaller than 1, and a Lost smaller than 1? <context>: CREATE TABLE table_name_91 (games VARCHAR, drawn VARCHAR, lost VARCHAR) | SELECT games FROM table_name_91 WHERE drawn < 1 AND lost < 1 |
47,317 | <question>: Which Drawn is the lowest one that has a Lost of 5, and Points larger than 4? <context>: CREATE TABLE table_name_32 (drawn INTEGER, lost VARCHAR, points VARCHAR) | SELECT MIN(drawn) FROM table_name_32 WHERE lost = 5 AND points > 4 |
47,318 | <question>: Which Government has 57 seats? <context>: CREATE TABLE table_name_56 (government VARCHAR, seats VARCHAR) | SELECT government FROM table_name_56 WHERE seats = 57 |
47,319 | <question>: How many seats does the 6th Dail have? <context>: CREATE TABLE table_name_72 (seats VARCHAR, dáil VARCHAR) | SELECT COUNT(seats) FROM table_name_72 WHERE dáil = "6th" |
47,320 | <question>: What is the number of the dail with 61 seats? <context>: CREATE TABLE table_name_55 (dáil VARCHAR, seats VARCHAR) | SELECT dáil FROM table_name_55 WHERE seats = 61 |
47,321 | <question>: What is the lowest number of seats from the election with 27.0% of votes? <context>: CREATE TABLE table_name_55 (seats INTEGER, share_of_votes VARCHAR) | SELECT MIN(seats) FROM table_name_55 WHERE share_of_votes = "27.0%" |
47,322 | <question>: What is the 6th dail share of votes? <context>: CREATE TABLE table_name_67 (share_of_votes VARCHAR, dáil VARCHAR) | SELECT share_of_votes FROM table_name_67 WHERE dáil = "6th" |
47,323 | <question>: What was the highest week when the record was 1-3? <context>: CREATE TABLE table_name_48 (week INTEGER, record VARCHAR) | SELECT MAX(week) FROM table_name_48 WHERE record = "1-3" |
47,324 | <question>: Who was the opponent at the game attended by 62,657? <context>: CREATE TABLE table_name_34 (opponent VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_34 WHERE attendance = "62,657" |
47,325 | <question>: What is the year built for the Fay No. 4? <context>: CREATE TABLE table_name_47 (year_built INTEGER, name VARCHAR) | SELECT MAX(year_built) FROM table_name_47 WHERE name = "fay no. 4" |
47,326 | <question>: Where the length is 91', what is the year built? <context>: CREATE TABLE table_name_38 (year_built VARCHAR, length VARCHAR) | SELECT year_built FROM table_name_38 WHERE length = "91'" |
47,327 | <question>: What is the address for the Scorpions' mascot? <context>: CREATE TABLE table_name_80 (address VARCHAR, mascot VARCHAR) | SELECT address FROM table_name_80 WHERE mascot = "scorpions" |
47,328 | <question>: What was the mascot for the 2013-2014 principal named Frank Hendricsen? <context>: CREATE TABLE table_name_7 (mascot VARCHAR, principal__2013_2014_ VARCHAR) | SELECT mascot FROM table_name_7 WHERE principal__2013_2014_ = "frank hendricsen" |
47,329 | <question>: Who were the assistant and main principals of Kat Hughes? <context>: CREATE TABLE table_name_97 (Assistant VARCHAR, principal__2013_2014_ VARCHAR) | SELECT Assistant AS principal__2013_2014_ FROM table_name_97 WHERE principal__2013_2014_ = "kat hughes" |
47,330 | <question>: What is the address for the school that has the coyotes mascot? <context>: CREATE TABLE table_name_44 (address VARCHAR, mascot VARCHAR) | SELECT address FROM table_name_44 WHERE mascot = "coyotes" |
47,331 | <question>: What is the result of the game played at Jinan? <context>: CREATE TABLE table_name_26 (result VARCHAR, venue VARCHAR) | SELECT result FROM table_name_26 WHERE venue = "jinan" |
47,332 | <question>: What is the score of the game on November 10, 2006? <context>: CREATE TABLE table_name_17 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_17 WHERE date = "november 10, 2006" |
47,333 | <question>: What is the date of the game held at Lahore? <context>: CREATE TABLE table_name_87 (date VARCHAR, venue VARCHAR) | SELECT date FROM table_name_87 WHERE venue = "lahore" |
47,334 | <question>: What were the total number of entries in 2001 that had a front row smaller than 13? <context>: CREATE TABLE table_name_55 (entries VARCHAR, season VARCHAR, front_row_starts VARCHAR) | SELECT COUNT(entries) FROM table_name_55 WHERE season = "2001" AND front_row_starts < 13 |
47,335 | <question>: What are the lowest entries for a front row smaller than 15 where Michael Schumacher was driving? <context>: CREATE TABLE table_name_87 (entries INTEGER, front_row_starts VARCHAR, driver VARCHAR) | SELECT MIN(entries) FROM table_name_87 WHERE front_row_starts < 15 AND driver = "michael schumacher" |
47,336 | <question>: What was the highest front row starts for Alain Prost? <context>: CREATE TABLE table_name_52 (front_row_starts INTEGER, driver VARCHAR) | SELECT MAX(front_row_starts) FROM table_name_52 WHERE driver = "alain prost" |
47,337 | <question>: Which Against has Losses larger than 2, and Wins of 8, and Byes smaller than 0? <context>: CREATE TABLE table_name_65 (against INTEGER, byes VARCHAR, losses VARCHAR, wins VARCHAR) | SELECT SUM(against) FROM table_name_65 WHERE losses > 2 AND wins = 8 AND byes < 0 |
47,338 | <question>: Which Draws have Wins larger than 14? <context>: CREATE TABLE table_name_23 (draws INTEGER, wins INTEGER) | SELECT SUM(draws) FROM table_name_23 WHERE wins > 14 |
47,339 | <question>: How many Losses have an NTFA Div 2 of perth, and Wins smaller than 10? <context>: CREATE TABLE table_name_45 (losses VARCHAR, ntfa_div_2 VARCHAR, wins VARCHAR) | SELECT COUNT(losses) FROM table_name_45 WHERE ntfa_div_2 = "perth" AND wins < 10 |
47,340 | <question>: Which Byes have an Against smaller than 1647, and an NTFA Div 2 of fingal valley, and Wins smaller than 14? <context>: CREATE TABLE table_name_80 (byes INTEGER, wins VARCHAR, against VARCHAR, ntfa_div_2 VARCHAR) | SELECT MAX(byes) FROM table_name_80 WHERE against < 1647 AND ntfa_div_2 = "fingal valley" AND wins < 14 |
47,341 | <question>: How many grids were there races with more than 10 laps and a time of +34.121? <context>: CREATE TABLE table_name_83 (grid VARCHAR, time VARCHAR, laps VARCHAR) | SELECT COUNT(grid) FROM table_name_83 WHERE time = "+34.121" AND laps > 10 |
47,342 | <question>: What is the smallest grid number that had 10 laps listed with Jonathan Summerton as the driver? <context>: CREATE TABLE table_name_31 (grid INTEGER, laps VARCHAR, driver VARCHAR) | SELECT MIN(grid) FROM table_name_31 WHERE laps = 10 AND driver = "jonathan summerton" |
47,343 | <question>: What is the average grid number that had Team China with less than 10 laps? <context>: CREATE TABLE table_name_29 (grid INTEGER, laps VARCHAR, team VARCHAR) | SELECT AVG(grid) FROM table_name_29 WHERE laps < 10 AND team = "china" |
47,344 | <question>: Which Creator has the Latest stable release of unknown, and a Name of myeclipse? <context>: CREATE TABLE table_name_33 (creator VARCHAR, latest_stable_release VARCHAR, name VARCHAR) | SELECT creator FROM table_name_33 WHERE latest_stable_release = "unknown" AND name = "myeclipse" |
47,345 | <question>: Which Platform / OS has a Name of altova umodel? <context>: CREATE TABLE table_name_97 (platform___os VARCHAR, name VARCHAR) | SELECT platform___os FROM table_name_97 WHERE name = "altova umodel" |
47,346 | <question>: Which Programming language used has a First public release of 1997? <context>: CREATE TABLE table_name_52 (programming_language_used VARCHAR, first_public_release VARCHAR) | SELECT programming_language_used FROM table_name_52 WHERE first_public_release = "1997" |
47,347 | <question>: Which First public release has a Name of rational software modeler? <context>: CREATE TABLE table_name_25 (first_public_release VARCHAR, name VARCHAR) | SELECT first_public_release FROM table_name_25 WHERE name = "rational software modeler" |
47,348 | <question>: What is the College of Rice's highest overall for the guard position? <context>: CREATE TABLE table_name_62 (overall INTEGER, position VARCHAR, college VARCHAR) | SELECT MAX(overall) FROM table_name_62 WHERE position = "guard" AND college = "rice" |
47,349 | <question>: What is Tommy Nobis' position that has fewer than 16 picks? <context>: CREATE TABLE table_name_80 (position VARCHAR, pick__number VARCHAR, name VARCHAR) | SELECT position FROM table_name_80 WHERE pick__number < 16 AND name = "tommy nobis" |
47,350 | <question>: What was the score when the Rangers were playing against the Vancouver Canucks? <context>: CREATE TABLE table_name_99 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_99 WHERE opponent = "vancouver canucks" |
47,351 | <question>: Who were the opponents on January 27? <context>: CREATE TABLE table_name_34 (opponent VARCHAR, january VARCHAR) | SELECT opponent FROM table_name_34 WHERE january = 27 |
47,352 | <question>: Who was the opponent for game number less than 47 and a record of 24-13-4? <context>: CREATE TABLE table_name_34 (opponent VARCHAR, game VARCHAR, record VARCHAR) | SELECT opponent FROM table_name_34 WHERE game < 47 AND record = "24-13-4" |
47,353 | <question>: What is the average january number when the game number was higher than 39 and the opponent was the Vancouver Canucks? <context>: CREATE TABLE table_name_72 (january INTEGER, opponent VARCHAR, game VARCHAR) | SELECT AVG(january) FROM table_name_72 WHERE opponent = "vancouver canucks" AND game > 39 |
47,354 | <question>: What is the Drawn number with a Points against of correct as of 08:50 10 may 2009? <context>: CREATE TABLE table_name_11 (drawn VARCHAR, points_against VARCHAR) | SELECT drawn FROM table_name_11 WHERE points_against = "correct as of 08:50 10 may 2009" |
47,355 | <question>: What is the Tries against when lost shows 12 for pontycymmer rfc? <context>: CREATE TABLE table_name_79 (tries_against VARCHAR, lost VARCHAR, club VARCHAR) | SELECT tries_against FROM table_name_79 WHERE lost = "12" AND club = "pontycymmer rfc" |
47,356 | <question>: What is the Points against for the ystradgynlais rfc club? <context>: CREATE TABLE table_name_58 (points_against VARCHAR, club VARCHAR) | SELECT points_against FROM table_name_58 WHERE club = "ystradgynlais rfc" |
47,357 | <question>: What is the Club name what shows 405 for the Points against? <context>: CREATE TABLE table_name_11 (club VARCHAR, points_against VARCHAR) | SELECT club FROM table_name_11 WHERE points_against = "405" |
47,358 | <question>: What shows for Try bonus when the points against are 451? <context>: CREATE TABLE table_name_37 (try_bonus VARCHAR, points_against VARCHAR) | SELECT try_bonus FROM table_name_37 WHERE points_against = "451" |
47,359 | <question>: Which Pos has a Make of chevrolet, and a Driver of jack sprague, and a Car # smaller than 2? <context>: CREATE TABLE table_name_41 (pos INTEGER, car__number VARCHAR, make VARCHAR, driver VARCHAR) | SELECT SUM(pos) FROM table_name_41 WHERE make = "chevrolet" AND driver = "jack sprague" AND car__number < 2 |
47,360 | <question>: How many Car numbers have a Driver of erik darnell, and a Pos smaller than 2? <context>: CREATE TABLE table_name_93 (car__number VARCHAR, driver VARCHAR, pos VARCHAR) | SELECT COUNT(car__number) FROM table_name_93 WHERE driver = "erik darnell" AND pos < 2 |
47,361 | <question>: Which Pos has a Car # of 33? <context>: CREATE TABLE table_name_72 (pos INTEGER, car__number VARCHAR) | SELECT SUM(pos) FROM table_name_72 WHERE car__number = 33 |
47,362 | <question>: Which Pos has a Team of circle bar racing, and a Car # smaller than 14? <context>: CREATE TABLE table_name_64 (pos INTEGER, team VARCHAR, car__number VARCHAR) | SELECT MAX(pos) FROM table_name_64 WHERE team = "circle bar racing" AND car__number < 14 |
47,363 | <question>: Which Pos has a Car # larger than 2, and a Team of billy ballew motorsports? <context>: CREATE TABLE table_name_38 (pos INTEGER, car__number VARCHAR, team VARCHAR) | SELECT AVG(pos) FROM table_name_38 WHERE car__number > 2 AND team = "billy ballew motorsports" |
47,364 | <question>: What Rank is the Director(s) of satoko okita? <context>: CREATE TABLE table_name_42 (rank VARCHAR, director_s_ VARCHAR) | SELECT rank FROM table_name_42 WHERE director_s_ = "satoko okita" |
47,365 | <question>: What country is the film hi no tsugi ha rekishi from? <context>: CREATE TABLE table_name_21 (country VARCHAR, film VARCHAR) | SELECT country FROM table_name_21 WHERE film = "hi no tsugi ha rekishi" |
47,366 | <question>: Which Director(s) made the film hanzubon no ojisan and received a prize of ¥300,000? <context>: CREATE TABLE table_name_21 (director_s_ VARCHAR, prize VARCHAR, film VARCHAR) | SELECT director_s_ FROM table_name_21 WHERE prize = "¥300,000" AND film = "hanzubon no ojisan" |
47,367 | <question>: Which country did the Director(s) of kota nagaoka come from and win ¥300,000? <context>: CREATE TABLE table_name_59 (country VARCHAR, prize VARCHAR, director_s_ VARCHAR) | SELECT country FROM table_name_59 WHERE prize = "¥300,000" AND director_s_ = "kota nagaoka" |
47,368 | <question>: What Director won a prize of ¥2,000,000? <context>: CREATE TABLE table_name_42 (director_s_ VARCHAR, prize VARCHAR) | SELECT director_s_ FROM table_name_42 WHERE prize = "¥2,000,000" |
47,369 | <question>: What Rank is the director of maximilian jezo-parovsky? <context>: CREATE TABLE table_name_95 (rank VARCHAR, director_s_ VARCHAR) | SELECT rank FROM table_name_95 WHERE director_s_ = "maximilian jezo-parovsky" |
47,370 | <question>: Who had the most high assists from Milwaukee? <context>: CREATE TABLE table_name_73 (high_assists VARCHAR, team VARCHAR) | SELECT high_assists FROM table_name_73 WHERE team = "milwaukee" |
47,371 | <question>: Who scored the most point on December 13? <context>: CREATE TABLE table_name_28 (high_points VARCHAR, date VARCHAR) | SELECT high_points FROM table_name_28 WHERE date = "december 13" |
47,372 | <question>: What's the Loss for the game that had a 22-24 record? <context>: CREATE TABLE table_name_24 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_24 WHERE record = "22-24" |
47,373 | <question>: What was the date that Elvir Krehmic made a high jump record? <context>: CREATE TABLE table_name_78 (date VARCHAR, athlete VARCHAR) | SELECT date FROM table_name_78 WHERE athlete = "elvir krehmic" |
47,374 | <question>: Which spine has 12 issues? <context>: CREATE TABLE table_name_99 (spine VARCHAR, number_of_issues VARCHAR) | SELECT spine FROM table_name_99 WHERE number_of_issues = 12 |
47,375 | <question>: How many issues end on jan–72? <context>: CREATE TABLE table_name_82 (number_of_issues INTEGER, end_month VARCHAR) | SELECT SUM(number_of_issues) FROM table_name_82 WHERE end_month = "jan–72" |
47,376 | <question>: Which masthead ends on oct–69? <context>: CREATE TABLE table_name_15 (masthead VARCHAR, end_month VARCHAR) | SELECT masthead FROM table_name_15 WHERE end_month = "oct–69" |
47,377 | <question>: What is the game number held on May 2? <context>: CREATE TABLE table_name_51 (game INTEGER, date VARCHAR) | SELECT AVG(game) FROM table_name_51 WHERE date = "may 2" |
47,378 | <question>: Which Season has a Postseason of promoted runner-up? <context>: CREATE TABLE table_name_33 (season VARCHAR, postseason VARCHAR) | SELECT season FROM table_name_33 WHERE postseason = "promoted runner-up" |
47,379 | <question>: What is the attendance of the match with a record 20-11? <context>: CREATE TABLE table_name_97 (attendance VARCHAR, record VARCHAR) | SELECT attendance FROM table_name_97 WHERE record = "20-11" |
47,380 | <question>: What is the date of the match with a 28-15 record? <context>: CREATE TABLE table_name_24 (date VARCHAR, record VARCHAR) | SELECT date FROM table_name_24 WHERE record = "28-15" |
47,381 | <question>: Which opponent did they play against on April 16? <context>: CREATE TABLE table_name_79 (opponent VARCHAR, date VARCHAR) | SELECT opponent FROM table_name_79 WHERE date = "april 16" |
47,382 | <question>: What circuit was after round 2 in Victoria? <context>: CREATE TABLE table_name_64 (circuit VARCHAR, round VARCHAR, state_territory VARCHAR) | SELECT circuit FROM table_name_64 WHERE round > 2 AND state_territory = "victoria" |
47,383 | <question>: What is the state the winning driver Jamie Whincup from in round 2? <context>: CREATE TABLE table_name_8 (state_territory VARCHAR, winning_driver VARCHAR, round VARCHAR) | SELECT state_territory FROM table_name_8 WHERE winning_driver = "jamie whincup" AND round = 2 |
47,384 | <question>: What date in October did the Flyers play against the Toronto Maple Leafs? <context>: CREATE TABLE table_name_11 (october VARCHAR, opponent VARCHAR) | SELECT october FROM table_name_11 WHERE opponent = "toronto maple leafs" |
47,385 | <question>: What was the score of the game that had more than 8 points? <context>: CREATE TABLE table_name_17 (score VARCHAR, points INTEGER) | SELECT score FROM table_name_17 WHERE points > 8 |
47,386 | <question>: The round that had the final, what was the result? <context>: CREATE TABLE table_name_11 (result VARCHAR, round VARCHAR) | SELECT result FROM table_name_11 WHERE round = "final" |
47,387 | <question>: Opponent of andry laffita had what score? <context>: CREATE TABLE table_name_7 (score VARCHAR, opponent VARCHAR) | SELECT score FROM table_name_7 WHERE opponent = "andry laffita" |
47,388 | <question>: Opponent of igor samoilenco had what result? <context>: CREATE TABLE table_name_11 (result VARCHAR, opponent VARCHAR) | SELECT result FROM table_name_11 WHERE opponent = "igor samoilenco" |
47,389 | <question>: Score of 33-22 had what round? <context>: CREATE TABLE table_name_14 (round VARCHAR, score VARCHAR) | SELECT round FROM table_name_14 WHERE score = "33-22" |
47,390 | <question>: Round of first had what opponent? <context>: CREATE TABLE table_name_75 (opponent VARCHAR, round VARCHAR) | SELECT opponent FROM table_name_75 WHERE round = "first" |
47,391 | <question>: Result of win, and a Score of 33-22 involved what event? <context>: CREATE TABLE table_name_4 (event VARCHAR, result VARCHAR, score VARCHAR) | SELECT event FROM table_name_4 WHERE result = "win" AND score = "33-22" |
47,392 | <question>: What were the lowest points of game 60? <context>: CREATE TABLE table_name_99 (points INTEGER, game VARCHAR) | SELECT MIN(points) FROM table_name_99 WHERE game = 60 |
47,393 | <question>: What championship had Francesca Schiavone in the finals? <context>: CREATE TABLE table_name_81 (championship VARCHAR, opponent_in_the_final VARCHAR) | SELECT championship FROM table_name_81 WHERE opponent_in_the_final = "francesca schiavone" |
47,394 | <question>: What is the total number of national titles for the team with doane tigers as the mascot? <context>: CREATE TABLE table_name_2 (national_titles VARCHAR, mascot VARCHAR) | SELECT COUNT(national_titles) FROM table_name_2 WHERE mascot = "doane tigers" |
47,395 | <question>: Which year's crew is varsity 8+ when the record is 7-3? <context>: CREATE TABLE table_name_63 (year VARCHAR, crew VARCHAR, record VARCHAR) | SELECT year FROM table_name_63 WHERE crew = "varsity 8+" AND record = "7-3" |
47,396 | <question>: What is the total number of win % when John Gartin is coach, the crew is varsity 8+, and the year is 2005? <context>: CREATE TABLE table_name_78 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, crew VARCHAR) | SELECT SUM(win__percentage) FROM table_name_78 WHERE coach = "john gartin" AND crew = "varsity 8+" AND year = "2005" |
47,397 | <question>: What is the largest win percentage when John Gartin is coach, the record is 11-0, and the year is 2009? <context>: CREATE TABLE table_name_80 (win__percentage INTEGER, year VARCHAR, coach VARCHAR, record VARCHAR) | SELECT MAX(win__percentage) FROM table_name_80 WHERE coach = "john gartin" AND record = "11-0" AND year = "2009" |
47,398 | <question>: What is the total of win percentages when the year is 2008 and the crew is varsity 8+? <context>: CREATE TABLE table_name_74 (win__percentage INTEGER, year VARCHAR, crew VARCHAR) | SELECT SUM(win__percentage) FROM table_name_74 WHERE year = "2008" AND crew = "varsity 8+" |
47,399 | <question>: What is the pick number for the tight end who was picked after round 6? <context>: CREATE TABLE table_name_67 (pick VARCHAR, round VARCHAR, position VARCHAR) | SELECT COUNT(pick) FROM table_name_67 WHERE round > 6 AND position = "tight end" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.