question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Name the team with high assists of nelson (5)
CREATE TABLE table_name_83 (team VARCHAR, high_assists VARCHAR)
SELECT team FROM table_name_83 WHERE high_assists = "nelson (5)"
### Context: CREATE TABLE table_name_83 (team VARCHAR, high_assists VARCHAR) ### Question: Name the team with high assists of nelson (5) ### Answer: SELECT team FROM table_name_83 WHERE high_assists = "nelson (5)"
Name the score for howard (8) high rebounds
CREATE TABLE table_name_44 (score VARCHAR, high_rebounds VARCHAR)
SELECT score FROM table_name_44 WHERE high_rebounds = "howard (8)"
### Context: CREATE TABLE table_name_44 (score VARCHAR, high_rebounds VARCHAR) ### Question: Name the score for howard (8) high rebounds ### Answer: SELECT score FROM table_name_44 WHERE high_rebounds = "howard (8)"
Where Date is october 11, and game greater than 4 what is the lowest attendance?
CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR, game VARCHAR)
SELECT MIN(attendance) FROM table_name_34 WHERE date = "october 11" AND game > 4
### Context: CREATE TABLE table_name_34 (attendance INTEGER, date VARCHAR, game VARCHAR) ### Question: Where Date is october 11, and game greater than 4 what is the lowest attendance? ### Answer: SELECT MIN(attendance) FROM table_name_34 WHERE date = "october 11" AND game > 4
Where date is october 7 and game greater than 1, what is the highest attendance?
CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)
SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 7" AND game > 1
### Context: CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR) ### Question: Where date is october 7 and game greater than 1, what is the highest attendance? ### Answer: SELECT MAX(attendance) FROM table_name_43 WHERE date = "october 7" AND game > 1
Where Date is october 14 what is the attendance?
CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)
SELECT attendance FROM table_name_40 WHERE date = "october 14"
### Context: CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR) ### Question: Where Date is october 14 what is the attendance? ### Answer: SELECT attendance FROM table_name_40 WHERE date = "october 14"
Which away team had a venue of mcg?
CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_90 WHERE venue = "mcg"
### Context: CREATE TABLE table_name_90 (away_team VARCHAR, venue VARCHAR) ### Question: Which away team had a venue of mcg? ### Answer: SELECT away_team FROM table_name_90 WHERE venue = "mcg"
When did the away team score at Punt Road Oval?
CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)
SELECT away_team AS score FROM table_name_25 WHERE venue = "punt road oval"
### Context: CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR) ### Question: When did the away team score at Punt Road Oval? ### Answer: SELECT away_team AS score FROM table_name_25 WHERE venue = "punt road oval"
How many points did North Melbourne score?
CREATE TABLE table_name_12 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_12 WHERE home_team = "north melbourne"
### Context: CREATE TABLE table_name_12 (home_team VARCHAR) ### Question: How many points did North Melbourne score? ### Answer: SELECT home_team AS score FROM table_name_12 WHERE home_team = "north melbourne"
What was the score on March 4?
CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_22 WHERE date = "march 4"
### Context: CREATE TABLE table_name_22 (score VARCHAR, date VARCHAR) ### Question: What was the score on March 4? ### Answer: SELECT score FROM table_name_22 WHERE date = "march 4"
On which date was Raymond Felton (6) the high assists and Jason Richardson (42) the high points?
CREATE TABLE table_name_32 (date VARCHAR, high_assists VARCHAR, high_points VARCHAR)
SELECT date FROM table_name_32 WHERE high_assists = "raymond felton (6)" AND high_points = "jason richardson (42)"
### Context: CREATE TABLE table_name_32 (date VARCHAR, high_assists VARCHAR, high_points VARCHAR) ### Question: On which date was Raymond Felton (6) the high assists and Jason Richardson (42) the high points? ### Answer: SELECT date FROM table_name_32 WHERE high_assists = "raymond felton (6)" AND high_points = "jason richardson (42)"
What is the location attendance when the team is Golden State?
CREATE TABLE table_name_32 (location_attendance VARCHAR, team VARCHAR)
SELECT location_attendance FROM table_name_32 WHERE team = "golden state"
### Context: CREATE TABLE table_name_32 (location_attendance VARCHAR, team VARCHAR) ### Question: What is the location attendance when the team is Golden State? ### Answer: SELECT location_attendance FROM table_name_32 WHERE team = "golden state"
Which record has a Visitor of magic?
CREATE TABLE table_name_89 (record VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_89 WHERE visitor = "magic"
### Context: CREATE TABLE table_name_89 (record VARCHAR, visitor VARCHAR) ### Question: Which record has a Visitor of magic? ### Answer: SELECT record FROM table_name_89 WHERE visitor = "magic"
Which score has a Home of grizzlies, and a Leading scorer of rudy gay (18)?
CREATE TABLE table_name_62 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR)
SELECT score FROM table_name_62 WHERE home = "grizzlies" AND leading_scorer = "rudy gay (18)"
### Context: CREATE TABLE table_name_62 (score VARCHAR, home VARCHAR, leading_scorer VARCHAR) ### Question: Which score has a Home of grizzlies, and a Leading scorer of rudy gay (18)? ### Answer: SELECT score FROM table_name_62 WHERE home = "grizzlies" AND leading_scorer = "rudy gay (18)"
Which leading scorer has a Home of grizzlies, and a Record of 10–28?
CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)
SELECT leading_scorer FROM table_name_66 WHERE home = "grizzlies" AND record = "10–28"
### Context: CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR) ### Question: Which leading scorer has a Home of grizzlies, and a Record of 10–28? ### Answer: SELECT leading_scorer FROM table_name_66 WHERE home = "grizzlies" AND record = "10–28"
If the Away team was carlton, what Date did they play?
CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_97 WHERE away_team = "carlton"
### Context: CREATE TABLE table_name_97 (date VARCHAR, away_team VARCHAR) ### Question: If the Away team was carlton, what Date did they play? ### Answer: SELECT date FROM table_name_97 WHERE away_team = "carlton"
What is the Visitor with a Home with chicago, and a Score of 3 – 2?
CREATE TABLE table_name_34 (visitor VARCHAR, home VARCHAR, score VARCHAR)
SELECT visitor FROM table_name_34 WHERE home = "chicago" AND score = "3 – 2"
### Context: CREATE TABLE table_name_34 (visitor VARCHAR, home VARCHAR, score VARCHAR) ### Question: What is the Visitor with a Home with chicago, and a Score of 3 – 2? ### Answer: SELECT visitor FROM table_name_34 WHERE home = "chicago" AND score = "3 – 2"
What is the Score with a Date with may 2?
CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_47 WHERE date = "may 2"
### Context: CREATE TABLE table_name_47 (score VARCHAR, date VARCHAR) ### Question: What is the Score with a Date with may 2? ### Answer: SELECT score FROM table_name_47 WHERE date = "may 2"
What is the Score with a Home of colorado, and a Date with may 11?
CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR)
SELECT score FROM table_name_72 WHERE home = "colorado" AND date = "may 11"
### Context: CREATE TABLE table_name_72 (score VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the Score with a Home of colorado, and a Date with may 11? ### Answer: SELECT score FROM table_name_72 WHERE home = "colorado" AND date = "may 11"
What is the Home with a Visitor of chicago, and a Series with 3 – 2?
CREATE TABLE table_name_82 (home VARCHAR, visitor VARCHAR, series VARCHAR)
SELECT home FROM table_name_82 WHERE visitor = "chicago" AND series = "3 – 2"
### Context: CREATE TABLE table_name_82 (home VARCHAR, visitor VARCHAR, series VARCHAR) ### Question: What is the Home with a Visitor of chicago, and a Series with 3 – 2? ### Answer: SELECT home FROM table_name_82 WHERE visitor = "chicago" AND series = "3 – 2"
What is the Visitor with a Series with 3 – 2?
CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR)
SELECT visitor FROM table_name_50 WHERE series = "3 – 2"
### Context: CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR) ### Question: What is the Visitor with a Series with 3 – 2? ### Answer: SELECT visitor FROM table_name_50 WHERE series = "3 – 2"
What is the Visitor with a Score with 4 – 3?
CREATE TABLE table_name_35 (visitor VARCHAR, score VARCHAR)
SELECT visitor FROM table_name_35 WHERE score = "4 – 3"
### Context: CREATE TABLE table_name_35 (visitor VARCHAR, score VARCHAR) ### Question: What is the Visitor with a Score with 4 – 3? ### Answer: SELECT visitor FROM table_name_35 WHERE score = "4 – 3"
What is the 2007 value with 1r in 2011 and 1r in 2010?
CREATE TABLE table_name_84 (Id VARCHAR)
SELECT 2007 FROM table_name_84 WHERE 2011 = "1r" AND 2010 = "1r"
### Context: CREATE TABLE table_name_84 (Id VARCHAR) ### Question: What is the 2007 value with 1r in 2011 and 1r in 2010? ### Answer: SELECT 2007 FROM table_name_84 WHERE 2011 = "1r" AND 2010 = "1r"
What is the 2012 value with 1r in 2010 and 2r in 2006?
CREATE TABLE table_name_13 (Id VARCHAR)
SELECT 2012 FROM table_name_13 WHERE 2010 = "1r" AND 2006 = "2r"
### Context: CREATE TABLE table_name_13 (Id VARCHAR) ### Question: What is the 2012 value with 1r in 2010 and 2r in 2006? ### Answer: SELECT 2012 FROM table_name_13 WHERE 2010 = "1r" AND 2006 = "2r"
What is the 2010 value for the Australian Open?
CREATE TABLE table_name_28 (tournament VARCHAR)
SELECT 2010 FROM table_name_28 WHERE tournament = "australian open"
### Context: CREATE TABLE table_name_28 (tournament VARCHAR) ### Question: What is the 2010 value for the Australian Open? ### Answer: SELECT 2010 FROM table_name_28 WHERE tournament = "australian open"
What is the 2006 value of the 2009 A value, 2011 A value, and A as the 2007 value?
CREATE TABLE table_name_68 (Id VARCHAR)
SELECT 2006 FROM table_name_68 WHERE 2009 = "a" AND 2011 = "a" AND 2007 = "a"
### Context: CREATE TABLE table_name_68 (Id VARCHAR) ### Question: What is the 2006 value of the 2009 A value, 2011 A value, and A as the 2007 value? ### Answer: SELECT 2006 FROM table_name_68 WHERE 2009 = "a" AND 2011 = "a" AND 2007 = "a"
What is the 2006 value with 3r in 2007?
CREATE TABLE table_name_8 (Id VARCHAR)
SELECT 2006 FROM table_name_8 WHERE 2007 = "3r"
### Context: CREATE TABLE table_name_8 (Id VARCHAR) ### Question: What is the 2006 value with 3r in 2007? ### Answer: SELECT 2006 FROM table_name_8 WHERE 2007 = "3r"
What is the 2012 value with 479 in 2008?
CREATE TABLE table_name_22 (Id VARCHAR)
SELECT 2012 FROM table_name_22 WHERE 2008 = "479"
### Context: CREATE TABLE table_name_22 (Id VARCHAR) ### Question: What is the 2012 value with 479 in 2008? ### Answer: SELECT 2012 FROM table_name_22 WHERE 2008 = "479"
What is the building for the r90 pennant?
CREATE TABLE table_name_16 (builder VARCHAR, pennant VARCHAR)
SELECT builder FROM table_name_16 WHERE pennant = "r90"
### Context: CREATE TABLE table_name_16 (builder VARCHAR, pennant VARCHAR) ### Question: What is the building for the r90 pennant? ### Answer: SELECT builder FROM table_name_16 WHERE pennant = "r90"
What is the pennant with Denny, Dumbarton as the builder?
CREATE TABLE table_name_8 (pennant VARCHAR, builder VARCHAR)
SELECT pennant FROM table_name_8 WHERE builder = "denny, dumbarton"
### Context: CREATE TABLE table_name_8 (pennant VARCHAR, builder VARCHAR) ### Question: What is the pennant with Denny, Dumbarton as the builder? ### Answer: SELECT pennant FROM table_name_8 WHERE builder = "denny, dumbarton"
What is the laid down date of the destroyer with a r29 pennant?
CREATE TABLE table_name_37 (laid_down VARCHAR, pennant VARCHAR)
SELECT laid_down FROM table_name_37 WHERE pennant = "r29"
### Context: CREATE TABLE table_name_37 (laid_down VARCHAR, pennant VARCHAR) ### Question: What is the laid down date of the destroyer with a r29 pennant? ### Answer: SELECT laid_down FROM table_name_37 WHERE pennant = "r29"
What is the location/state of the race on 16 Jun?
CREATE TABLE table_name_92 (location___state VARCHAR, date VARCHAR)
SELECT location___state FROM table_name_92 WHERE date = "16 jun"
### Context: CREATE TABLE table_name_92 (location___state VARCHAR, date VARCHAR) ### Question: What is the location/state of the race on 16 Jun? ### Answer: SELECT location___state FROM table_name_92 WHERE date = "16 jun"
What is the lowest heat of the Lakeside race?
CREATE TABLE table_name_65 (heat INTEGER, race_title VARCHAR)
SELECT MIN(heat) FROM table_name_65 WHERE race_title = "lakeside"
### Context: CREATE TABLE table_name_65 (heat INTEGER, race_title VARCHAR) ### Question: What is the lowest heat of the Lakeside race? ### Answer: SELECT MIN(heat) FROM table_name_65 WHERE race_title = "lakeside"
When the Away team is footscray, what is the Home team playing?
CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_42 WHERE away_team = "footscray"
### Context: CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR) ### Question: When the Away team is footscray, what is the Home team playing? ### Answer: SELECT home_team FROM table_name_42 WHERE away_team = "footscray"
Which Away team plays at the Venue vfl park?
CREATE TABLE table_name_91 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_91 WHERE venue = "vfl park"
### Context: CREATE TABLE table_name_91 (away_team VARCHAR, venue VARCHAR) ### Question: Which Away team plays at the Venue vfl park? ### Answer: SELECT away_team FROM table_name_91 WHERE venue = "vfl park"
Name the least week for opponent of washington redskins
CREATE TABLE table_name_87 (week INTEGER, opponent VARCHAR)
SELECT MIN(week) FROM table_name_87 WHERE opponent = "washington redskins"
### Context: CREATE TABLE table_name_87 (week INTEGER, opponent VARCHAR) ### Question: Name the least week for opponent of washington redskins ### Answer: SELECT MIN(week) FROM table_name_87 WHERE opponent = "washington redskins"
Name the tv time for week 10
CREATE TABLE table_name_49 (tv_time VARCHAR, week VARCHAR)
SELECT tv_time FROM table_name_49 WHERE week = 10
### Context: CREATE TABLE table_name_49 (tv_time VARCHAR, week VARCHAR) ### Question: Name the tv time for week 10 ### Answer: SELECT tv_time FROM table_name_49 WHERE week = 10
What is the Time/Retired for a Grid larger than 6, and 57 laps?
CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT time_retired FROM table_name_51 WHERE grid > 6 AND laps = 57
### Context: CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR) ### Question: What is the Time/Retired for a Grid larger than 6, and 57 laps? ### Answer: SELECT time_retired FROM table_name_51 WHERE grid > 6 AND laps = 57
What grid for denny hulme?
CREATE TABLE table_name_12 (grid VARCHAR, driver VARCHAR)
SELECT grid FROM table_name_12 WHERE driver = "denny hulme"
### Context: CREATE TABLE table_name_12 (grid VARCHAR, driver VARCHAR) ### Question: What grid for denny hulme? ### Answer: SELECT grid FROM table_name_12 WHERE driver = "denny hulme"
How many laps for a Time/Retired of tyre, and a Grid larger than 10?
CREATE TABLE table_name_66 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)
SELECT COUNT(laps) FROM table_name_66 WHERE time_retired = "tyre" AND grid > 10
### Context: CREATE TABLE table_name_66 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR) ### Question: How many laps for a Time/Retired of tyre, and a Grid larger than 10? ### Answer: SELECT COUNT(laps) FROM table_name_66 WHERE time_retired = "tyre" AND grid > 10
What Outcome has a Rocket launch of rehnuma-11?
CREATE TABLE table_name_93 (outcomes VARCHAR, rocket_launch VARCHAR)
SELECT outcomes FROM table_name_93 WHERE rocket_launch = "rehnuma-11"
### Context: CREATE TABLE table_name_93 (outcomes VARCHAR, rocket_launch VARCHAR) ### Question: What Outcome has a Rocket launch of rehnuma-11? ### Answer: SELECT outcomes FROM table_name_93 WHERE rocket_launch = "rehnuma-11"
Which Institutional authority has a Rocket launch of rehnuma-10?
CREATE TABLE table_name_67 (institutional_authority VARCHAR, rocket_launch VARCHAR)
SELECT institutional_authority FROM table_name_67 WHERE rocket_launch = "rehnuma-10"
### Context: CREATE TABLE table_name_67 (institutional_authority VARCHAR, rocket_launch VARCHAR) ### Question: Which Institutional authority has a Rocket launch of rehnuma-10? ### Answer: SELECT institutional_authority FROM table_name_67 WHERE rocket_launch = "rehnuma-10"
Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt?
CREATE TABLE table_name_57 (derivatives VARCHAR, launch_date VARCHAR)
SELECT derivatives FROM table_name_57 WHERE launch_date = "july 15, 1970; 15:05 gmt"
### Context: CREATE TABLE table_name_57 (derivatives VARCHAR, launch_date VARCHAR) ### Question: Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt? ### Answer: SELECT derivatives FROM table_name_57 WHERE launch_date = "july 15, 1970; 15:05 gmt"
Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt?
CREATE TABLE table_name_32 (outcomes VARCHAR, launch_date VARCHAR)
SELECT outcomes FROM table_name_32 WHERE launch_date = "march 18, 1964; 14:50 gmt"
### Context: CREATE TABLE table_name_32 (outcomes VARCHAR, launch_date VARCHAR) ### Question: Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt? ### Answer: SELECT outcomes FROM table_name_32 WHERE launch_date = "march 18, 1964; 14:50 gmt"
Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?
CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)
SELECT mission FROM table_name_47 WHERE launch_date = "december 30, 1970; 14:50 gmt"
### Context: CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR) ### Question: Which Mission has a Launch Date of december 30, 1970; 14:50 gmt? ### Answer: SELECT mission FROM table_name_47 WHERE launch_date = "december 30, 1970; 14:50 gmt"
What team was the visitor on 3/2?
CREATE TABLE table_name_72 (visitor VARCHAR, date VARCHAR)
SELECT visitor FROM table_name_72 WHERE date = "3/2"
### Context: CREATE TABLE table_name_72 (visitor VARCHAR, date VARCHAR) ### Question: What team was the visitor on 3/2? ### Answer: SELECT visitor FROM table_name_72 WHERE date = "3/2"
What is the home team score for kardinia park?
CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR)
SELECT home_team AS score FROM table_name_56 WHERE venue = "kardinia park"
### Context: CREATE TABLE table_name_56 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team score for kardinia park? ### Answer: SELECT home_team AS score FROM table_name_56 WHERE venue = "kardinia park"
Name the realization for phoneme of /i/ and example of /idːa/
CREATE TABLE table_name_5 (realization VARCHAR, phoneme VARCHAR, example VARCHAR)
SELECT realization FROM table_name_5 WHERE phoneme = "/i/" AND example = "/idːa/"
### Context: CREATE TABLE table_name_5 (realization VARCHAR, phoneme VARCHAR, example VARCHAR) ### Question: Name the realization for phoneme of /i/ and example of /idːa/ ### Answer: SELECT realization FROM table_name_5 WHERE phoneme = "/i/" AND example = "/idːa/"
Name the phoneme for realizaiton of [Ιͺj]
CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR)
SELECT phoneme FROM table_name_13 WHERE realization = "[Ιͺj]"
### Context: CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR) ### Question: Name the phoneme for realizaiton of [Ιͺj] ### Answer: SELECT phoneme FROM table_name_13 WHERE realization = "[Ιͺj]"
Name the example when the environment is #_x
CREATE TABLE table_name_46 (example VARCHAR, environment VARCHAR)
SELECT example FROM table_name_46 WHERE environment = "#_x"
### Context: CREATE TABLE table_name_46 (example VARCHAR, environment VARCHAR) ### Question: Name the example when the environment is #_x ### Answer: SELECT example FROM table_name_46 WHERE environment = "#_x"
Name the example when the realization is [ɐ]
CREATE TABLE table_name_36 (example VARCHAR, realization VARCHAR)
SELECT example FROM table_name_36 WHERE realization = "[ɐ]"
### Context: CREATE TABLE table_name_36 (example VARCHAR, realization VARCHAR) ### Question: Name the example when the realization is [ɐ] ### Answer: SELECT example FROM table_name_36 WHERE realization = "[ɐ]"
Name the phoneme when the example is /umsʁ/
CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR)
SELECT phoneme FROM table_name_78 WHERE example = "/umsʁ/"
### Context: CREATE TABLE table_name_78 (phoneme VARCHAR, example VARCHAR) ### Question: Name the phoneme when the example is /umsʁ/ ### Answer: SELECT phoneme FROM table_name_78 WHERE example = "/umsʁ/"
Name the phoneme when the realizationis [Ι‘]
CREATE TABLE table_name_16 (phoneme VARCHAR, realization VARCHAR)
SELECT phoneme FROM table_name_16 WHERE realization = "[Ι‘]"
### Context: CREATE TABLE table_name_16 (phoneme VARCHAR, realization VARCHAR) ### Question: Name the phoneme when the realizationis [Ι‘] ### Answer: SELECT phoneme FROM table_name_16 WHERE realization = "[Ι‘]"
What is the power of the engine with an engine code m44b19?
CREATE TABLE table_name_84 (power VARCHAR, engine_code VARCHAR)
SELECT power FROM table_name_84 WHERE engine_code = "m44b19"
### Context: CREATE TABLE table_name_84 (power VARCHAR, engine_code VARCHAR) ### Question: What is the power of the engine with an engine code m44b19? ### Answer: SELECT power FROM table_name_84 WHERE engine_code = "m44b19"
What is the highest numbered grid for piercarlo ghinzani with over 3 laps?
CREATE TABLE table_name_80 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_80 WHERE driver = "piercarlo ghinzani" AND laps > 3
### Context: CREATE TABLE table_name_80 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: What is the highest numbered grid for piercarlo ghinzani with over 3 laps? ### Answer: SELECT MAX(grid) FROM table_name_80 WHERE driver = "piercarlo ghinzani" AND laps > 3
How many laps for a grid of over 18 and retired due to electrical failure?
CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR, time_retired VARCHAR)
SELECT SUM(laps) FROM table_name_31 WHERE grid > 18 AND time_retired = "electrical"
### Context: CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR, time_retired VARCHAR) ### Question: How many laps for a grid of over 18 and retired due to electrical failure? ### Answer: SELECT SUM(laps) FROM table_name_31 WHERE grid > 18 AND time_retired = "electrical"
What was the average crowd attendance for the Junction Oval venue?
CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR)
SELECT AVG(crowd) FROM table_name_36 WHERE venue = "junction oval"
### Context: CREATE TABLE table_name_36 (crowd INTEGER, venue VARCHAR) ### Question: What was the average crowd attendance for the Junction Oval venue? ### Answer: SELECT AVG(crowd) FROM table_name_36 WHERE venue = "junction oval"
What is the home team for the Princes Park venue?
CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_87 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_87 (home_team VARCHAR, venue VARCHAR) ### Question: What is the home team for the Princes Park venue? ### Answer: SELECT home_team FROM table_name_87 WHERE venue = "princes park"
What is the average home team score for Footscray?
CREATE TABLE table_name_36 (home_team VARCHAR)
SELECT home_team AS score FROM table_name_36 WHERE home_team = "footscray"
### Context: CREATE TABLE table_name_36 (home_team VARCHAR) ### Question: What is the average home team score for Footscray? ### Answer: SELECT home_team AS score FROM table_name_36 WHERE home_team = "footscray"
Which home teams had Geelong as the away team?
CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_19 WHERE away_team = "geelong"
### Context: CREATE TABLE table_name_19 (home_team VARCHAR, away_team VARCHAR) ### Question: Which home teams had Geelong as the away team? ### Answer: SELECT home_team FROM table_name_19 WHERE away_team = "geelong"
When did the Rockies play the Giants with an attendance over 24,100?
CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance VARCHAR)
SELECT date FROM table_name_35 WHERE opponent = "giants" AND attendance > 24 OFFSET 100
### Context: CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance VARCHAR) ### Question: When did the Rockies play the Giants with an attendance over 24,100? ### Answer: SELECT date FROM table_name_35 WHERE opponent = "giants" AND attendance > 24 OFFSET 100
What is the date of the game when the Rockies had a record of 61–66?
CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR)
SELECT date FROM table_name_91 WHERE record = "61–66"
### Context: CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR) ### Question: What is the date of the game when the Rockies had a record of 61–66? ### Answer: SELECT date FROM table_name_91 WHERE record = "61–66"
How many seasons has John Mcfadden coached?
CREATE TABLE table_name_71 (seasons VARCHAR, coach VARCHAR)
SELECT COUNT(seasons) FROM table_name_71 WHERE coach = "john mcfadden"
### Context: CREATE TABLE table_name_71 (seasons VARCHAR, coach VARCHAR) ### Question: How many seasons has John Mcfadden coached? ### Answer: SELECT COUNT(seasons) FROM table_name_71 WHERE coach = "john mcfadden"
What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?
CREATE TABLE table_name_52 (annual_ridership__2012_ INTEGER, stations VARCHAR, lines VARCHAR)
SELECT SUM(annual_ridership__2012_) FROM table_name_52 WHERE stations = 13 AND lines > 4
### Context: CREATE TABLE table_name_52 (annual_ridership__2012_ INTEGER, stations VARCHAR, lines VARCHAR) ### Question: What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines? ### Answer: SELECT SUM(annual_ridership__2012_) FROM table_name_52 WHERE stations = 13 AND lines > 4
How many lines have fewer than 44 stations and fewer than 881 riders per mile?
CREATE TABLE table_name_44 (lines VARCHAR, stations VARCHAR, rider_per_mile VARCHAR)
SELECT COUNT(lines) FROM table_name_44 WHERE stations < 44 AND rider_per_mile < 881
### Context: CREATE TABLE table_name_44 (lines VARCHAR, stations VARCHAR, rider_per_mile VARCHAR) ### Question: How many lines have fewer than 44 stations and fewer than 881 riders per mile? ### Answer: SELECT COUNT(lines) FROM table_name_44 WHERE stations < 44 AND rider_per_mile < 881
What is the highest season for the 7th position?
CREATE TABLE table_name_61 (season INTEGER, position VARCHAR)
SELECT MAX(season) FROM table_name_61 WHERE position = "7th"
### Context: CREATE TABLE table_name_61 (season INTEGER, position VARCHAR) ### Question: What is the highest season for the 7th position? ### Answer: SELECT MAX(season) FROM table_name_61 WHERE position = "7th"
Who is the opponent in the final of the Tournament of Blenheim?
CREATE TABLE table_name_42 (opponent_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_42 WHERE tournament = "blenheim"
### Context: CREATE TABLE table_name_42 (opponent_in_the_final VARCHAR, tournament VARCHAR) ### Question: Who is the opponent in the final of the Tournament of Blenheim? ### Answer: SELECT opponent_in_the_final FROM table_name_42 WHERE tournament = "blenheim"
Who is the opponent in the final on August 14, 2006?
CREATE TABLE table_name_3 (opponent_in_the_final VARCHAR, date VARCHAR)
SELECT opponent_in_the_final FROM table_name_3 WHERE date = "august 14, 2006"
### Context: CREATE TABLE table_name_3 (opponent_in_the_final VARCHAR, date VARCHAR) ### Question: Who is the opponent in the final on August 14, 2006? ### Answer: SELECT opponent_in_the_final FROM table_name_3 WHERE date = "august 14, 2006"
Who is the opponent in the final with a clay surface at the Tournament of Lyneham?
CREATE TABLE table_name_20 (opponent_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_20 WHERE surface = "clay" AND tournament = "lyneham"
### Context: CREATE TABLE table_name_20 (opponent_in_the_final VARCHAR, surface VARCHAR, tournament VARCHAR) ### Question: Who is the opponent in the final with a clay surface at the Tournament of Lyneham? ### Answer: SELECT opponent_in_the_final FROM table_name_20 WHERE surface = "clay" AND tournament = "lyneham"
On what surface was the score 6–2, 6–1?
CREATE TABLE table_name_46 (surface VARCHAR, score VARCHAR)
SELECT surface FROM table_name_46 WHERE score = "6–2, 6–1"
### Context: CREATE TABLE table_name_46 (surface VARCHAR, score VARCHAR) ### Question: On what surface was the score 6–2, 6–1? ### Answer: SELECT surface FROM table_name_46 WHERE score = "6–2, 6–1"
What is the score for the Tournament of Cordenons?
CREATE TABLE table_name_12 (score VARCHAR, tournament VARCHAR)
SELECT score FROM table_name_12 WHERE tournament = "cordenons"
### Context: CREATE TABLE table_name_12 (score VARCHAR, tournament VARCHAR) ### Question: What is the score for the Tournament of Cordenons? ### Answer: SELECT score FROM table_name_12 WHERE tournament = "cordenons"
On what date was the surface clay with Cyril Saulnier as the opponent in the final?
CREATE TABLE table_name_28 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
SELECT date FROM table_name_28 WHERE surface = "clay" AND opponent_in_the_final = "cyril saulnier"
### Context: CREATE TABLE table_name_28 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR) ### Question: On what date was the surface clay with Cyril Saulnier as the opponent in the final? ### Answer: SELECT date FROM table_name_28 WHERE surface = "clay" AND opponent_in_the_final = "cyril saulnier"
Which artist has a Mintage of 500?
CREATE TABLE table_name_9 (artist VARCHAR, mintage VARCHAR)
SELECT artist FROM table_name_9 WHERE mintage = 500
### Context: CREATE TABLE table_name_9 (artist VARCHAR, mintage VARCHAR) ### Question: Which artist has a Mintage of 500? ### Answer: SELECT artist FROM table_name_9 WHERE mintage = 500
Which Artist has an Issue Price of $1,541.95?
CREATE TABLE table_name_20 (artist VARCHAR, issue_price VARCHAR)
SELECT artist FROM table_name_20 WHERE issue_price = "$1,541.95"
### Context: CREATE TABLE table_name_20 (artist VARCHAR, issue_price VARCHAR) ### Question: Which Artist has an Issue Price of $1,541.95? ### Answer: SELECT artist FROM table_name_20 WHERE issue_price = "$1,541.95"
Who is the opponent in the final on a hard surface with a score of 6–3 7–6(5)?
CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR)
SELECT opponent_in_the_final FROM table_name_69 WHERE surface = "hard" AND score = "6–3 7–6(5)"
### Context: CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score VARCHAR) ### Question: Who is the opponent in the final on a hard surface with a score of 6–3 7–6(5)? ### Answer: SELECT opponent_in_the_final FROM table_name_69 WHERE surface = "hard" AND score = "6–3 7–6(5)"
Who is the opponent in the Tournament of Lahore final?
CREATE TABLE table_name_90 (opponent_in_the_final VARCHAR, tournament VARCHAR)
SELECT opponent_in_the_final FROM table_name_90 WHERE tournament = "lahore"
### Context: CREATE TABLE table_name_90 (opponent_in_the_final VARCHAR, tournament VARCHAR) ### Question: Who is the opponent in the Tournament of Lahore final? ### Answer: SELECT opponent_in_the_final FROM table_name_90 WHERE tournament = "lahore"
On what date did the opponent in the Toshiaki Sakai final play on a grass surface?
CREATE TABLE table_name_99 (date VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)
SELECT date FROM table_name_99 WHERE opponent_in_the_final = "toshiaki sakai" AND surface = "grass"
### Context: CREATE TABLE table_name_99 (date VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR) ### Question: On what date did the opponent in the Toshiaki Sakai final play on a grass surface? ### Answer: SELECT date FROM table_name_99 WHERE opponent_in_the_final = "toshiaki sakai" AND surface = "grass"
On what surface did a score of 4–6 6–3 6–4 occur at the Tournament of Lahore?
CREATE TABLE table_name_78 (surface VARCHAR, tournament VARCHAR, score VARCHAR)
SELECT surface FROM table_name_78 WHERE tournament = "lahore" AND score = "4–6 6–3 6–4"
### Context: CREATE TABLE table_name_78 (surface VARCHAR, tournament VARCHAR, score VARCHAR) ### Question: On what surface did a score of 4–6 6–3 6–4 occur at the Tournament of Lahore? ### Answer: SELECT surface FROM table_name_78 WHERE tournament = "lahore" AND score = "4–6 6–3 6–4"
Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface?
CREATE TABLE table_name_73 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR)
SELECT tournament FROM table_name_73 WHERE opponent_in_the_final = "toshiaki sakai" AND surface = "grass"
### Context: CREATE TABLE table_name_73 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface VARCHAR) ### Question: Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface? ### Answer: SELECT tournament FROM table_name_73 WHERE opponent_in_the_final = "toshiaki sakai" AND surface = "grass"
what was the score on the game that happened on May 15?
CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR)
SELECT score FROM table_name_49 WHERE date = "may 15"
### Context: CREATE TABLE table_name_49 (score VARCHAR, date VARCHAR) ### Question: what was the score on the game that happened on May 15? ### Answer: SELECT score FROM table_name_49 WHERE date = "may 15"
What is the status of bel with a Transfer window of winter?
CREATE TABLE table_name_8 (status VARCHAR, country VARCHAR, transfer_window VARCHAR)
SELECT status FROM table_name_8 WHERE country = "bel" AND transfer_window = "winter"
### Context: CREATE TABLE table_name_8 (status VARCHAR, country VARCHAR, transfer_window VARCHAR) ### Question: What is the status of bel with a Transfer window of winter? ### Answer: SELECT status FROM table_name_8 WHERE country = "bel" AND transfer_window = "winter"
What is the union moving name and is from cmr?
CREATE TABLE table_name_92 (name VARCHAR, moving_to VARCHAR, country VARCHAR)
SELECT name FROM table_name_92 WHERE moving_to = "union" AND country = "cmr"
### Context: CREATE TABLE table_name_92 (name VARCHAR, moving_to VARCHAR, country VARCHAR) ### Question: What is the union moving name and is from cmr? ### Answer: SELECT name FROM table_name_92 WHERE moving_to = "union" AND country = "cmr"
What is the transfer window for bel?
CREATE TABLE table_name_78 (transfer_window VARCHAR, country VARCHAR)
SELECT transfer_window FROM table_name_78 WHERE country = "bel"
### Context: CREATE TABLE table_name_78 (transfer_window VARCHAR, country VARCHAR) ### Question: What is the transfer window for bel? ### Answer: SELECT transfer_window FROM table_name_78 WHERE country = "bel"
What is the transfer period for habarugira?
CREATE TABLE table_name_16 (transfer_window VARCHAR, name VARCHAR)
SELECT transfer_window FROM table_name_16 WHERE name = "habarugira"
### Context: CREATE TABLE table_name_16 (transfer_window VARCHAR, name VARCHAR) ### Question: What is the transfer period for habarugira? ### Answer: SELECT transfer_window FROM table_name_16 WHERE name = "habarugira"
How big was the crowd in game that featured the visiting team of north melbourne?
CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
SELECT crowd FROM table_name_76 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR) ### Question: How big was the crowd in game that featured the visiting team of north melbourne? ### Answer: SELECT crowd FROM table_name_76 WHERE away_team = "north melbourne"
How many bronze medals for the nation with less than 1 total?
CREATE TABLE table_name_79 (bronze INTEGER, total INTEGER)
SELECT MAX(bronze) FROM table_name_79 WHERE total < 1
### Context: CREATE TABLE table_name_79 (bronze INTEGER, total INTEGER) ### Question: How many bronze medals for the nation with less than 1 total? ### Answer: SELECT MAX(bronze) FROM table_name_79 WHERE total < 1
How many bronze medals for the nation ranked above 2, and under 0 golds?
CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR)
SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0
### Context: CREATE TABLE table_name_36 (bronze VARCHAR, rank VARCHAR, gold VARCHAR) ### Question: How many bronze medals for the nation ranked above 2, and under 0 golds? ### Answer: SELECT COUNT(bronze) FROM table_name_36 WHERE rank < 2 AND gold < 0
How many silvers for japan (1 gold)?
CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR)
SELECT SUM(silver) FROM table_name_30 WHERE nation = "japan" AND gold > 1
### Context: CREATE TABLE table_name_30 (silver INTEGER, nation VARCHAR, gold VARCHAR) ### Question: How many silvers for japan (1 gold)? ### Answer: SELECT SUM(silver) FROM table_name_30 WHERE nation = "japan" AND gold > 1
Which authority had a role of 651?
CREATE TABLE table_name_18 (authority VARCHAR, roll VARCHAR)
SELECT authority FROM table_name_18 WHERE roll = 651
### Context: CREATE TABLE table_name_18 (authority VARCHAR, roll VARCHAR) ### Question: Which authority had a role of 651? ### Answer: SELECT authority FROM table_name_18 WHERE roll = 651
For the roll of 651, what was the lowest Decile?
CREATE TABLE table_name_79 (decile INTEGER, roll VARCHAR)
SELECT MIN(decile) FROM table_name_79 WHERE roll = 651
### Context: CREATE TABLE table_name_79 (decile INTEGER, roll VARCHAR) ### Question: For the roll of 651, what was the lowest Decile? ### Answer: SELECT MIN(decile) FROM table_name_79 WHERE roll = 651
What were the years for Redhill school, authority of state?
CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR)
SELECT years FROM table_name_1 WHERE authority = "state" AND name = "redhill school"
### Context: CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR) ### Question: What were the years for Redhill school, authority of state? ### Answer: SELECT years FROM table_name_1 WHERE authority = "state" AND name = "redhill school"
What was the sum roll of Karaka area?
CREATE TABLE table_name_53 (roll INTEGER, area VARCHAR)
SELECT SUM(roll) FROM table_name_53 WHERE area = "karaka"
### Context: CREATE TABLE table_name_53 (roll INTEGER, area VARCHAR) ### Question: What was the sum roll of Karaka area? ### Answer: SELECT SUM(roll) FROM table_name_53 WHERE area = "karaka"
What home team played North Melbourne?
CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR)
SELECT home_team FROM table_name_50 WHERE away_team = "north melbourne"
### Context: CREATE TABLE table_name_50 (home_team VARCHAR, away_team VARCHAR) ### Question: What home team played North Melbourne? ### Answer: SELECT home_team FROM table_name_50 WHERE away_team = "north melbourne"
What is the nationality of the player with a round after 4 and plays right wing?
CREATE TABLE table_name_41 (nationality VARCHAR, round VARCHAR, position VARCHAR)
SELECT nationality FROM table_name_41 WHERE round > 4 AND position = "right wing"
### Context: CREATE TABLE table_name_41 (nationality VARCHAR, round VARCHAR, position VARCHAR) ### Question: What is the nationality of the player with a round after 4 and plays right wing? ### Answer: SELECT nationality FROM table_name_41 WHERE round > 4 AND position = "right wing"
What is the college/junior/club team (league) of left wing Ondrej Roman?
CREATE TABLE table_name_62 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)
SELECT college_junior_club_team__league_ FROM table_name_62 WHERE position = "left wing" AND player = "ondrej roman"
### Context: CREATE TABLE table_name_62 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR) ### Question: What is the college/junior/club team (league) of left wing Ondrej Roman? ### Answer: SELECT college_junior_club_team__league_ FROM table_name_62 WHERE position = "left wing" AND player = "ondrej roman"
Who played in lake oval while away?
CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_69 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR) ### Question: Who played in lake oval while away? ### Answer: SELECT away_team FROM table_name_69 WHERE venue = "lake oval"
What week number saw a w 31-16 result?
CREATE TABLE table_name_21 (week INTEGER, result VARCHAR)
SELECT MIN(week) FROM table_name_21 WHERE result = "w 31-16"
### Context: CREATE TABLE table_name_21 (week INTEGER, result VARCHAR) ### Question: What week number saw a w 31-16 result? ### Answer: SELECT MIN(week) FROM table_name_21 WHERE result = "w 31-16"
When was the game before week 8 with a result of bye?
CREATE TABLE table_name_44 (date VARCHAR, week VARCHAR, result VARCHAR)
SELECT date FROM table_name_44 WHERE week < 8 AND result = "bye"
### Context: CREATE TABLE table_name_44 (date VARCHAR, week VARCHAR, result VARCHAR) ### Question: When was the game before week 8 with a result of bye? ### Answer: SELECT date FROM table_name_44 WHERE week < 8 AND result = "bye"
What week number had the New York Giants as opponent?
CREATE TABLE table_name_21 (week VARCHAR, opponent VARCHAR)
SELECT COUNT(week) FROM table_name_21 WHERE opponent = "new york giants"
### Context: CREATE TABLE table_name_21 (week VARCHAR, opponent VARCHAR) ### Question: What week number had the New York Giants as opponent? ### Answer: SELECT COUNT(week) FROM table_name_21 WHERE opponent = "new york giants"
Who built the under grid 6 car with under 49 laps?
CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49
### Context: CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR) ### Question: Who built the under grid 6 car with under 49 laps? ### Answer: SELECT constructor FROM table_name_94 WHERE grid < 6 AND laps < 49
Who built the grid 2 car?
CREATE TABLE table_name_40 (constructor VARCHAR, grid VARCHAR)
SELECT constructor FROM table_name_40 WHERE grid = 2
### Context: CREATE TABLE table_name_40 (constructor VARCHAR, grid VARCHAR) ### Question: Who built the grid 2 car? ### Answer: SELECT constructor FROM table_name_40 WHERE grid = 2