question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Score of 2–3 ot on what date?
CREATE TABLE table_name_76 (date VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_76 WHERE score = \"2–3 ot\"" }
Opponent of @ edmonton oilers, and a Game smaller than 7, and a Series of oilers lead 3–2 had what score?
CREATE TABLE table_name_38 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_38 WHERE opponent = \"@ edmonton oilers\" AND game < 7 AND series = \"oilers lead 3–2\"" }
Opponent of @ edmonton oilers, and a Game larger than 1, and a Series of oilers lead 3–2 had what score?
CREATE TABLE table_name_30 (score VARCHAR, series VARCHAR, opponent VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_30 WHERE opponent = \"@ edmonton oilers\" AND game > 1 AND series = \"oilers lead 3–2\"" }
Series of oilers win 4–3 had what highest game?
CREATE TABLE table_name_6 (game INTEGER, series VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_name_6 WHERE series = \"oilers win 4–3\"" }
Which December has a Record of 4-3-6?
CREATE TABLE table_name_65 (december VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT december FROM table_name_65 WHERE record = \"4-3-6\"" }
Which Score has a December smaller than 14, and a Game of 12?
CREATE TABLE table_name_93 (score VARCHAR, december VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_93 WHERE december < 14 AND game = 12" }
Which Game is the highest one that has a Record of 4-3-6?
CREATE TABLE table_name_83 (game INTEGER, record VARCHAR)
{ "SQL_Query": "SELECT MAX(game) FROM table_name_83 WHERE record = \"4-3-6\"" }
Which Score has a Record of 18–11–5?
CREATE TABLE table_name_85 (score VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_85 WHERE record = \"18–11–5\"" }
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?
CREATE TABLE table_name_28 (score VARCHAR, record VARCHAR, december VARCHAR, game VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_28 WHERE game > 32 AND points < 42 AND december > 19 AND record = \"18–12–5\"" }
Which Score has Points of 36, and a Game of 30?
CREATE TABLE table_name_6 (score VARCHAR, points VARCHAR, game VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_6 WHERE points = 36 AND game = 30" }
Which Game has a Record of 14–10–4, and Points smaller than 32?
CREATE TABLE table_name_50 (game INTEGER, record VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT SUM(game) FROM table_name_50 WHERE record = \"14–10–4\" AND points < 32" }
Which Game has a Score of 4–1?
CREATE TABLE table_name_47 (game INTEGER, score VARCHAR)
{ "SQL_Query": "SELECT SUM(game) FROM table_name_47 WHERE score = \"4–1\"" }
Which celebrity was famous for being a rapper?
CREATE TABLE table_name_23 (celebrity VARCHAR, famous_for VARCHAR)
{ "SQL_Query": "SELECT celebrity FROM table_name_23 WHERE famous_for = \"rapper\"" }
What position did the celebrity finish that entered on day 1 and exited on day 19?
CREATE TABLE table_name_16 (finished VARCHAR, exited VARCHAR, entered VARCHAR)
{ "SQL_Query": "SELECT finished FROM table_name_16 WHERE exited = \"day 19\" AND entered = \"day 1\"" }
What was Dom Joly famous for?
CREATE TABLE table_name_32 (famous_for VARCHAR, celebrity VARCHAR)
{ "SQL_Query": "SELECT famous_for FROM table_name_32 WHERE celebrity = \"dom joly\"" }
What position did the celebrity finish that entered on day 1 and exited on day 15?
CREATE TABLE table_name_41 (finished VARCHAR, entered VARCHAR, exited VARCHAR)
{ "SQL_Query": "SELECT finished FROM table_name_41 WHERE entered = \"day 1\" AND exited = \"day 15\"" }
What celebrity is famous for being an actor?
CREATE TABLE table_name_84 (celebrity VARCHAR, famous_for VARCHAR)
{ "SQL_Query": "SELECT celebrity FROM table_name_84 WHERE famous_for = \"actor\"" }
Where did steve smith go to school?
CREATE TABLE table_name_53 (school_club_team VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT school_club_team FROM table_name_53 WHERE player = \"steve smith\"" }
What was the result associated with the cinemaa awards, and gabbar singh film?
CREATE TABLE table_name_93 (result VARCHAR, award VARCHAR, film VARCHAR)
{ "SQL_Query": "SELECT result FROM table_name_93 WHERE award = \"cinemaa awards\" AND film = \"gabbar singh\"" }
What was the award for the excellence in tamil category?
CREATE TABLE table_name_96 (award VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT award FROM table_name_96 WHERE category = \"excellence in tamil\"" }
Who is the composer of the song with a length of 6:24?
CREATE TABLE table_name_85 (composer_s_ VARCHAR, length VARCHAR)
{ "SQL_Query": "SELECT composer_s_ FROM table_name_85 WHERE length = \"6:24\"" }
What is the lengtho f track 16?
CREATE TABLE table_name_88 (length VARCHAR, track VARCHAR)
{ "SQL_Query": "SELECT length FROM table_name_88 WHERE track = \"16\"" }
How many new entries this round have clubs 2 → 1?
CREATE TABLE table_name_58 (new_entries_this_round VARCHAR, clubs VARCHAR)
{ "SQL_Query": "SELECT new_entries_this_round FROM table_name_58 WHERE clubs = \"2 → 1\"" }
What is the average for matches with a prize money amount of £3,000?
CREATE TABLE table_name_56 (matches INTEGER, prize_money VARCHAR)
{ "SQL_Query": "SELECT AVG(matches) FROM table_name_56 WHERE prize_money = \"£3,000\"" }
How many new entries this round are there with more than 16 matches and a third round qualifying?
CREATE TABLE table_name_90 (new_entries_this_round VARCHAR, matches VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT new_entries_this_round FROM table_name_90 WHERE matches > 16 AND round = \"third round qualifying\"" }
What are the clubs with 46 matches?
CREATE TABLE table_name_57 (clubs VARCHAR, matches VARCHAR)
{ "SQL_Query": "SELECT clubs FROM table_name_57 WHERE matches = 46" }
What High School with a nickname of S Eagle has a Division of crest?
CREATE TABLE table_name_17 (high_school VARCHAR, division VARCHAR, nickname VARCHAR)
{ "SQL_Query": "SELECT high_school FROM table_name_17 WHERE division = \"crest\" AND nickname = \"s eagle\"" }
What is the affiliation of a location called Issaquah?
CREATE TABLE table_name_51 (affiliation VARCHAR, location VARCHAR)
{ "SQL_Query": "SELECT affiliation FROM table_name_51 WHERE location = \"issaquah\"" }
What is the affiliation of a high school in Issaquah that was founded in less than 1965?
CREATE TABLE table_name_37 (affiliation VARCHAR, founded VARCHAR, high_school VARCHAR)
{ "SQL_Query": "SELECT affiliation FROM table_name_37 WHERE founded < 1965 AND high_school = \"issaquah\"" }
Which Venue has a Competition of pl group b, and a Score of 2-2?
CREATE TABLE table_name_82 (venue VARCHAR, competition VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT venue FROM table_name_82 WHERE competition = \"pl group b\" AND score = \"2-2\"" }
Which Competition has a Score of 0-1, and Opponents of pkns fc?
CREATE TABLE table_name_33 (competition VARCHAR, score VARCHAR, opponents VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_33 WHERE score = \"0-1\" AND opponents = \"pkns fc\"" }
Who competed on may 6, 2006?
CREATE TABLE table_name_50 (opponents VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT opponents FROM table_name_50 WHERE date = \"may 6, 2006\"" }
Which Score has Opponents of pkns fc, and a Date of january 8, 2006?
CREATE TABLE table_name_35 (score VARCHAR, opponents VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_35 WHERE opponents = \"pkns fc\" AND date = \"january 8, 2006\"" }
Which Date has a Competition of pl group b, and Opponents of police, and a Venue of selayang municipal council stadium?
CREATE TABLE table_name_52 (date VARCHAR, venue VARCHAR, competition VARCHAR, opponents VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_52 WHERE competition = \"pl group b\" AND opponents = \"police\" AND venue = \"selayang municipal council stadium\"" }
Which Competition has Opponents of pkns fc, and a Score of 0-0?
CREATE TABLE table_name_38 (competition VARCHAR, opponents VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_38 WHERE opponents = \"pkns fc\" AND score = \"0-0\"" }
How many people attended the game at the miami orange bowl?
CREATE TABLE table_name_49 (attendance INTEGER, game_site VARCHAR)
{ "SQL_Query": "SELECT SUM(attendance) FROM table_name_49 WHERE game_site = \"miami orange bowl\"" }
What was the attendance at game with a loss of Josh Hall (0–1)?
CREATE TABLE table_name_11 (attendance VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_11 WHERE loss = \"josh hall (0–1)\"" }
What was the score of the game that had a loss of Chad Fox (3–3)?
CREATE TABLE table_name_68 (score VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_68 WHERE loss = \"chad fox (3–3)\"" }
What's the attendance of the game where there was a Loss of Yates (3-2)?
CREATE TABLE table_name_37 (attendance VARCHAR, loss VARCHAR)
{ "SQL_Query": "SELECT attendance FROM table_name_37 WHERE loss = \"yates (3-2)\"" }
What's the latest keynote version of version 2.3 of numbers with pages greater than 4.3?
CREATE TABLE table_name_18 (keynote_version INTEGER, numbers_version VARCHAR, pages_version VARCHAR)
{ "SQL_Query": "SELECT MAX(keynote_version) FROM table_name_18 WHERE numbers_version = \"2.3\" AND pages_version > 4.3" }
What version of iWork was released on October 22, 2013 with a pages version greater than 2?
CREATE TABLE table_name_44 (iwork_version VARCHAR, release_date VARCHAR, pages_version VARCHAR)
{ "SQL_Query": "SELECT iwork_version FROM table_name_44 WHERE release_date = \"october 22, 2013\" AND pages_version > 2" }
Which Rank is the lowest one that has Points larger than 52, and a Year larger than 1970?
CREATE TABLE table_name_9 (rank INTEGER, points VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT MIN(rank) FROM table_name_9 WHERE points > 52 AND year > 1970" }
Which opponent has a game larger than 61, february smaller than 28, and fewer points than 69?
CREATE TABLE table_name_73 (opponent VARCHAR, points VARCHAR, game VARCHAR, february VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_73 WHERE game > 61 AND february < 28 AND points < 69" }
How many games have a record of 30–25–9 and more points than 69?
CREATE TABLE table_name_86 (game VARCHAR, record VARCHAR, points VARCHAR)
{ "SQL_Query": "SELECT COUNT(game) FROM table_name_86 WHERE record = \"30–25–9\" AND points > 69" }
How many february games had a record of 29–24–9?
CREATE TABLE table_name_62 (february INTEGER, record VARCHAR)
{ "SQL_Query": "SELECT AVG(february) FROM table_name_62 WHERE record = \"29–24–9\"" }
What numbered pick was the player from texas?
CREATE TABLE table_name_85 (pick__number VARCHAR, college VARCHAR)
{ "SQL_Query": "SELECT COUNT(pick__number) FROM table_name_85 WHERE college = \"texas\"" }
What is the conference record for the year of 1971?
CREATE TABLE table_name_7 (conference_record VARCHAR, year VARCHAR)
{ "SQL_Query": "SELECT conference_record FROM table_name_7 WHERE year = \"1971\"" }
When first elected was 2006, who was the delegate?
CREATE TABLE table_name_99 (delegate VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT delegate FROM table_name_99 WHERE first_elected = 2006" }
Which was the district that had first elected greater than 2006 and is democratic?
CREATE TABLE table_name_51 (district VARCHAR, party VARCHAR, first_elected VARCHAR)
{ "SQL_Query": "SELECT district FROM table_name_51 WHERE party = \"democratic\" AND first_elected > 2006" }
Name the score for game more than 6 and before october 28
CREATE TABLE table_name_67 (score VARCHAR, game VARCHAR, october VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_67 WHERE game > 6 AND october < 28" }
Name the least game for october 21
CREATE TABLE table_name_42 (game INTEGER, october VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_name_42 WHERE october = 21" }
Name the least game for record of 5-1-3
CREATE TABLE table_name_93 (game INTEGER, record VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_name_93 WHERE record = \"5-1-3\"" }
Name the most october for game less than 1
CREATE TABLE table_name_19 (october INTEGER, game INTEGER)
{ "SQL_Query": "SELECT MAX(october) FROM table_name_19 WHERE game < 1" }
Name the least game for record of 1-0-2
CREATE TABLE table_name_24 (game INTEGER, record VARCHAR)
{ "SQL_Query": "SELECT MIN(game) FROM table_name_24 WHERE record = \"1-0-2\"" }
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?
CREATE TABLE table_name_44 (bronze INTEGER, total VARCHAR, rank VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT MAX(bronze) FROM table_name_44 WHERE rank > 1 AND nation = \"dominican republic\" AND total > 4" }
Which Total is the lowest one that has a Rank smaller than 1?
CREATE TABLE table_name_47 (total INTEGER, rank INTEGER)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_47 WHERE rank < 1" }
Which Total is the lowest one that has a Rank smaller than 2, and a Silver smaller than 15?
CREATE TABLE table_name_23 (total INTEGER, rank VARCHAR, silver VARCHAR)
{ "SQL_Query": "SELECT MIN(total) FROM table_name_23 WHERE rank < 2 AND silver < 15" }
Which Silver has a Gold of 2, and a Nation of puerto rico, and a Total smaller than 12?
CREATE TABLE table_name_71 (silver INTEGER, total VARCHAR, gold VARCHAR, nation VARCHAR)
{ "SQL_Query": "SELECT SUM(silver) FROM table_name_71 WHERE gold = 2 AND nation = \"puerto rico\" AND total < 12" }
Album of les mots had what lowest year?
CREATE TABLE table_name_18 (year INTEGER, album VARCHAR)
{ "SQL_Query": "SELECT MIN(year) FROM table_name_18 WHERE album = \"les mots\"" }
What team has 2000-01 as the season?
CREATE TABLE table_name_67 (team VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT team FROM table_name_67 WHERE season = \"2000-01\"" }
What season has a number less than 90, Mitte as the league and spvgg ruhmannsfelden as the team?
CREATE TABLE table_name_95 (season VARCHAR, team VARCHAR, number VARCHAR, league VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_95 WHERE number < 90 AND league = \"mitte\" AND team = \"spvgg ruhmannsfelden\"" }
What league has a number less than 122, and least wins as the record?
CREATE TABLE table_name_38 (league VARCHAR, number VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT league FROM table_name_38 WHERE number < 122 AND record = \"least wins\"" }
What league has most wins as the record?
CREATE TABLE table_name_77 (league VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT league FROM table_name_77 WHERE record = \"most wins\"" }
What league has a number less than 1?
CREATE TABLE table_name_11 (league VARCHAR, number INTEGER)
{ "SQL_Query": "SELECT league FROM table_name_11 WHERE number < 1" }
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?
CREATE TABLE table_name_99 (nominated_by_the_taoiseach INTEGER, total VARCHAR, cultural_and_educational_panel VARCHAR, industrial_and_commercial_panel VARCHAR, administrative_panel VARCHAR)
{ "SQL_Query": "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" }
What is the average administrative panel of the composition nominated by Taoiseach 0 times with a total less than 4?
CREATE TABLE table_name_36 (administrative_panel INTEGER, nominated_by_the_taoiseach VARCHAR, total VARCHAR)
{ "SQL_Query": "SELECT AVG(administrative_panel) FROM table_name_36 WHERE nominated_by_the_taoiseach = 0 AND total < 4" }
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?
CREATE TABLE table_name_11 (nominated_by_the_taoiseach INTEGER, administrative_panel VARCHAR, industrial_and_commercial_panel VARCHAR)
{ "SQL_Query": "SELECT MAX(nominated_by_the_taoiseach) FROM table_name_11 WHERE administrative_panel > 0 AND industrial_and_commercial_panel < 1" }
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?
CREATE TABLE table_name_62 (agricultural_panel INTEGER, total VARCHAR, labour_panel VARCHAR, nominated_by_the_taoiseach VARCHAR)
{ "SQL_Query": "SELECT AVG(agricultural_panel) FROM table_name_62 WHERE labour_panel < 6 AND nominated_by_the_taoiseach > 0 AND total < 4" }
What is the total number of agriculatural panels of the composition with more than 3 National Universities of Ireland?
CREATE TABLE table_name_59 (agricultural_panel VARCHAR, national_university_of_ireland INTEGER)
{ "SQL_Query": "SELECT COUNT(agricultural_panel) FROM table_name_59 WHERE national_university_of_ireland > 3" }
What was the attendance on September 28?
CREATE TABLE table_name_92 (attendance INTEGER, date VARCHAR)
{ "SQL_Query": "SELECT MAX(attendance) FROM table_name_92 WHERE date = \"september 28\"" }
Away result of 1-2 has what season?
CREATE TABLE table_name_95 (season VARCHAR, away_result VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_95 WHERE away_result = \"1-2\"" }
Round of 2r, and a Home result of 0-0 has what season?
CREATE TABLE table_name_24 (season VARCHAR, round VARCHAR, home_result VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_24 WHERE round = \"2r\" AND home_result = \"0-0\"" }
Home result of 1–0, and a Away result of 0–1 involves what club?
CREATE TABLE table_name_56 (club VARCHAR, home_result VARCHAR, away_result VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_56 WHERE home_result = \"1–0\" AND away_result = \"0–1\"" }
Round of 1r, and an away result of 7–1 is what season?
CREATE TABLE table_name_65 (season VARCHAR, round VARCHAR, away_result VARCHAR)
{ "SQL_Query": "SELECT season FROM table_name_65 WHERE round = \"1r\" AND away_result = \"7–1\"" }
Away result of 0–3, and a Season of 1969-70 is what competition?
CREATE TABLE table_name_48 (competition VARCHAR, away_result VARCHAR, season VARCHAR)
{ "SQL_Query": "SELECT competition FROM table_name_48 WHERE away_result = \"0–3\" AND season = \"1969-70\"" }
Away result of 1–1, and a Round of 1r, and a Season of 1967-68 involves what club?
CREATE TABLE table_name_92 (club VARCHAR, season VARCHAR, away_result VARCHAR, round VARCHAR)
{ "SQL_Query": "SELECT club FROM table_name_92 WHERE away_result = \"1–1\" AND round = \"1r\" AND season = \"1967-68\"" }
what was the nominee of best musical
CREATE TABLE table_name_67 (nominee VARCHAR, category VARCHAR)
{ "SQL_Query": "SELECT nominee FROM table_name_67 WHERE category = \"best musical\"" }
what year was michele assaf nominated
CREATE TABLE table_name_60 (year VARCHAR, nominee VARCHAR)
{ "SQL_Query": "SELECT year FROM table_name_60 WHERE nominee = \"michele assaf\"" }
What was the highest pick for a player from a school or club team of Arkansas?
CREATE TABLE table_name_9 (pick INTEGER, school_club_team VARCHAR)
{ "SQL_Query": "SELECT MAX(pick) FROM table_name_9 WHERE school_club_team = \"arkansas\"" }
How many Golds did Rank 10 get, with a Bronze larger than 2?
CREATE TABLE table_name_99 (gold VARCHAR, rank VARCHAR, bronze VARCHAR)
{ "SQL_Query": "SELECT COUNT(gold) FROM table_name_99 WHERE rank = \"10\" AND bronze > 2" }
What rank is Turkmenistan, who had 0 silver's and Less than 2 golds?
CREATE TABLE table_name_93 (rank VARCHAR, nation VARCHAR, silver VARCHAR, gold VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_93 WHERE silver = 0 AND gold < 2 AND nation = \"turkmenistan\"" }
What's the biggest Bronze that has less than 0 Silvers?
CREATE TABLE table_name_73 (bronze INTEGER, silver INTEGER)
{ "SQL_Query": "SELECT MAX(bronze) FROM table_name_73 WHERE silver < 0" }
What is the total Gold's less than 0?
CREATE TABLE table_name_44 (total VARCHAR, gold INTEGER)
{ "SQL_Query": "SELECT COUNT(total) FROM table_name_44 WHERE gold < 0" }
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?
CREATE TABLE table_name_55 (city VARCHAR, school VARCHAR, last VARCHAR, rank VARCHAR, first VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_55 WHERE rank < 8 AND first < 1980 AND last > 1960 AND school = \"highland\"" }
What city is the school that had less than 17 titles in boys basketball with the last title being after 2005?
CREATE TABLE table_name_86 (city VARCHAR, sport VARCHAR, _number_of_titles VARCHAR, last VARCHAR)
{ "SQL_Query": "SELECT city FROM table_name_86 WHERE _number_of_titles < 17 AND last > 2005 AND sport = \"boys basketball\"" }
What is the highest rank for the boys swimming team in Albuquerque?
CREATE TABLE table_name_72 (rank INTEGER, sport VARCHAR, city VARCHAR)
{ "SQL_Query": "SELECT MAX(rank) FROM table_name_72 WHERE sport = \"boys swimming\" AND city = \"albuquerque\"" }
What is the total rank number for Los Alamos' girls cross country?
CREATE TABLE table_name_84 (rank VARCHAR, school VARCHAR, sport VARCHAR)
{ "SQL_Query": "SELECT COUNT(rank) FROM table_name_84 WHERE school = \"los alamos\" AND sport = \"girls cross country\"" }
What capital has an S.Number under 7, and a Name of janapada of Punia?
CREATE TABLE table_name_89 (capital VARCHAR, sno VARCHAR, name_of_janapada VARCHAR)
{ "SQL_Query": "SELECT capital FROM table_name_89 WHERE sno < 7 AND name_of_janapada = \"punia\"" }
What king has an S. number over 1 and a number of villages of 600?
CREATE TABLE table_name_54 (name_of_king VARCHAR, sno VARCHAR, no_of_villages VARCHAR)
{ "SQL_Query": "SELECT name_of_king FROM table_name_54 WHERE sno > 1 AND no_of_villages = 600" }
What is the average number of villages with a name of janapada of Punia?
CREATE TABLE table_name_86 (no_of_villages INTEGER, name_of_janapada VARCHAR)
{ "SQL_Query": "SELECT AVG(no_of_villages) FROM table_name_86 WHERE name_of_janapada = \"punia\"" }
What is the highest S number with a capital of Shekhsar?
CREATE TABLE table_name_5 (sno INTEGER, capital VARCHAR)
{ "SQL_Query": "SELECT MAX(sno) FROM table_name_5 WHERE capital = \"shekhsar\"" }
What is the highest round number for the player who came from team Missouri?
CREATE TABLE table_name_38 (round INTEGER, school_club_team VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_38 WHERE school_club_team = \"missouri\"" }
What is the total number of rounds that had draft pick 97, duncan mccoll?
CREATE TABLE table_name_62 (round VARCHAR, player VARCHAR, pick VARCHAR)
{ "SQL_Query": "SELECT COUNT(round) FROM table_name_62 WHERE player = \"duncan mccoll\" AND pick < 97" }
What opponent uses the method of decision and a 5-3 record?
CREATE TABLE table_name_75 (opponent VARCHAR, method VARCHAR, record VARCHAR)
{ "SQL_Query": "SELECT opponent FROM table_name_75 WHERE method = \"decision\" AND record = \"5-3\"" }
What round has the highest Res loss, and a time of 40:00?
CREATE TABLE table_name_36 (round INTEGER, res VARCHAR, time VARCHAR)
{ "SQL_Query": "SELECT MAX(round) FROM table_name_36 WHERE res = \"loss\" AND time = \"40:00\"" }
Who visited on April 29?
CREATE TABLE table_name_35 (visitor VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT visitor FROM table_name_35 WHERE date = \"april 29\"" }
When did Montreal visit and have a score of 1-4?
CREATE TABLE table_name_47 (date VARCHAR, visitor VARCHAR, score VARCHAR)
{ "SQL_Query": "SELECT date FROM table_name_47 WHERE visitor = \"montreal\" AND score = \"1-4\"" }
What was the score on April 25?
CREATE TABLE table_name_9 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_9 WHERE date = \"april 25\"" }
What was the score on May 3?
CREATE TABLE table_name_35 (score VARCHAR, date VARCHAR)
{ "SQL_Query": "SELECT score FROM table_name_35 WHERE date = \"may 3\"" }
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?
CREATE TABLE table_name_49 (college_junior_club_team__league_ VARCHAR, player VARCHAR, round VARCHAR, position VARCHAR)
{ "SQL_Query": "SELECT college_junior_club_team__league_ FROM table_name_49 WHERE round > 6 AND position = \"winger\" AND player = \"evgeny afanasiev\"" }