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