Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
23,900
<question>: What is the total number of overall picks that were after pick 9 and went to Auburn College? <context>: CREATE TABLE table_name_48 (overall VARCHAR, college VARCHAR, pick VARCHAR)
SELECT COUNT(overall) FROM table_name_48 WHERE college = "auburn" AND pick > 9
23,901
<question>: What is the overall pick number for a draft pick smaller than 9, named buck mystrom from Michigan State college? <context>: CREATE TABLE table_name_72 (overall VARCHAR, name VARCHAR, pick VARCHAR, college VARCHAR)
SELECT overall FROM table_name_72 WHERE pick < 9 AND college = "michigan state" AND name = "buck mystrom"
23,902
<question>: What is the average number of rounds for billy hicks who had an overall pick number bigger than 310? <context>: CREATE TABLE table_name_1 (round INTEGER, overall VARCHAR, name VARCHAR)
SELECT AVG(round) FROM table_name_1 WHERE overall > 310 AND name = "billy hicks"
23,903
<question>: What is the sum of rounds that has a pick of 9 and is named jim pyburn? <context>: CREATE TABLE table_name_62 (round INTEGER, pick VARCHAR, name VARCHAR)
SELECT SUM(round) FROM table_name_62 WHERE pick = 9 AND name = "jim pyburn"
23,904
<question>: What is the highest round number for donnie caraway? <context>: CREATE TABLE table_name_6 (round INTEGER, name VARCHAR)
SELECT MAX(round) FROM table_name_6 WHERE name = "donnie caraway"
23,905
<question>: What is the highest overall pick number for george nicula who had a pick smaller than 9? <context>: CREATE TABLE table_name_35 (overall INTEGER, name VARCHAR, pick VARCHAR)
SELECT MAX(overall) FROM table_name_35 WHERE name = "george nicula" AND pick < 9
23,906
<question>: What is the status of the match held on 12/7/1997? <context>: CREATE TABLE table_name_31 (status VARCHAR, date VARCHAR)
SELECT status FROM table_name_31 WHERE date = "12/7/1997"
23,907
<question>: Which venue has an against value larger than 21 and had Argentina as an opposing team. <context>: CREATE TABLE table_name_91 (venue VARCHAR, against VARCHAR, opposing_team VARCHAR)
SELECT venue FROM table_name_91 WHERE against > 21 AND opposing_team = "argentina"
23,908
<question>: What was the average of againsts on 21/5/1997? <context>: CREATE TABLE table_name_45 (against INTEGER, date VARCHAR)
SELECT AVG(against) FROM table_name_45 WHERE date = "21/5/1997"
23,909
<question>: What was the outcome before 1997? <context>: CREATE TABLE table_name_93 (outcome VARCHAR, year INTEGER)
SELECT outcome FROM table_name_93 WHERE year < 1997
23,910
<question>: What championship after 1997 was the score 1–6, 4–6, 7–5, 5–7? <context>: CREATE TABLE table_name_3 (championship VARCHAR, year VARCHAR, score VARCHAR)
SELECT championship FROM table_name_3 WHERE year > 1997 AND score = "1–6, 4–6, 7–5, 5–7"
23,911
<question>: How many years was the opponent petr korda? <context>: CREATE TABLE table_name_21 (year VARCHAR, opponent VARCHAR)
SELECT COUNT(year) FROM table_name_21 WHERE opponent = "petr korda"
23,912
<question>: What was the surface in 1996? <context>: CREATE TABLE table_name_68 (surface VARCHAR, year VARCHAR)
SELECT surface FROM table_name_68 WHERE year = 1996
23,913
<question>: What is the sum of total values for Rd 7 less than 8? <context>: CREATE TABLE table_name_53 (total INTEGER, rd_7 INTEGER)
SELECT SUM(total) FROM table_name_53 WHERE rd_7 < 8
23,914
<question>: What is the sum of values of Rd 7 with RD 6 less than 48 and Rd 8 less than 4 for TC Motorsport in a position greater than 1? <context>: CREATE TABLE table_name_97 (rd_7 INTEGER, rd_8 VARCHAR, team VARCHAR, position VARCHAR, rd_6 VARCHAR)
SELECT SUM(rd_7) FROM table_name_97 WHERE position > 1 AND rd_6 < 48 AND team = "tc motorsport" AND rd_8 < 4
23,915
<question>: What is the average value for Rd 8 in a position less than 2 for Audi Sport Australia? <context>: CREATE TABLE table_name_68 (rd_8 INTEGER, team VARCHAR, position VARCHAR)
SELECT AVG(rd_8) FROM table_name_68 WHERE team = "audi sport australia" AND position < 2
23,916
<question>: What position did Luca Sbisa play for the Philadelphia Flyers? <context>: CREATE TABLE table_name_53 (position VARCHAR, player VARCHAR)
SELECT position FROM table_name_53 WHERE player = "luca sbisa"
23,917
<question>: What was the attendance for the home team of Walsall? <context>: CREATE TABLE table_name_48 (attendance VARCHAR, home_team VARCHAR)
SELECT attendance FROM table_name_48 WHERE home_team = "walsall"
23,918
<question>: Who were the away team in tie number 20? <context>: CREATE TABLE table_name_55 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_55 WHERE tie_no = "20"
23,919
<question>: What was the score of tie number 15? <context>: CREATE TABLE table_name_6 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_6 WHERE tie_no = "15"
23,920
<question>: What is the margin of victory when the tournament is konica san jose classic? <context>: CREATE TABLE table_name_23 (margin_of_victory VARCHAR, tournament VARCHAR)
SELECT margin_of_victory FROM table_name_23 WHERE tournament = "konica san jose classic"
23,921
<question>: what is the margin of victory when the runner-up is amy alcott and the winning score is –9 (72-68-67=207)? <context>: CREATE TABLE table_name_78 (margin_of_victory VARCHAR, runner_s__up VARCHAR, winning_score VARCHAR)
SELECT margin_of_victory FROM table_name_78 WHERE runner_s__up = "amy alcott" AND winning_score = –9(72 - 68 - 67 = 207)
23,922
<question>: what is the winning score when the tournament is safeco classic? <context>: CREATE TABLE table_name_73 (winning_score VARCHAR, tournament VARCHAR)
SELECT winning_score FROM table_name_73 WHERE tournament = "safeco classic"
23,923
<question>: what is the tournament when the winning score is –9 (69-69-70-71=279)? <context>: CREATE TABLE table_name_84 (tournament VARCHAR, winning_score VARCHAR)
SELECT tournament FROM table_name_84 WHERE winning_score = –9(69 - 69 - 70 - 71 = 279)
23,924
<question>: Who is the rider with less than 15 laps, more than 32 grids, and an accident time/retired? <context>: CREATE TABLE table_name_44 (rider VARCHAR, time_retired VARCHAR, laps VARCHAR, grid VARCHAR)
SELECT rider FROM table_name_44 WHERE laps < 15 AND grid > 32 AND time_retired = "accident"
23,925
<question>: What is the time/retired of the honda manufacturer with a grid less than 26, 18 laps, and joan olivé as the rider? <context>: CREATE TABLE table_name_71 (time_retired VARCHAR, rider VARCHAR, laps VARCHAR, manufacturer VARCHAR, grid VARCHAR)
SELECT time_retired FROM table_name_71 WHERE manufacturer = "honda" AND grid < 26 AND laps = 18 AND rider = "joan olivé"
23,926
<question>: What is the average number of laps with an accident time/retired, aprilia manufacturer and a grid of 27? <context>: CREATE TABLE table_name_84 (laps INTEGER, grid VARCHAR, time_retired VARCHAR, manufacturer VARCHAR)
SELECT AVG(laps) FROM table_name_84 WHERE time_retired = "accident" AND manufacturer = "aprilia" AND grid = 27
23,927
<question>: What is Type, when Rank is greater than 6, when Number of Bearers 2008 is greater than 13.815, and when Surname is Eriksen? <context>: CREATE TABLE table_name_47 (type VARCHAR, surname VARCHAR, rank VARCHAR, number_of_bearers_2008 VARCHAR)
SELECT type FROM table_name_47 WHERE rank > 6 AND number_of_bearers_2008 > 13.815 AND surname = "eriksen"
23,928
<question>: What is the highest Number of Bearers 2008, when Surname is Hansen, and when Rank is less than 1? <context>: CREATE TABLE table_name_32 (number_of_bearers_2008 INTEGER, surname VARCHAR, rank VARCHAR)
SELECT MAX(number_of_bearers_2008) FROM table_name_32 WHERE surname = "hansen" AND rank < 1
23,929
<question>: What is Type, when Number of Bearers 2008 is greater than 12.376, when Rank is greater than 3, and when Etymology is Son of Jens? <context>: CREATE TABLE table_name_68 (type VARCHAR, etymology VARCHAR, number_of_bearers_2008 VARCHAR, rank VARCHAR)
SELECT type FROM table_name_68 WHERE number_of_bearers_2008 > 12.376 AND rank > 3 AND etymology = "son of jens"
23,930
<question>: What is Etymology, when Rank is 14? <context>: CREATE TABLE table_name_10 (etymology VARCHAR, rank VARCHAR)
SELECT etymology FROM table_name_10 WHERE rank = 14
23,931
<question>: What is Highest Number of Bearers 2008, when Surname is Jacobsen? <context>: CREATE TABLE table_name_87 (number_of_bearers_2008 INTEGER, surname VARCHAR)
SELECT MAX(number_of_bearers_2008) FROM table_name_87 WHERE surname = "jacobsen"
23,932
<question>: WHAT POSITION HAS A ROUND LARGER THAN 2, FOR VALDOSTA COLLEGE? <context>: CREATE TABLE table_name_86 (position VARCHAR, round VARCHAR, college VARCHAR)
SELECT position FROM table_name_86 WHERE round > 2 AND college = "valdosta"
23,933
<question>: WHAT COLLEGE HAS A ROUND LARGER THAN 9, WITH BUTCH WEBSTER? <context>: CREATE TABLE table_name_74 (college VARCHAR, round VARCHAR, player VARCHAR)
SELECT college FROM table_name_74 WHERE round > 9 AND player = "butch webster"
23,934
<question>: WHAT IS THE NATIONALITY FOR SOUTHWESTERN OKLAHOMA? <context>: CREATE TABLE table_name_53 (nationality VARCHAR, college VARCHAR)
SELECT nationality FROM table_name_53 WHERE college = "southwestern oklahoma"
23,935
<question>: WHAT IS THE TOTAL PICK FOR BOSTON COLLEGE? <context>: CREATE TABLE table_name_32 (pick VARCHAR, college VARCHAR)
SELECT COUNT(pick) FROM table_name_32 WHERE college = "boston college"
23,936
<question>: WHAT ROUND HAS A GUARD POSITION AT OHIO COLLEGE? <context>: CREATE TABLE table_name_18 (round VARCHAR, position VARCHAR, college VARCHAR)
SELECT round FROM table_name_18 WHERE position = "guard" AND college = "ohio"
23,937
<question>: What is the date where the round is R3? <context>: CREATE TABLE table_name_40 (date VARCHAR, round VARCHAR)
SELECT date FROM table_name_40 WHERE round = "r3"
23,938
<question>: What is the round of the game at venue H and opponent of Derby County? <context>: CREATE TABLE table_name_31 (round VARCHAR, venue VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_31 WHERE venue = "h" AND opponent = "derby county"
23,939
<question>: What sum of game has an attendance of 18,690? <context>: CREATE TABLE table_name_40 (game INTEGER, attendance VARCHAR)
SELECT SUM(game) FROM table_name_40 WHERE attendance = 18 OFFSET 690
23,940
<question>: What average game was held on february 24 and has an attendance smaller than 16,541? <context>: CREATE TABLE table_name_7 (game INTEGER, date VARCHAR, attendance VARCHAR)
SELECT AVG(game) FROM table_name_7 WHERE date = "february 24" AND attendance < 16 OFFSET 541
23,941
<question>: What was the score of having a tie of 1? <context>: CREATE TABLE table_name_27 (score VARCHAR, tie_no VARCHAR)
SELECT score FROM table_name_27 WHERE tie_no = "1"
23,942
<question>: What was the attendance for the game where the away team was Stockport County? <context>: CREATE TABLE table_name_1 (attendance VARCHAR, away_team VARCHAR)
SELECT attendance FROM table_name_1 WHERE away_team = "stockport county"
23,943
<question>: What was the name of the away team that had a tie of 2? <context>: CREATE TABLE table_name_93 (away_team VARCHAR, tie_no VARCHAR)
SELECT away_team FROM table_name_93 WHERE tie_no = "2"
23,944
<question>: What was the score for the game where the home team was Wycombe Wanderers? <context>: CREATE TABLE table_name_73 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_73 WHERE home_team = "wycombe wanderers"
23,945
<question>: What was the score for the match where the home team was Leicester City? <context>: CREATE TABLE table_name_16 (score VARCHAR, home_team VARCHAR)
SELECT score FROM table_name_16 WHERE home_team = "leicester city"
23,946
<question>: Which Home team score has a AEDT Time of 11:00 pm? <context>: CREATE TABLE table_name_78 (home_team VARCHAR, aedt_time VARCHAR)
SELECT home_team AS score FROM table_name_78 WHERE aedt_time = "11:00 pm"
23,947
<question>: Which Home team is on Wednesday, 25 february 1998? <context>: CREATE TABLE table_name_65 (home_team VARCHAR, date VARCHAR)
SELECT home_team FROM table_name_65 WHERE date = "wednesday, 25 february 1998"
23,948
<question>: Name the Away team which has a Ground of waverley park, and a Home team of hawthorn? <context>: CREATE TABLE table_name_81 (away_team VARCHAR, ground VARCHAR, home_team VARCHAR)
SELECT away_team FROM table_name_81 WHERE ground = "waverley park" AND home_team = "hawthorn"
23,949
<question>: Name the AEDT Time which has an Away team of collingwood? <context>: CREATE TABLE table_name_62 (aedt_time VARCHAR, away_team VARCHAR)
SELECT aedt_time FROM table_name_62 WHERE away_team = "collingwood"
23,950
<question>: What was the attendance when they played at Detroit Lions? <context>: CREATE TABLE table_name_72 (attendance VARCHAR, opponent VARCHAR)
SELECT attendance FROM table_name_72 WHERE opponent = "at detroit lions"
23,951
<question>: What was the average attendance for games played at Atlanta Falcons? <context>: CREATE TABLE table_name_39 (attendance INTEGER, opponent VARCHAR)
SELECT AVG(attendance) FROM table_name_39 WHERE opponent = "at atlanta falcons"
23,952
<question>: Which week was the game played on December 8, 1974? <context>: CREATE TABLE table_name_39 (week VARCHAR, date VARCHAR)
SELECT week FROM table_name_39 WHERE date = "december 8, 1974"
23,953
<question>: What was the result before week 13 when they played the Oakland Raiders? <context>: CREATE TABLE table_name_33 (result VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_33 WHERE week < 13 AND opponent = "oakland raiders"
23,954
<question>: What time did the even tachi palace fights 3 take place? <context>: CREATE TABLE table_name_67 (time VARCHAR, event VARCHAR)
SELECT time FROM table_name_67 WHERE event = "tachi palace fights 3"
23,955
<question>: What location did the event kotc: mortal sins take place? <context>: CREATE TABLE table_name_30 (location VARCHAR, event VARCHAR)
SELECT location FROM table_name_30 WHERE event = "kotc: mortal sins"
23,956
<question>: What is the sum of rounds where freddie mitchell was picked? <context>: CREATE TABLE table_name_41 (round INTEGER, player VARCHAR)
SELECT SUM(round) FROM table_name_41 WHERE player = "freddie mitchell"
23,957
<question>: Who was the player who was pick number 147? <context>: CREATE TABLE table_name_40 (player VARCHAR, pick VARCHAR)
SELECT player FROM table_name_40 WHERE pick = 147
23,958
<question>: What position did a. j. feeley play who was picked in round 5? <context>: CREATE TABLE table_name_70 (position VARCHAR, round VARCHAR, player VARCHAR)
SELECT position FROM table_name_70 WHERE round = 5 AND player = "a. j. feeley"
23,959
<question>: What position did the player who was picked in round 3 play? <context>: CREATE TABLE table_name_18 (position VARCHAR, round VARCHAR)
SELECT position FROM table_name_18 WHERE round = 3
23,960
<question>: What Country is Tom Kite from? <context>: CREATE TABLE table_name_95 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_95 WHERE player = "tom kite"
23,961
<question>: What is the Total of the Player with a Finish of 1? <context>: CREATE TABLE table_name_2 (total VARCHAR, finish VARCHAR)
SELECT COUNT(total) FROM table_name_2 WHERE finish = "1"
23,962
<question>: What was the 2010 population of frankfort which has a rank smaller than 14? <context>: CREATE TABLE table_name_26 (city VARCHAR, rank VARCHAR)
SELECT AVG(2010 AS _pop) FROM table_name_26 WHERE city = "frankfort" AND rank < 14
23,963
<question>: What was the class position of the team that was in the 4th position? <context>: CREATE TABLE table_name_73 (class VARCHAR, pos VARCHAR)
SELECT class AS pos FROM table_name_73 WHERE pos = "4th"
23,964
<question>: What is Class Pos., when Year is before 2013, and when Laps is greater than 175? <context>: CREATE TABLE table_name_72 (class VARCHAR, year VARCHAR, laps VARCHAR)
SELECT class AS pos FROM table_name_72 WHERE year < 2013 AND laps > 175
23,965
<question>: Which Year has a Category of best original song (รอเธอหันมา – โฟกัส จิระกุล)? <context>: CREATE TABLE table_name_58 (year INTEGER, category VARCHAR)
SELECT MAX(year) FROM table_name_58 WHERE category = "best original song (รอเธอหันมา – โฟกัส จิระกุล)"
23,966
<question>: Which Year has an Award of 17th bangkok critics assembly awards, and a Category of best original score? <context>: CREATE TABLE table_name_7 (year VARCHAR, award VARCHAR, category VARCHAR)
SELECT year FROM table_name_7 WHERE award = "17th bangkok critics assembly awards" AND category = "best original score"
23,967
<question>: Which Country has a Result of nominated, an Award of 17th bangkok critics assembly awards, and a Category of best screenplay? <context>: CREATE TABLE table_name_75 (country VARCHAR, category VARCHAR, result VARCHAR, award VARCHAR)
SELECT country FROM table_name_75 WHERE result = "nominated" AND award = "17th bangkok critics assembly awards" AND category = "best screenplay"
23,968
<question>: Who was the opponent with a record of 14-4-1 and has a round of 1? <context>: CREATE TABLE table_name_45 (opponent VARCHAR, round VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_45 WHERE round = "1" AND record = "14-4-1"
23,969
<question>: What is the round in Finland with a draw for method? <context>: CREATE TABLE table_name_32 (round VARCHAR, location VARCHAR, method VARCHAR)
SELECT round FROM table_name_32 WHERE location = "finland" AND method = "draw"
23,970
<question>: What's the location when the record was 6-0-1? <context>: CREATE TABLE table_name_17 (location VARCHAR, record VARCHAR)
SELECT location FROM table_name_17 WHERE record = "6-0-1"
23,971
<question>: Who was the opponent on October 14, 1984? <context>: CREATE TABLE table_name_62 (opponent VARCHAR, date VARCHAR)
SELECT opponent FROM table_name_62 WHERE date = "october 14, 1984"
23,972
<question>: What was the result in a week lower than 10 with an opponent of Chicago Bears? <context>: CREATE TABLE table_name_21 (result VARCHAR, week VARCHAR, opponent VARCHAR)
SELECT result FROM table_name_21 WHERE week < 10 AND opponent = "chicago bears"
23,973
<question>: What is the sum of attendance when the result was l 16-13? <context>: CREATE TABLE table_name_54 (attendance INTEGER, result VARCHAR)
SELECT SUM(attendance) FROM table_name_54 WHERE result = "l 16-13"
23,974
<question>: What is the name when the position was fullback, hooker? <context>: CREATE TABLE table_name_85 (name VARCHAR, pos VARCHAR)
SELECT name FROM table_name_85 WHERE pos = "fullback, hooker"
23,975
<question>: What is the name when the position is centre? <context>: CREATE TABLE table_name_33 (name VARCHAR, pos VARCHAR)
SELECT name FROM table_name_33 WHERE pos = "centre"
23,976
<question>: Which show has a character of Rohan? <context>: CREATE TABLE table_name_89 (show VARCHAR, character VARCHAR)
SELECT show FROM table_name_89 WHERE character = "rohan"
23,977
<question>: Which show was nominated for the ITA Milestone Award at the Indian Television Academy Awards? <context>: CREATE TABLE table_name_85 (show VARCHAR, award_ceremony VARCHAR, category VARCHAR)
SELECT show FROM table_name_85 WHERE award_ceremony = "indian television academy awards" AND category = "ita milestone award"
23,978
<question>: Which character was nominated in the 2010 Indian Television Academy Awards? <context>: CREATE TABLE table_name_1 (character VARCHAR, year VARCHAR, award_ceremony VARCHAR)
SELECT character FROM table_name_1 WHERE year = 2010 AND award_ceremony = "indian television academy awards"
23,979
<question>: What rank is the title with a gross of $26,589,355? <context>: CREATE TABLE table_name_21 (rank VARCHAR, gross VARCHAR)
SELECT rank FROM table_name_21 WHERE gross = "$26,589,355"
23,980
<question>: Which title ranked lower than 19 has a gross of $11,833,696? <context>: CREATE TABLE table_name_11 (title VARCHAR, rank VARCHAR, gross VARCHAR)
SELECT title FROM table_name_11 WHERE rank < 19 AND gross = "$11,833,696"
23,981
<question>: What rank has a gross of $35,976,000? <context>: CREATE TABLE table_name_44 (rank VARCHAR, gross VARCHAR)
SELECT rank FROM table_name_44 WHERE gross = "$35,976,000"
23,982
<question>: What is the rank of The Big Doll House? <context>: CREATE TABLE table_name_62 (rank INTEGER, title VARCHAR)
SELECT MIN(rank) FROM table_name_62 WHERE title = "the big doll house"
23,983
<question>: What is the Equipment that has a Point bigger than 256, and a Position of 3? <context>: CREATE TABLE table_name_46 (equipment VARCHAR, points VARCHAR, position VARCHAR)
SELECT equipment FROM table_name_46 WHERE points > 256 AND position = 3
23,984
<question>: What is the Equipment that has a Points littler than 442, and a Position of 9? <context>: CREATE TABLE table_name_93 (equipment VARCHAR, points VARCHAR, position VARCHAR)
SELECT equipment FROM table_name_93 WHERE points < 442 AND position = 9
23,985
<question>: What is the most elevated Position that has a Points of 257, and a Bike No littler than 19? <context>: CREATE TABLE table_name_96 (position INTEGER, points VARCHAR, bike_no VARCHAR)
SELECT MAX(position) FROM table_name_96 WHERE points = 257 AND bike_no < 19
23,986
<question>: When Bunky Henry of the United States scored higher than 67 and his To par was e, what was his place? <context>: CREATE TABLE table_name_18 (place VARCHAR, player VARCHAR, to_par VARCHAR, score VARCHAR, country VARCHAR)
SELECT place FROM table_name_18 WHERE score > 67 AND country = "united states" AND to_par = "e" AND player = "bunky henry"
23,987
<question>: When Bunky Henry of the United States scored higher than 68 and his To par was e, what was his place? <context>: CREATE TABLE table_name_14 (place VARCHAR, player VARCHAR, score VARCHAR, to_par VARCHAR)
SELECT place FROM table_name_14 WHERE score > 68 AND to_par = "e" AND player = "bunky henry"
23,988
<question>: Where did Bob Murphy of the United States place? <context>: CREATE TABLE table_name_74 (place VARCHAR, country VARCHAR, player VARCHAR)
SELECT place FROM table_name_74 WHERE country = "united states" AND player = "bob murphy"
23,989
<question>: When Bunky Henry placed t8, what was his To par? <context>: CREATE TABLE table_name_75 (to_par VARCHAR, place VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_75 WHERE place = "t8" AND player = "bunky henry"
23,990
<question>: Which country is George Archer from? <context>: CREATE TABLE table_name_22 (country VARCHAR, player VARCHAR)
SELECT country FROM table_name_22 WHERE player = "george archer"
23,991
<question>: Which season has Zach Jacobson in third? <context>: CREATE TABLE table_name_30 (season VARCHAR, third VARCHAR)
SELECT season FROM table_name_30 WHERE third = "zach jacobson"
23,992
<question>: Who was the lead with John Shuster as skip in the season of 2009–10? <context>: CREATE TABLE table_name_83 (lead VARCHAR, skip VARCHAR, season VARCHAR)
SELECT lead FROM table_name_83 WHERE skip = "john shuster" AND season = "2009–10"
23,993
<question>: Who was second when Shane McKinlay was the lead? <context>: CREATE TABLE table_name_71 (second VARCHAR, lead VARCHAR)
SELECT second FROM table_name_71 WHERE lead = "shane mckinlay"
23,994
<question>: Who was the lead with Pete Fenson as skip and Joe Polo as second in season 2005–06? <context>: CREATE TABLE table_name_61 (lead VARCHAR, season VARCHAR, skip VARCHAR, second VARCHAR)
SELECT lead FROM table_name_61 WHERE skip = "pete fenson" AND second = "joe polo" AND season = "2005–06"
23,995
<question>: Who was the lead with John Shuster as skip, Chris Plys in second, and Jeff Isaacson in third? <context>: CREATE TABLE table_name_50 (lead VARCHAR, second VARCHAR, skip VARCHAR, third VARCHAR)
SELECT lead FROM table_name_50 WHERE skip = "john shuster" AND third = "jeff isaacson" AND second = "chris plys"
23,996
<question>: WHAT IS THE TO PAR WITH A FINISH OF T11, FOR DAVID GRAHAM? <context>: CREATE TABLE table_name_23 (to_par VARCHAR, finish VARCHAR, player VARCHAR)
SELECT to_par FROM table_name_23 WHERE finish = "t11" AND player = "david graham"
23,997
<question>: WHAT IS THE TOTAL THAT HAS A WIN IN 1982? <context>: CREATE TABLE table_name_14 (total INTEGER, year_s__won VARCHAR)
SELECT AVG(total) FROM table_name_14 WHERE year_s__won = "1982"
23,998
<question>: WHAT IS THE TOTAL, OF A TO PAR FOR HUBERT GREEN, AND A TOTAL LARGER THAN 291? <context>: CREATE TABLE table_name_96 (to_par VARCHAR, player VARCHAR, total VARCHAR)
SELECT COUNT(to_par) FROM table_name_96 WHERE player = "hubert green" AND total > 291
23,999
<question>: Can you tell me the sum of Area km 2 that has the Official Name of glenelg? <context>: CREATE TABLE table_name_75 (area_km_2 INTEGER, official_name VARCHAR)
SELECT SUM(area_km_2) FROM table_name_75 WHERE official_name = "glenelg"