Unnamed: 0
int64
0
60k
input
stringlengths
76
562
answer
stringlengths
18
557
22,200
<question>: Score of 2–3 ot on what date? <context>: CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
SELECT date FROM table_name_76 WHERE score = "2–3 ot"
22,201
<question>: Opponent of @ edmonton oilers, and a Game smaller than 7, and a Series of oilers lead 3–2 had what score? <context>: CREATE TABLE table_name_38 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)
SELECT score FROM table_name_38 WHERE opponent = "@ edmonton oilers" AND game < 7 AND series = "oilers lead 3–2"
22,202
<question>: Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3–2 had what score? <context>: CREATE TABLE table_name_30 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)
SELECT score FROM table_name_30 WHERE opponent = "@ edmonton oilers" AND game > 1 AND series = "oilers lead 3–2"
22,203
<question>: Series of oilers win 4–3 had what highest game? <context>: CREATE TABLE table_name_6 (game INTEGER, series VARCHAR)
SELECT MAX(game) FROM table_name_6 WHERE series = "oilers win 4–3"
22,204
<question>: Which December has a Record of 4-3-6? <context>: CREATE TABLE table_name_65 (december VARCHAR, record VARCHAR)
SELECT december FROM table_name_65 WHERE record = "4-3-6"
22,205
<question>: Which Score has a December smaller than 14, and a Game of 12? <context>: CREATE TABLE table_name_93 (score VARCHAR, december VARCHAR, game VARCHAR)
SELECT score FROM table_name_93 WHERE december < 14 AND game = 12
22,206
<question>: Which Game is the highest one that has a Record of 4-3-6? <context>: CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)
SELECT MAX(game) FROM table_name_83 WHERE record = "4-3-6"
22,207
<question>: Which Score has a Record of 18–11–5? <context>: CREATE TABLE table_name_85 (score VARCHAR, record VARCHAR)
SELECT score FROM table_name_85 WHERE record = "18–11–5"
22,208
<question>: Which Score has a Game larger than 32, and Points smaller than 42, and a December larger than 19, and a Record of 18–12–5? <context>: CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR, december VARCHAR, game VARCHAR, points VARCHAR)
SELECT score FROM table_name_28 WHERE game > 32 AND points < 42 AND december > 19 AND record = "18–12–5"
22,209
<question>: Which Score has Points of 36, and a Game of 30? <context>: CREATE TABLE table_name_6 (score VARCHAR, points VARCHAR, game VARCHAR)
SELECT score FROM table_name_6 WHERE points = 36 AND game = 30
22,210
<question>: Which Game has a Record of 14–10–4, and Points smaller than 32? <context>: CREATE TABLE table_name_50 (game INTEGER, record VARCHAR, points VARCHAR)
SELECT SUM(game) FROM table_name_50 WHERE record = "14–10–4" AND points < 32
22,211
<question>: Which Game has a Score of 4–1? <context>: CREATE TABLE table_name_47 (game INTEGER, score VARCHAR)
SELECT SUM(game) FROM table_name_47 WHERE score = "4–1"
22,212
<question>: Which celebrity was famous for being a rapper? <context>: CREATE TABLE table_name_23 (celebrity VARCHAR, famous_for VARCHAR)
SELECT celebrity FROM table_name_23 WHERE famous_for = "rapper"
22,213
<question>: What position did the celebrity finish that entered on day 1 and exited on day 19? <context>: CREATE TABLE table_name_16 (finished VARCHAR, exited VARCHAR, entered VARCHAR)
SELECT finished FROM table_name_16 WHERE exited = "day 19" AND entered = "day 1"
22,214
<question>: What was Dom Joly famous for? <context>: CREATE TABLE table_name_32 (famous_for VARCHAR, celebrity VARCHAR)
SELECT famous_for FROM table_name_32 WHERE celebrity = "dom joly"
22,215
<question>: What position did the celebrity finish that entered on day 1 and exited on day 15? <context>: CREATE TABLE table_name_41 (finished VARCHAR, entered VARCHAR, exited VARCHAR)
SELECT finished FROM table_name_41 WHERE entered = "day 1" AND exited = "day 15"
22,216
<question>: What celebrity is famous for being an actor? <context>: CREATE TABLE table_name_84 (celebrity VARCHAR, famous_for VARCHAR)
SELECT celebrity FROM table_name_84 WHERE famous_for = "actor"
22,217
<question>: Where did steve smith go to school? <context>: CREATE TABLE table_name_53 (school_club_team VARCHAR, player VARCHAR)
SELECT school_club_team FROM table_name_53 WHERE player = "steve smith"
22,218
<question>: What was the result associated with the cinemaa awards, and gabbar singh film? <context>: CREATE TABLE table_name_93 (result VARCHAR, award VARCHAR, film VARCHAR)
SELECT result FROM table_name_93 WHERE award = "cinemaa awards" AND film = "gabbar singh"
22,219
<question>: What was the award for the excellence in tamil category? <context>: CREATE TABLE table_name_96 (award VARCHAR, category VARCHAR)
SELECT award FROM table_name_96 WHERE category = "excellence in tamil"
22,220
<question>: Who is the composer of the song with a length of 6:24? <context>: CREATE TABLE table_name_85 (composer_s_ VARCHAR, length VARCHAR)
SELECT composer_s_ FROM table_name_85 WHERE length = "6:24"
22,221
<question>: What is the lengtho f track 16? <context>: CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR)
SELECT length FROM table_name_88 WHERE track = "16"
22,222
<question>: How many new entries this round have clubs 2 β†’ 1? <context>: CREATE TABLE table_name_58 (new_entries_this_round VARCHAR, clubs VARCHAR)
SELECT new_entries_this_round FROM table_name_58 WHERE clubs = "2 β†’ 1"
22,223
<question>: What is the average for matches with a prize money amount of Β£3,000? <context>: CREATE TABLE table_name_56 (matches INTEGER, prize_money VARCHAR)
SELECT AVG(matches) FROM table_name_56 WHERE prize_money = "Β£3,000"
22,224
<question>: How many new entries this round are there with more than 16 matches and a third round qualifying? <context>: CREATE TABLE table_name_90 (new_entries_this_round VARCHAR, matches VARCHAR, round VARCHAR)
SELECT new_entries_this_round FROM table_name_90 WHERE matches > 16 AND round = "third round qualifying"
22,225
<question>: What are the clubs with 46 matches? <context>: CREATE TABLE table_name_57 (clubs VARCHAR, matches VARCHAR)
SELECT clubs FROM table_name_57 WHERE matches = 46
22,226
<question>: What High School with a nickname of S Eagle has a Division of crest? <context>: CREATE TABLE table_name_17 (high_school VARCHAR, division VARCHAR, nickname VARCHAR)
SELECT high_school FROM table_name_17 WHERE division = "crest" AND nickname = "s eagle"
22,227
<question>: What is the affiliation of a location called Issaquah? <context>: CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)
SELECT affiliation FROM table_name_51 WHERE location = "issaquah"
22,228
<question>: What is the affiliation of a high school in Issaquah that was founded in less than 1965? <context>: CREATE TABLE table_name_37 (affiliation VARCHAR, founded VARCHAR, high_school VARCHAR)
SELECT affiliation FROM table_name_37 WHERE founded < 1965 AND high_school = "issaquah"
22,229
<question>: Which Venue has a Competition of pl group b, and a Score of 2-2? <context>: CREATE TABLE table_name_82 (venue VARCHAR, competition VARCHAR, score VARCHAR)
SELECT venue FROM table_name_82 WHERE competition = "pl group b" AND score = "2-2"
22,230
<question>: Which Competition has a Score of 0-1, and Opponents of pkns fc? <context>: CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR, opponents VARCHAR)
SELECT competition FROM table_name_33 WHERE score = "0-1" AND opponents = "pkns fc"
22,231
<question>: Who competed on may 6, 2006? <context>: CREATE TABLE table_name_50 (opponents VARCHAR, date VARCHAR)
SELECT opponents FROM table_name_50 WHERE date = "may 6, 2006"
22,232
<question>: Which Score has Opponents of pkns fc, and a Date of january 8, 2006? <context>: CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR, date VARCHAR)
SELECT score FROM table_name_35 WHERE opponents = "pkns fc" AND date = "january 8, 2006"
22,233
<question>: Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium? <context>: CREATE TABLE table_name_52 (date VARCHAR, venue VARCHAR, competition VARCHAR, opponents VARCHAR)
SELECT date FROM table_name_52 WHERE competition = "pl group b" AND opponents = "police" AND venue = "selayang municipal council stadium"
22,234
<question>: Which Competition has Opponents of pkns fc, and a Score of 0-0? <context>: CREATE TABLE table_name_38 (competition VARCHAR, opponents VARCHAR, score VARCHAR)
SELECT competition FROM table_name_38 WHERE opponents = "pkns fc" AND score = "0-0"
22,235
<question>: How many people attended the game at the miami orange bowl? <context>: CREATE TABLE table_name_49 (attendance INTEGER, game_site VARCHAR)
SELECT SUM(attendance) FROM table_name_49 WHERE game_site = "miami orange bowl"
22,236
<question>: What was the attendance at game with a loss of Josh Hall (0–1)? <context>: CREATE TABLE table_name_11 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_11 WHERE loss = "josh hall (0–1)"
22,237
<question>: What was the score of the game that had a loss of Chad Fox (3–3)? <context>: CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)
SELECT score FROM table_name_68 WHERE loss = "chad fox (3–3)"
22,238
<question>: What's the attendance of the game where there was a Loss of Yates (3-2)? <context>: CREATE TABLE table_name_37 (attendance VARCHAR, loss VARCHAR)
SELECT attendance FROM table_name_37 WHERE loss = "yates (3-2)"
22,239
<question>: What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3? <context>: CREATE TABLE table_name_18 (keynote_version INTEGER, numbers_version VARCHAR, pages_version VARCHAR)
SELECT MAX(keynote_version) FROM table_name_18 WHERE numbers_version = "2.3" AND pages_version > 4.3
22,240
<question>: What version of iWork was released on October 22, 2013 with a pages version greater than 2? <context>: CREATE TABLE table_name_44 (iwork_version VARCHAR, release_date VARCHAR, pages_version VARCHAR)
SELECT iwork_version FROM table_name_44 WHERE release_date = "october 22, 2013" AND pages_version > 2
22,241
<question>: Which Rank is the lowest one that has Points larger than 52, and a Year larger than 1970? <context>: CREATE TABLE table_name_9 (rank INTEGER, points VARCHAR, year VARCHAR)
SELECT MIN(rank) FROM table_name_9 WHERE points > 52 AND year > 1970
22,242
<question>: Which opponent has a game larger than 61, february smaller than 28, and fewer points than 69? <context>: CREATE TABLE table_name_73 (opponent VARCHAR, points VARCHAR, game VARCHAR, february VARCHAR)
SELECT opponent FROM table_name_73 WHERE game > 61 AND february < 28 AND points < 69
22,243
<question>: How many games have a record of 30–25–9 and more points than 69? <context>: CREATE TABLE table_name_86 (game VARCHAR, record VARCHAR, points VARCHAR)
SELECT COUNT(game) FROM table_name_86 WHERE record = "30–25–9" AND points > 69
22,244
<question>: How many february games had a record of 29–24–9? <context>: CREATE TABLE table_name_62 (february INTEGER, record VARCHAR)
SELECT AVG(february) FROM table_name_62 WHERE record = "29–24–9"
22,245
<question>: What numbered pick was the player from texas? <context>: CREATE TABLE table_name_85 (pick__number VARCHAR, college VARCHAR)
SELECT COUNT(pick__number) FROM table_name_85 WHERE college = "texas"
22,246
<question>: What is the conference record for the year of 1971? <context>: CREATE TABLE table_name_7 (conference_record VARCHAR, year VARCHAR)
SELECT conference_record FROM table_name_7 WHERE year = "1971"
22,247
<question>: When first elected was 2006, who was the delegate? <context>: CREATE TABLE table_name_99 (delegate VARCHAR, first_elected VARCHAR)
SELECT delegate FROM table_name_99 WHERE first_elected = 2006
22,248
<question>: Which was the district that had first elected greater than 2006 and is democratic? <context>: CREATE TABLE table_name_51 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
SELECT district FROM table_name_51 WHERE party = "democratic" AND first_elected > 2006
22,249
<question>: Name the score for game more than 6 and before october 28 <context>: CREATE TABLE table_name_67 (score VARCHAR, game VARCHAR, october VARCHAR)
SELECT score FROM table_name_67 WHERE game > 6 AND october < 28
22,250
<question>: Name the least game for october 21 <context>: CREATE TABLE table_name_42 (game INTEGER, october VARCHAR)
SELECT MIN(game) FROM table_name_42 WHERE october = 21
22,251
<question>: Name the least game for record of 5-1-3 <context>: CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_93 WHERE record = "5-1-3"
22,252
<question>: Name the most october for game less than 1 <context>: CREATE TABLE table_name_19 (october INTEGER, game INTEGER)
SELECT MAX(october) FROM table_name_19 WHERE game < 1
22,253
<question>: Name the least game for record of 1-0-2 <context>: CREATE TABLE table_name_24 (game INTEGER, record VARCHAR)
SELECT MIN(game) FROM table_name_24 WHERE record = "1-0-2"
22,254
<question>: Which Bronze is the highest one that has a Rank larger than 1, and a Nation of dominican republic, and a Total larger than 4? <context>: CREATE TABLE table_name_44 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)
SELECT MAX(bronze) FROM table_name_44 WHERE rank > 1 AND nation = "dominican republic" AND total > 4
22,255
<question>: Which Total is the lowest one that has a Rank smaller than 1? <context>: CREATE TABLE table_name_47 (total INTEGER, rank INTEGER)
SELECT MIN(total) FROM table_name_47 WHERE rank < 1
22,256
<question>: Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15? <context>: CREATE TABLE table_name_23 (total INTEGER, rank VARCHAR, silver VARCHAR)
SELECT MIN(total) FROM table_name_23 WHERE rank < 2 AND silver < 15
22,257
<question>: Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12? <context>: CREATE TABLE table_name_71 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)
SELECT SUM(silver) FROM table_name_71 WHERE gold = 2 AND nation = "puerto rico" AND total < 12
22,258
<question>: Album of les mots had what lowest year? <context>: CREATE TABLE table_name_18 (year INTEGER, album VARCHAR)
SELECT MIN(year) FROM table_name_18 WHERE album = "les mots"
22,259
<question>: What team has 2000-01 as the season? <context>: CREATE TABLE table_name_67 (team VARCHAR, season VARCHAR)
SELECT team FROM table_name_67 WHERE season = "2000-01"
22,260
<question>: What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team? <context>: CREATE TABLE table_name_95 (season VARCHAR, team VARCHAR, number VARCHAR, league VARCHAR)
SELECT season FROM table_name_95 WHERE number < 90 AND league = "mitte" AND team = "spvgg ruhmannsfelden"
22,261
<question>: What league has a number less than 122, and least wins as the record? <context>: CREATE TABLE table_name_38 (league VARCHAR, number VARCHAR, record VARCHAR)
SELECT league FROM table_name_38 WHERE number < 122 AND record = "least wins"
22,262
<question>: What league has most wins as the record? <context>: CREATE TABLE table_name_77 (league VARCHAR, record VARCHAR)
SELECT league FROM table_name_77 WHERE record = "most wins"
22,263
<question>: What league has a number less than 1? <context>: CREATE TABLE table_name_11 (league VARCHAR, number INTEGER)
SELECT league FROM table_name_11 WHERE number < 1
22,264
<question>: What is the average nominated of the composition nominated by Taioseach with an Industrial and Commercial panel less than 9, an administrative panel greater than 0, a cultural and educational panel greater than 2, and a total less than 29? <context>: CREATE TABLE table_name_99 (nominated_by_the_taoiseach IN...
SELECT AVG(nominated_by_the_taoiseach) FROM table_name_99 WHERE industrial_and_commercial_panel < 9 AND administrative_panel > 0 AND cultural_and_educational_panel > 2 AND total < 29
22,265
<question>: What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4? <context>: CREATE TABLE table_name_36 (administrative_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)
SELECT AVG(administrative_panel) FROM table_name_36 WHERE nominated_by_the_taoiseach = 0 AND total < 4
22,266
<question>: What is the highest number of nominations by Taoiseach of the composition with an administrative panel greater than 0 and an industrial and commercial panel less than 1? <context>: CREATE TABLE table_name_11 (nominated_by_the_taoiseach INTEGER, administrative_panel VARCHAR, industrial_and_commercial_panel V...
SELECT MAX(nominated_by_the_taoiseach) FROM table_name_11 WHERE administrative_panel > 0 AND industrial_and_commercial_panel < 1
22,267
<question>: What is the average agricultural panel of the composition with a labour panel less than 6, more than 0 nominations by Taoiseach, and a total less than 4? <context>: CREATE TABLE table_name_62 (agricultural_panel INTEGER, total VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
SELECT AVG(agricultural_panel) FROM table_name_62 WHERE labour_panel < 6 AND nominated_by_the_taoiseach > 0 AND total < 4
22,268
<question>: What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland? <context>: CREATE TABLE table_name_59 (agricultural_panel VARCHAR, national_university_of_ireland INTEGER)
SELECT COUNT(agricultural_panel) FROM table_name_59 WHERE national_university_of_ireland > 3
22,269
<question>: What was the attendance on September 28? <context>: CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)
SELECT MAX(attendance) FROM table_name_92 WHERE date = "september 28"
22,270
<question>: Away result of 1-2 has what season? <context>: CREATE TABLE table_name_95 (season VARCHAR, away_result VARCHAR)
SELECT season FROM table_name_95 WHERE away_result = "1-2"
22,271
<question>: Round of 2r, and a Home result of 0-0 has what season? <context>: CREATE TABLE table_name_24 (season VARCHAR, round VARCHAR, home_result VARCHAR)
SELECT season FROM table_name_24 WHERE round = "2r" AND home_result = "0-0"
22,272
<question>: Home result of 1–0, and a Away result of 0–1 involves what club? <context>: CREATE TABLE table_name_56 (club VARCHAR, home_result VARCHAR, away_result VARCHAR)
SELECT club FROM table_name_56 WHERE home_result = "1–0" AND away_result = "0–1"
22,273
<question>: Round of 1r, and an away result of 7–1 is what season? <context>: CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)
SELECT season FROM table_name_65 WHERE round = "1r" AND away_result = "7–1"
22,274
<question>: Away result of 0–3, and a Season of 1969-70 is what competition? <context>: CREATE TABLE table_name_48 (competition VARCHAR, away_result VARCHAR, season VARCHAR)
SELECT competition FROM table_name_48 WHERE away_result = "0–3" AND season = "1969-70"
22,275
<question>: Away result of 1–1, and a Round of 1r, and a Season of 1967-68 involves what club? <context>: CREATE TABLE table_name_92 (club VARCHAR, season VARCHAR, away_result VARCHAR, round VARCHAR)
SELECT club FROM table_name_92 WHERE away_result = "1–1" AND round = "1r" AND season = "1967-68"
22,276
<question>: what was the nominee of best musical <context>: CREATE TABLE table_name_67 (nominee VARCHAR, category VARCHAR)
SELECT nominee FROM table_name_67 WHERE category = "best musical"
22,277
<question>: what year was michele assaf nominated <context>: CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)
SELECT year FROM table_name_60 WHERE nominee = "michele assaf"
22,278
<question>: What was the highest pick for a player from a school or club team of Arkansas? <context>: CREATE TABLE table_name_9 (pick INTEGER, school_club_team VARCHAR)
SELECT MAX(pick) FROM table_name_9 WHERE school_club_team = "arkansas"
22,279
<question>: How many Golds did Rank 10 get, with a Bronze larger than 2? <context>: CREATE TABLE table_name_99 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)
SELECT COUNT(gold) FROM table_name_99 WHERE rank = "10" AND bronze > 2
22,280
<question>: What rank is Turkmenistan, who had 0 silver's and Less than 2 golds? <context>: CREATE TABLE table_name_93 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)
SELECT rank FROM table_name_93 WHERE silver = 0 AND gold < 2 AND nation = "turkmenistan"
22,281
<question>: What's the biggest Bronze that has less than 0 Silvers? <context>: CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)
SELECT MAX(bronze) FROM table_name_73 WHERE silver < 0
22,282
<question>: What is the total Gold's less than 0? <context>: CREATE TABLE table_name_44 (total VARCHAR, gold INTEGER)
SELECT COUNT(total) FROM table_name_44 WHERE gold < 0
22,283
<question>: What city is the School, Highland, in that ranks less than 8 and had its first title before 1980 and its last title later than 1960? <context>: CREATE TABLE table_name_55 (city VARCHAR, school VARCHAR, last VARCHAR, rank VARCHAR, first VARCHAR)
SELECT city FROM table_name_55 WHERE rank < 8 AND first < 1980 AND last > 1960 AND school = "highland"
22,284
<question>: What city is the school that had less than 17 titles in boys basketball with the last title being after 2005? <context>: CREATE TABLE table_name_86 (city VARCHAR, sport VARCHAR, _number_of_titles VARCHAR, last VARCHAR)
SELECT city FROM table_name_86 WHERE _number_of_titles < 17 AND last > 2005 AND sport = "boys basketball"
22,285
<question>: What is the highest rank for the boys swimming team in Albuquerque? <context>: CREATE TABLE table_name_72 (rank INTEGER, sport VARCHAR, city VARCHAR)
SELECT MAX(rank) FROM table_name_72 WHERE sport = "boys swimming" AND city = "albuquerque"
22,286
<question>: What is the total rank number for Los Alamos' girls cross country? <context>: CREATE TABLE table_name_84 (rank VARCHAR, school VARCHAR, sport VARCHAR)
SELECT COUNT(rank) FROM table_name_84 WHERE school = "los alamos" AND sport = "girls cross country"
22,287
<question>: What capital has an S.Number under 7, and a Name of janapada of Punia? <context>: CREATE TABLE table_name_89 (capital VARCHAR, sno VARCHAR, name_of_janapada VARCHAR)
SELECT capital FROM table_name_89 WHERE sno < 7 AND name_of_janapada = "punia"
22,288
<question>: What king has an S. number over 1 and a number of villages of 600? <context>: CREATE TABLE table_name_54 (name_of_king VARCHAR, sno VARCHAR, no_of_villages VARCHAR)
SELECT name_of_king FROM table_name_54 WHERE sno > 1 AND no_of_villages = 600
22,289
<question>: What is the average number of villages with a name of janapada of Punia? <context>: CREATE TABLE table_name_86 (no_of_villages INTEGER, name_of_janapada VARCHAR)
SELECT AVG(no_of_villages) FROM table_name_86 WHERE name_of_janapada = "punia"
22,290
<question>: What is the highest S number with a capital of Shekhsar? <context>: CREATE TABLE table_name_5 (sno INTEGER, capital VARCHAR)
SELECT MAX(sno) FROM table_name_5 WHERE capital = "shekhsar"
22,291
<question>: What is the highest round number for the player who came from team Missouri? <context>: CREATE TABLE table_name_38 (round INTEGER, school_club_team VARCHAR)
SELECT MAX(round) FROM table_name_38 WHERE school_club_team = "missouri"
22,292
<question>: What is the total number of rounds that had draft pick 97, duncan mccoll? <context>: CREATE TABLE table_name_62 (round VARCHAR, player VARCHAR, pick VARCHAR)
SELECT COUNT(round) FROM table_name_62 WHERE player = "duncan mccoll" AND pick < 97
22,293
<question>: What opponent uses the method of decision and a 5-3 record? <context>: CREATE TABLE table_name_75 (opponent VARCHAR, method VARCHAR, record VARCHAR)
SELECT opponent FROM table_name_75 WHERE method = "decision" AND record = "5-3"
22,294
<question>: What round has the highest Res loss, and a time of 40:00? <context>: CREATE TABLE table_name_36 (round INTEGER, res VARCHAR, time VARCHAR)
SELECT MAX(round) FROM table_name_36 WHERE res = "loss" AND time = "40:00"
22,295
<question>: Who visited on April 29? <context>: CREATE TABLE table_name_35 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_35 WHERE date = "april 29"
22,296
<question>: When did Montreal visit and have a score of 1-4? <context>: CREATE TABLE table_name_47 (date VARCHAR, visitor VARCHAR, score VARCHAR)
SELECT date FROM table_name_47 WHERE visitor = "montreal" AND score = "1-4"
22,297
<question>: What was the score on April 25? <context>: CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_9 WHERE date = "april 25"
22,298
<question>: What was the score on May 3? <context>: CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_35 WHERE date = "may 3"
22,299
<question>: What is the School/Junior/Club Group (Association) that has a Round bigger than 6, and a Place of winger, and a Player of evgeny afanasiev? <context>: CREATE TABLE table_name_49 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_49 WHERE round > 6 AND position = "winger" AND player = "evgeny afanasiev"