Unnamed: 0
int64 0
60k
| input
stringlengths 76
562
| answer
stringlengths 18
557
|
---|---|---|
44,600 | <question>: what's the points total when points against was points against? <context>: CREATE TABLE table_name_8 (points_for VARCHAR, points_against VARCHAR) | SELECT points_for FROM table_name_8 WHERE points_against = "points against" |
44,601 | <question>: when points were 36 and points against 489 what is the lost? <context>: CREATE TABLE table_name_58 (lost VARCHAR, points VARCHAR, points_against VARCHAR) | SELECT lost FROM table_name_58 WHERE points = "36" AND points_against = "489" |
44,602 | <question>: when points against was 387 what was the lost? <context>: CREATE TABLE table_name_8 (lost VARCHAR, points_against VARCHAR) | SELECT lost FROM table_name_8 WHERE points_against = "387" |
44,603 | <question>: when points for was points for what was the points? <context>: CREATE TABLE table_name_86 (points VARCHAR, points_for VARCHAR) | SELECT points FROM table_name_86 WHERE points_for = "points for" |
44,604 | <question>: What was 1948's pick? <context>: CREATE TABLE table_name_72 (pick VARCHAR, year VARCHAR) | SELECT pick FROM table_name_72 WHERE year = 1948 |
44,605 | <question>: What was the pick in 2004? <context>: CREATE TABLE table_name_24 (pick VARCHAR, year VARCHAR) | SELECT pick FROM table_name_24 WHERE year = 2004 |
44,606 | <question>: How many years have a Pick of 12, and a Position of dt, and a College of penn state? <context>: CREATE TABLE table_name_20 (year VARCHAR, college VARCHAR, pick VARCHAR, position VARCHAR) | SELECT COUNT(year) FROM table_name_20 WHERE pick = "12" AND position = "dt" AND college = "penn state" |
44,607 | <question>: What is the scoring average where the wins are 0? <context>: CREATE TABLE table_name_56 (scoring_average VARCHAR, wins INTEGER) | SELECT COUNT(scoring_average) FROM table_name_56 WHERE wins < 0 |
44,608 | <question>: What year has earnings of $557,158? <context>: CREATE TABLE table_name_25 (year INTEGER, earnings__$_ VARCHAR) | SELECT MAX(year) FROM table_name_25 WHERE earnings__$_ = "557,158" |
44,609 | <question>: Which Points have an Opponent of @ florida panthers, and a Game larger than 58? <context>: CREATE TABLE table_name_17 (points INTEGER, opponent VARCHAR, game VARCHAR) | SELECT MIN(points) FROM table_name_17 WHERE opponent = "@ florida panthers" AND game > 58 |
44,610 | <question>: Which February has a Game of 64? <context>: CREATE TABLE table_name_77 (february INTEGER, game VARCHAR) | SELECT AVG(february) FROM table_name_77 WHERE game = 64 |
44,611 | <question>: Which Points have a Game smaller than 60, and a Score of 2–0, and a February larger than 1? <context>: CREATE TABLE table_name_99 (points INTEGER, february VARCHAR, game VARCHAR, score VARCHAR) | SELECT AVG(points) FROM table_name_99 WHERE game < 60 AND score = "2–0" AND february > 1 |
44,612 | <question>: Which Game is the highest one that has a February of 25? <context>: CREATE TABLE table_name_96 (game INTEGER, february VARCHAR) | SELECT MAX(game) FROM table_name_96 WHERE february = 25 |
44,613 | <question>: Which Game is the highest one that has a Score of 3–4 ot, and Points larger than 75? <context>: CREATE TABLE table_name_96 (game INTEGER, score VARCHAR, points VARCHAR) | SELECT MAX(game) FROM table_name_96 WHERE score = "3–4 ot" AND points > 75 |
44,614 | <question>: How much February has a Score of 5–2, and Points of 70? <context>: CREATE TABLE table_name_44 (february VARCHAR, score VARCHAR, points VARCHAR) | SELECT COUNT(february) FROM table_name_44 WHERE score = "5–2" AND points = 70 |
44,615 | <question>: Which result happened more recently than week 2, and had a date of November 30, 1958? <context>: CREATE TABLE table_name_98 (result VARCHAR, week VARCHAR, date VARCHAR) | SELECT result FROM table_name_98 WHERE week > 2 AND date = "november 30, 1958" |
44,616 | <question>: what album is 4:30 long <context>: CREATE TABLE table_name_95 (album VARCHAR, length VARCHAR) | SELECT album FROM table_name_95 WHERE length = "4:30" |
44,617 | <question>: What is the Head Coach of Novy Urengoy? <context>: CREATE TABLE table_name_43 (head_coach VARCHAR, town VARCHAR) | SELECT head_coach FROM table_name_43 WHERE town = "novy urengoy" |
44,618 | <question>: What is the Arena o Kazan? <context>: CREATE TABLE table_name_19 (arena__capacity_ VARCHAR, town VARCHAR) | SELECT arena__capacity_ FROM table_name_19 WHERE town = "kazan" |
44,619 | <question>: What is the Website of Head Coach Yuriy Korotkevich? <context>: CREATE TABLE table_name_49 (website VARCHAR, head_coach VARCHAR) | SELECT website FROM table_name_49 WHERE head_coach = "yuriy korotkevich" |
44,620 | <question>: Opponents of sebastián decoud santiago giraldo had what surface? <context>: CREATE TABLE table_name_71 (surface VARCHAR, opponents VARCHAR) | SELECT surface FROM table_name_71 WHERE opponents = "sebastián decoud santiago giraldo" |
44,621 | <question>: Partnering of franco ferreiro had what tournament? <context>: CREATE TABLE table_name_20 (tournament VARCHAR, partnering VARCHAR) | SELECT tournament FROM table_name_20 WHERE partnering = "franco ferreiro" |
44,622 | <question>: Date of april 10, 2006 had what surface? <context>: CREATE TABLE table_name_51 (surface VARCHAR, date VARCHAR) | SELECT surface FROM table_name_51 WHERE date = "april 10, 2006" |
44,623 | <question>: Surface of clay, and a Partnering of júlio silva had what score? <context>: CREATE TABLE table_name_69 (score VARCHAR, surface VARCHAR, partnering VARCHAR) | SELECT score FROM table_name_69 WHERE surface = "clay" AND partnering = "júlio silva" |
44,624 | <question>: Date of november 3, 2008 had what score? <context>: CREATE TABLE table_name_15 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_15 WHERE date = "november 3, 2008" |
44,625 | <question>: Which Points have a Name of denis kornilov? <context>: CREATE TABLE table_name_69 (points INTEGER, name VARCHAR) | SELECT AVG(points) FROM table_name_69 WHERE name = "denis kornilov" |
44,626 | <question>: Which Rank that a Name of thomas morgenstern, and Points larger than 288.7? <context>: CREATE TABLE table_name_29 (rank INTEGER, name VARCHAR, points VARCHAR) | SELECT SUM(rank) FROM table_name_29 WHERE name = "thomas morgenstern" AND points > 288.7 |
44,627 | <question>: What is the overall number for Louisiana Tech college, and a pick more than 10? <context>: CREATE TABLE table_name_59 (overall INTEGER, college VARCHAR, pick__number VARCHAR) | SELECT SUM(overall) FROM table_name_59 WHERE college = "louisiana tech" AND pick__number > 10 |
44,628 | <question>: What was the pick number for Deji Karim, in a round lower than 6? <context>: CREATE TABLE table_name_66 (pick__number INTEGER, name VARCHAR, round VARCHAR) | SELECT AVG(pick__number) FROM table_name_66 WHERE name = "deji karim" AND round < 6 |
44,629 | <question>: Which college had an overall number more than 180? <context>: CREATE TABLE table_name_39 (college VARCHAR, overall INTEGER) | SELECT college FROM table_name_39 WHERE overall > 180 |
44,630 | <question>: What is the overall number for a pick of #10, from Louisiana Tech, and a round bigger than 3? <context>: CREATE TABLE table_name_99 (overall INTEGER, round VARCHAR, pick__number VARCHAR, college VARCHAR) | SELECT SUM(overall) FROM table_name_99 WHERE pick__number = 10 AND college = "louisiana tech" AND round > 3 |
44,631 | <question>: What's the Pick average that has a School/Club Team of Alabama, with a Round that's smaller than 9? <context>: CREATE TABLE table_name_22 (pick INTEGER, school_club_team VARCHAR, round VARCHAR) | SELECT AVG(pick) FROM table_name_22 WHERE school_club_team = "alabama" AND round < 9 |
44,632 | <question>: What's the sum of the Pick that has the Player of Robert Ingalls? <context>: CREATE TABLE table_name_47 (pick VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_47 WHERE player = "robert ingalls" |
44,633 | <question>: What's the sum of the Pick that has the Position of Tackle, the Player Woody Adams, and a Round that's larger than 22? <context>: CREATE TABLE table_name_69 (pick VARCHAR, round VARCHAR, position VARCHAR, player VARCHAR) | SELECT COUNT(pick) FROM table_name_69 WHERE position = "tackle" AND player = "woody adams" AND round > 22 |
44,634 | <question>: What Position has a Round that's larger than 21? <context>: CREATE TABLE table_name_86 (position VARCHAR, round INTEGER) | SELECT position FROM table_name_86 WHERE round > 21 |
44,635 | <question>: What is the sum of the Europe totals for players with other appearances of 0, league appearances under 328, and a position of MF? <context>: CREATE TABLE table_name_72 (europe INTEGER, position VARCHAR, others VARCHAR, league VARCHAR) | SELECT SUM(europe) FROM table_name_72 WHERE others = 0 AND league < 328 AND position = "mf" |
44,636 | <question>: Occupational pensions of 7%, and a Working tax credit of 2%, and a Other social security benefits of 6% has what investment income? <context>: CREATE TABLE table_name_39 (investment_income VARCHAR, other_social_security_benefits VARCHAR, occupational_pensions VARCHAR, working_tax_credit VARCHAR) | SELECT investment_income FROM table_name_39 WHERE occupational_pensions = "7%" AND working_tax_credit = "2%" AND other_social_security_benefits = "6%" |
44,637 | <question>: Region of eastern england has what investment income? <context>: CREATE TABLE table_name_30 (investment_income VARCHAR, region VARCHAR) | SELECT investment_income FROM table_name_30 WHERE region = "eastern england" |
44,638 | <question>: State pensions of 7%, and a Self employed of 7%, and a Other income sources of 2% has what investment income? <context>: CREATE TABLE table_name_67 (investment_income VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR, self_employed VARCHAR) | SELECT investment_income FROM table_name_67 WHERE state_pensions = "7%" AND self_employed = "7%" AND other_income_sources = "2%" |
44,639 | <question>: Other income sources of 2%, and a State pensions of 7%, and a Working tax credit of 2%, and a Employment ( salaries & wages) of 66% has what occupational pensions? <context>: CREATE TABLE table_name_34 (occupational_pensions VARCHAR, working_tax_credit VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR, other_income_sources VARCHAR, state_pensions VARCHAR) | SELECT occupational_pensions FROM table_name_34 WHERE other_income_sources = "2%" AND state_pensions = "7%" AND working_tax_credit = "2%" AND employment___salaries_ & _wages_ = "66%" |
44,640 | <question>: Investment income of 2%, and an other income sources of 3%, and an employment (salaries & wages) of 71% involves which self employed? <context>: CREATE TABLE table_name_15 (self_employed VARCHAR, investment_income VARCHAR, other_income_sources VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR) | SELECT self_employed FROM table_name_15 WHERE investment_income = "2%" AND other_income_sources = "3%" AND employment___salaries_ & _wages_ = "71%" |
44,641 | <question>: Employment ( salaries & wages) of 64%, and a Occupational pensions of 6% has what working tax credit? <context>: CREATE TABLE table_name_20 (working_tax_credit VARCHAR, occupational_pensions VARCHAR, employment___salaries_ VARCHAR, _wages_ VARCHAR) | SELECT working_tax_credit FROM table_name_20 WHERE employment___salaries_ & _wages_ = "64%" AND occupational_pensions = "6%" |
44,642 | <question>: How many Drawn is which has a Games smaller than 6? <context>: CREATE TABLE table_name_61 (drawn INTEGER, games INTEGER) | SELECT SUM(drawn) FROM table_name_61 WHERE games < 6 |
44,643 | <question>: What is the Points that has 61 - 15 Point difference and a Drawn larger than 1? <context>: CREATE TABLE table_name_80 (points INTEGER, points_difference VARCHAR, drawn VARCHAR) | SELECT AVG(points) FROM table_name_80 WHERE points_difference = "61 - 15" AND drawn > 1 |
44,644 | <question>: How many Drawn has a Games larger than 6? <context>: CREATE TABLE table_name_32 (drawn INTEGER, games INTEGER) | SELECT SUM(drawn) FROM table_name_32 WHERE games > 6 |
44,645 | <question>: What is the smallest electorate with 78,076 quota and less than 13 candidates? <context>: CREATE TABLE table_name_45 (electorate INTEGER, quota VARCHAR, candidates VARCHAR) | SELECT MIN(electorate) FROM table_name_45 WHERE quota = "78,076" AND candidates < 13 |
44,646 | <question>: What is the turnout with 15 candidates and more than 377,591 valid poll? <context>: CREATE TABLE table_name_81 (turnout VARCHAR, candidates VARCHAR, valid_poll VARCHAR) | SELECT turnout FROM table_name_81 WHERE candidates = 15 AND valid_poll > 377 OFFSET 591 |
44,647 | <question>: What country is ranked 79? <context>: CREATE TABLE table_name_19 (country VARCHAR, rank VARCHAR) | SELECT country FROM table_name_19 WHERE rank = 79 |
44,648 | <question>: What is the lowest rank for an album after 1999 and an Accolade of the 100 greatest indie rock albums of all time? <context>: CREATE TABLE table_name_67 (rank INTEGER, year VARCHAR, accolade VARCHAR) | SELECT MIN(rank) FROM table_name_67 WHERE year > 1999 AND accolade = "the 100 greatest indie rock albums of all time" |
44,649 | <question>: Which Week is on sunday november 28? <context>: CREATE TABLE table_name_32 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_32 WHERE date = "sunday november 28" |
44,650 | <question>: How many weeks have an Opponent of at new york giants? <context>: CREATE TABLE table_name_81 (week VARCHAR, opponent VARCHAR) | SELECT COUNT(week) FROM table_name_81 WHERE opponent = "at new york giants" |
44,651 | <question>: When is the Opponent of new england patriots? <context>: CREATE TABLE table_name_3 (time___et__ VARCHAR, opponent VARCHAR) | SELECT time___et__ FROM table_name_3 WHERE opponent = "new england patriots" |
44,652 | <question>: Which week has a Result of w 23–6? <context>: CREATE TABLE table_name_79 (week VARCHAR, result VARCHAR) | SELECT week FROM table_name_79 WHERE result = "w 23–6" |
44,653 | <question>: How many people did Mayor Olav Martin Vik preside over? <context>: CREATE TABLE table_name_87 (innhabitants INTEGER, mayor VARCHAR) | SELECT AVG(innhabitants) FROM table_name_87 WHERE mayor = "olav martin vik" |
44,654 | <question>: What's the area of askøy, with a Municipal code less than 1247? <context>: CREATE TABLE table_name_34 (area INTEGER, name VARCHAR, municipal_code VARCHAR) | SELECT SUM(area) FROM table_name_34 WHERE name = "askøy" AND municipal_code < 1247 |
44,655 | <question>: What Mayor is from the KRF Party? <context>: CREATE TABLE table_name_97 (mayor VARCHAR, party VARCHAR) | SELECT mayor FROM table_name_97 WHERE party = "krf" |
44,656 | <question>: What's the Municipal code of the FRP Party with an area of 100? <context>: CREATE TABLE table_name_35 (municipal_code INTEGER, party VARCHAR, area VARCHAR) | SELECT SUM(municipal_code) FROM table_name_35 WHERE party = "frp" AND area = 100 |
44,657 | <question>: How many people does the KRF Party preside over? <context>: CREATE TABLE table_name_51 (innhabitants INTEGER, party VARCHAR) | SELECT AVG(innhabitants) FROM table_name_51 WHERE party = "krf" |
44,658 | <question>: What is the total number of overall draft picks for player whose position is C and was picked after round 9? <context>: CREATE TABLE table_name_63 (overall VARCHAR, position VARCHAR, round VARCHAR) | SELECT COUNT(overall) FROM table_name_63 WHERE position = "c" AND round > 9 |
44,659 | <question>: What position was Jafus White who was picked after round 1? <context>: CREATE TABLE table_name_87 (position VARCHAR, round VARCHAR, player VARCHAR) | SELECT position FROM table_name_87 WHERE round > 1 AND player = "jafus white" |
44,660 | <question>: What is the total number of overall draft picks for Fred Nixon? <context>: CREATE TABLE table_name_37 (overall VARCHAR, player VARCHAR) | SELECT COUNT(overall) FROM table_name_37 WHERE player = "fred nixon" |
44,661 | <question>: Who is the athlete who was picked before round 9, had an overall draft pick after number 143 and plays the position of db? <context>: CREATE TABLE table_name_23 (player VARCHAR, position VARCHAR, round VARCHAR, overall VARCHAR) | SELECT player FROM table_name_23 WHERE round < 9 AND overall > 143 AND position = "db" |
44,662 | <question>: What is the highest round of the player with an overall of 152? <context>: CREATE TABLE table_name_38 (round INTEGER, overall VARCHAR) | SELECT MAX(round) FROM table_name_38 WHERE overall = 152 |
44,663 | <question>: What is the average round of the defensive back player with a pick # greater than 5 and an overall less than 152? <context>: CREATE TABLE table_name_87 (round INTEGER, overall VARCHAR, pick__number VARCHAR, position VARCHAR) | SELECT AVG(round) FROM table_name_87 WHERE pick__number > 5 AND position = "defensive back" AND overall < 152 |
44,664 | <question>: What is the average overall of John Ayres, who had a pick # greater than 4? <context>: CREATE TABLE table_name_38 (overall INTEGER, name VARCHAR, pick__number VARCHAR) | SELECT AVG(overall) FROM table_name_38 WHERE name = "john ayres" AND pick__number > 4 |
44,665 | <question>: What is the name of the player with a pick # less than 5 and an overall of 284? <context>: CREATE TABLE table_name_17 (name VARCHAR, pick__number VARCHAR, overall VARCHAR) | SELECT name FROM table_name_17 WHERE pick__number < 5 AND overall = 284 |
44,666 | <question>: What is the average overall of Ken Whisenhunt, who has a pick # of 5? <context>: CREATE TABLE table_name_77 (overall INTEGER, pick__number VARCHAR, name VARCHAR) | SELECT AVG(overall) FROM table_name_77 WHERE pick__number = 5 AND name = "ken whisenhunt" |
44,667 | <question>: What is the lowest pick # of John Ayres? <context>: CREATE TABLE table_name_15 (pick__number INTEGER, name VARCHAR) | SELECT MIN(pick__number) FROM table_name_15 WHERE name = "john ayres" |
44,668 | <question>: What is the name of team with Palmeiras 4-2 portuguesa as the last match? <context>: CREATE TABLE table_name_47 (team VARCHAR, last_match VARCHAR) | SELECT team FROM table_name_47 WHERE last_match = "palmeiras 4-2 portuguesa" |
44,669 | <question>: What was the manner of departure replaced by tita? <context>: CREATE TABLE table_name_34 (manner_of_departure VARCHAR, replaced_by VARCHAR) | SELECT manner_of_departure FROM table_name_34 WHERE replaced_by = "tita" |
44,670 | <question>: What is the name of the last match that had a sacked manner of departure and a geninho outgoing manner? <context>: CREATE TABLE table_name_8 (last_match VARCHAR, manner_of_departure VARCHAR, outgoing_manager VARCHAR) | SELECT last_match FROM table_name_8 WHERE manner_of_departure = "sacked" AND outgoing_manager = "geninho" |
44,671 | <question>: What is the last match with a vacancy date of round 2 and Ney Franco as outgoing manager? <context>: CREATE TABLE table_name_26 (last_match VARCHAR, date_of_vacancy VARCHAR, outgoing_manager VARCHAR) | SELECT last_match FROM table_name_26 WHERE date_of_vacancy = "round 2" AND outgoing_manager = "ney franco" |
44,672 | <question>: What is the last match with a resigned manner of departure and a round 1 date of vacancy? <context>: CREATE TABLE table_name_96 (last_match VARCHAR, manner_of_departure VARCHAR, date_of_vacancy VARCHAR) | SELECT last_match FROM table_name_96 WHERE manner_of_departure = "resigned" AND date_of_vacancy = "round 1" |
44,673 | <question>: What is the highest effic with an avg/g of 91.9? <context>: CREATE TABLE table_name_68 (effic INTEGER, avg_g VARCHAR) | SELECT MAX(effic) FROM table_name_68 WHERE avg_g = 91.9 |
44,674 | <question>: What is the att-cmp-int with an effic smaller than 117.88 and a gp-gs of 10-0? <context>: CREATE TABLE table_name_73 (att_cmp_int VARCHAR, effic VARCHAR, gp_gs VARCHAR) | SELECT att_cmp_int FROM table_name_73 WHERE effic < 117.88 AND gp_gs = "10-0" |
44,675 | <question>: What is the sum avg/g with an effic of 858.4? <context>: CREATE TABLE table_name_61 (avg_g INTEGER, effic VARCHAR) | SELECT SUM(avg_g) FROM table_name_61 WHERE effic = 858.4 |
44,676 | <question>: What is the mascot for the school in 32 Hendricks County? <context>: CREATE TABLE table_name_11 (mascot VARCHAR, county VARCHAR) | SELECT mascot FROM table_name_11 WHERE county = "32 hendricks" |
44,677 | <question>: Where is Lafayette T. Jefferson School in 79 Tippecanoe county? <context>: CREATE TABLE table_name_26 (location VARCHAR, county VARCHAR, school VARCHAR) | SELECT location FROM table_name_26 WHERE county = "79 tippecanoe" AND school = "lafayette t. jefferson" |
44,678 | <question>: Where is the school with Royals as their mascot? <context>: CREATE TABLE table_name_15 (location VARCHAR, mascot VARCHAR) | SELECT location FROM table_name_15 WHERE mascot = "royals" |
44,679 | <question>: What was the score for the game on February 12? <context>: CREATE TABLE table_name_79 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_79 WHERE date = "february 12" |
44,680 | <question>: What was the score for the game on February 29? <context>: CREATE TABLE table_name_10 (score VARCHAR, date VARCHAR) | SELECT score FROM table_name_10 WHERE date = "february 29" |
44,681 | <question>: Where was the home team in the game played against Chicago? <context>: CREATE TABLE table_name_64 (home VARCHAR, visitor VARCHAR) | SELECT home FROM table_name_64 WHERE visitor = "chicago" |
44,682 | <question>: Which Season has a Game of fcs midwest region, and a Score of 40-33? <context>: CREATE TABLE table_name_29 (season INTEGER, game VARCHAR, score VARCHAR) | SELECT MAX(season) FROM table_name_29 WHERE game = "fcs midwest region" AND score = "40-33" |
44,683 | <question>: Which Game has a Result of win, and an Opponent of new hampshire, and a Season smaller than 2008? <context>: CREATE TABLE table_name_37 (game VARCHAR, season VARCHAR, result VARCHAR, opponent VARCHAR) | SELECT game FROM table_name_37 WHERE result = "win" AND opponent = "new hampshire" AND season < 2008 |
44,684 | <question>: Which Season has a Score of 39-27? <context>: CREATE TABLE table_name_26 (season INTEGER, score VARCHAR) | SELECT MAX(season) FROM table_name_26 WHERE score = "39-27" |
44,685 | <question>: What result has a goal of 5? <context>: CREATE TABLE table_name_80 (result VARCHAR, goal VARCHAR) | SELECT result FROM table_name_80 WHERE goal = 5 |
44,686 | <question>: What's the record on May 25? <context>: CREATE TABLE table_name_42 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_42 WHERE date = "may 25" |
44,687 | <question>: What's greatest attendance on May 7? <context>: CREATE TABLE table_name_89 (attendance INTEGER, date VARCHAR) | SELECT MAX(attendance) FROM table_name_89 WHERE date = "may 7" |
44,688 | <question>: Which January has a Record of 28–14–8? <context>: CREATE TABLE table_name_17 (january VARCHAR, record VARCHAR) | SELECT january FROM table_name_17 WHERE record = "28–14–8" |
44,689 | <question>: Which Points is the highest one that has a Game smaller than 43, and a January larger than 8? <context>: CREATE TABLE table_name_64 (points INTEGER, game VARCHAR, january VARCHAR) | SELECT MAX(points) FROM table_name_64 WHERE game < 43 AND january > 8 |
44,690 | <question>: What is the mean number of wins for the norton team in 1966, when there are 8 points? <context>: CREATE TABLE table_name_8 (wins INTEGER, points VARCHAR, team VARCHAR, year VARCHAR) | SELECT AVG(wins) FROM table_name_8 WHERE team = "norton" AND year = 1966 AND points = 8 |
44,691 | <question>: What is the most recent year for the ajs team when there are fewer than 0 wins? <context>: CREATE TABLE table_name_57 (year INTEGER, team VARCHAR, wins VARCHAR) | SELECT MAX(year) FROM table_name_57 WHERE team = "ajs" AND wins < 0 |
44,692 | <question>: What is the smallest point amount for years prior to 1958 when the class is 350cc? <context>: CREATE TABLE table_name_91 (points INTEGER, year VARCHAR, class VARCHAR) | SELECT MIN(points) FROM table_name_91 WHERE year < 1958 AND class = "350cc" |
44,693 | <question>: What is the largest amount of wins when there are less than 5 points, the class is 500cc, the team is norton, and the year is more recent than 1955? <context>: CREATE TABLE table_name_1 (wins INTEGER, year VARCHAR, team VARCHAR, points VARCHAR, class VARCHAR) | SELECT MAX(wins) FROM table_name_1 WHERE points < 5 AND class = "500cc" AND team = "norton" AND year > 1955 |
44,694 | <question>: When was the game that had a first prize of $161,480? <context>: CREATE TABLE table_name_64 (date VARCHAR, first_prize VARCHAR) | SELECT date FROM table_name_64 WHERE first_prize = "$161,480" |
44,695 | <question>: Who won on May 2011? <context>: CREATE TABLE table_name_76 (winner VARCHAR, date VARCHAR) | SELECT winner FROM table_name_76 WHERE date = "may 2011" |
44,696 | <question>: What is the general classification with a 13 stage? <context>: CREATE TABLE table_name_63 (general_classification VARCHAR, stage VARCHAR) | SELECT general_classification FROM table_name_63 WHERE stage = "13" |
44,697 | <question>: What is teh stage with Daniele Bennati as the points classification and Giovanni VIsconti as the general classification? <context>: CREATE TABLE table_name_36 (stage VARCHAR, points_classification VARCHAR, general_classification VARCHAR) | SELECT stage FROM table_name_36 WHERE points_classification = "daniele bennati" AND general_classification = "giovanni visconti" |
44,698 | <question>: What is the general classification of the stage 3 with Daniele Bennati as the points classification and Morris Possoni as the young rider classification. <context>: CREATE TABLE table_name_21 (general_classification VARCHAR, stage VARCHAR, points_classification VARCHAR, young_rider_classification VARCHAR) | SELECT general_classification FROM table_name_21 WHERE points_classification = "daniele bennati" AND young_rider_classification = "morris possoni" AND stage = "3" |
44,699 | <question>: What is the general classification with riccardo riccò as the young rider classification? <context>: CREATE TABLE table_name_37 (general_classification VARCHAR, young_rider_classification VARCHAR) | SELECT general_classification FROM table_name_37 WHERE young_rider_classification = "riccardo riccò" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.