text
stringlengths
114
1.06k
### question: Name the team with high assists of nelson (5) ### answer: 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 score for howard (8) high rebounds ### answer: SELECT score FROM table_name_44 WHERE high_rebounds = "howard (8)" ### context: CREATE TABLE table_name_44 (score VARCHAR, high_rebounds 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 ### context: CREATE TABLE table_name_34 (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 ### context: CREATE TABLE table_name_43 (attendance INTEGER, date VARCHAR, game VARCHAR)
### question: Where Date is october 14 what is the attendance? ### answer: SELECT attendance FROM table_name_40 WHERE date = "october 14" ### context: CREATE TABLE table_name_40 (attendance VARCHAR, date VARCHAR)
### question: Which away team had a venue of mcg? ### answer: SELECT away_team FROM table_name_90 WHERE venue = "mcg" ### context: CREATE TABLE table_name_90 (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" ### context: CREATE TABLE table_name_25 (away_team VARCHAR, venue VARCHAR)
### question: How many points did North Melbourne score? ### answer: SELECT home_team AS score FROM table_name_12 WHERE home_team = "north melbourne" ### context: CREATE TABLE table_name_12 (home_team VARCHAR)
### question: What was the score on March 4? ### answer: SELECT score FROM table_name_22 WHERE date = "march 4" ### context: CREATE TABLE table_name_22 (score VARCHAR, date 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)" ### context: CREATE TABLE table_name_32 (date VARCHAR, high_assists VARCHAR, high_points 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" ### context: CREATE TABLE table_name_32 (location_attendance VARCHAR, team VARCHAR)
### question: Which record has a Visitor of magic? ### answer: SELECT record FROM table_name_89 WHERE visitor = "magic" ### context: CREATE TABLE table_name_89 (record VARCHAR, visitor 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)" ### context: CREATE TABLE table_name_62 (score VARCHAR, home VARCHAR, leading_scorer 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" ### context: CREATE TABLE table_name_66 (leading_scorer VARCHAR, home VARCHAR, record VARCHAR)
### question: If the Away team was carlton, what Date did they play? ### answer: SELECT date FROM table_name_97 WHERE away_team = "carlton" ### context: CREATE TABLE table_name_97 (date VARCHAR, away_team 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" ### context: CREATE TABLE table_name_34 (visitor VARCHAR, home VARCHAR, score VARCHAR)
### question: What is the Score with a Date with may 2? ### answer: 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 Home of colorado, and a Date with may 11? ### answer: 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 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" ### context: CREATE TABLE table_name_82 (home VARCHAR, 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" ### context: CREATE TABLE table_name_50 (visitor VARCHAR, series VARCHAR)
### question: What is the Visitor with a Score with 4 – 3? ### answer: SELECT visitor FROM table_name_35 WHERE score = "4 – 3" ### context: CREATE TABLE table_name_35 (visitor VARCHAR, score 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" ### context: CREATE TABLE table_name_84 (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" ### context: CREATE TABLE table_name_13 (Id VARCHAR)
### question: What is the 2010 value for the Australian Open? ### answer: SELECT 2010 FROM table_name_28 WHERE tournament = "australian open" ### context: CREATE TABLE table_name_28 (tournament 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" ### context: CREATE TABLE table_name_68 (Id VARCHAR)
### question: What is the 2006 value with 3r in 2007? ### answer: SELECT 2006 FROM table_name_8 WHERE 2007 = "3r" ### context: CREATE TABLE table_name_8 (Id VARCHAR)
### question: What is the 2012 value with 479 in 2008? ### answer: SELECT 2012 FROM table_name_22 WHERE 2008 = "479" ### context: CREATE TABLE table_name_22 (Id VARCHAR)
### question: What is the building for the r90 pennant? ### answer: SELECT builder FROM table_name_16 WHERE pennant = "r90" ### context: CREATE TABLE table_name_16 (builder VARCHAR, pennant VARCHAR)
### question: What is the pennant with Denny, Dumbarton as the builder? ### answer: SELECT pennant FROM table_name_8 WHERE builder = "denny, dumbarton" ### context: CREATE TABLE table_name_8 (pennant VARCHAR, builder 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" ### context: CREATE TABLE table_name_37 (laid_down VARCHAR, pennant 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" ### context: CREATE TABLE table_name_92 (location___state VARCHAR, date VARCHAR)
### question: What is the lowest heat of the Lakeside race? ### answer: SELECT MIN(heat) FROM table_name_65 WHERE race_title = "lakeside" ### context: CREATE TABLE table_name_65 (heat INTEGER, race_title 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" ### context: CREATE TABLE table_name_42 (home_team VARCHAR, away_team VARCHAR)
### question: Which Away team plays at the Venue vfl park? ### answer: SELECT away_team FROM table_name_91 WHERE venue = "vfl park" ### context: CREATE TABLE table_name_91 (away_team VARCHAR, venue VARCHAR)
### question: Name the least week for opponent of washington redskins ### answer: SELECT MIN(week) FROM table_name_87 WHERE opponent = "washington redskins" ### context: CREATE TABLE table_name_87 (week INTEGER, opponent VARCHAR)
### question: Name the tv time for week 10 ### answer: SELECT tv_time FROM table_name_49 WHERE week = 10 ### context: CREATE TABLE table_name_49 (tv_time VARCHAR, week 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 ### context: CREATE TABLE table_name_51 (time_retired VARCHAR, grid VARCHAR, laps VARCHAR)
### question: What grid for denny hulme? ### answer: SELECT grid FROM table_name_12 WHERE driver = "denny hulme" ### context: CREATE TABLE table_name_12 (grid VARCHAR, driver 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 ### context: CREATE TABLE table_name_66 (laps VARCHAR, time_retired VARCHAR, grid VARCHAR)
### question: What Outcome has a Rocket launch of rehnuma-11? ### answer: SELECT outcomes FROM table_name_93 WHERE rocket_launch = "rehnuma-11" ### context: CREATE TABLE table_name_93 (outcomes 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" ### context: CREATE TABLE table_name_67 (institutional_authority VARCHAR, rocket_launch 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" ### context: CREATE TABLE table_name_57 (derivatives 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" ### context: CREATE TABLE table_name_32 (outcomes 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" ### context: CREATE TABLE table_name_47 (mission VARCHAR, launch_date VARCHAR)
### question: What team was the visitor on 3/2? ### answer: SELECT visitor FROM table_name_72 WHERE date = "3/2" ### context: CREATE TABLE table_name_72 (visitor VARCHAR, date 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" ### context: CREATE TABLE table_name_56 (home_team VARCHAR, venue 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/" ### context: CREATE TABLE table_name_5 (realization VARCHAR, phoneme VARCHAR, example VARCHAR)
### question: Name the phoneme for realizaiton of [Ιͺj] ### answer: SELECT phoneme FROM table_name_13 WHERE realization = "[Ιͺj]" ### context: CREATE TABLE table_name_13 (phoneme VARCHAR, realization VARCHAR)
### question: Name the example when the environment is #_x ### answer: 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 realization is [ɐ] ### answer: SELECT example FROM table_name_36 WHERE realization = "[ɐ]" ### context: CREATE TABLE table_name_36 (example VARCHAR, realization VARCHAR)
### question: Name the phoneme when the example is /umsʁ/ ### answer: 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 realizationis [Ι‘] ### answer: SELECT phoneme FROM table_name_16 WHERE realization = "[Ι‘]" ### context: CREATE TABLE table_name_16 (phoneme VARCHAR, realization 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" ### context: CREATE TABLE table_name_84 (power VARCHAR, engine_code 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 ### context: CREATE TABLE table_name_80 (grid INTEGER, driver VARCHAR, laps 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" ### context: CREATE TABLE table_name_31 (laps INTEGER, grid VARCHAR, time_retired 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" ### context: CREATE TABLE table_name_36 (crowd INTEGER, 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" ### context: CREATE TABLE table_name_87 (home_team VARCHAR, venue 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" ### context: CREATE TABLE table_name_36 (home_team VARCHAR)
### question: Which home teams had Geelong as the away team? ### answer: SELECT home_team FROM table_name_19 WHERE away_team = "geelong" ### context: CREATE TABLE table_name_19 (home_team VARCHAR, away_team 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 ### context: CREATE TABLE table_name_35 (date VARCHAR, opponent VARCHAR, attendance 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" ### context: CREATE TABLE table_name_91 (date VARCHAR, record VARCHAR)
### question: How many seasons has John Mcfadden coached? ### answer: SELECT COUNT(seasons) FROM table_name_71 WHERE coach = "john mcfadden" ### context: CREATE TABLE table_name_71 (seasons VARCHAR, coach 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 ### context: CREATE TABLE table_name_52 (annual_ridership__2012_ INTEGER, stations VARCHAR, lines 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 ### context: CREATE TABLE table_name_44 (lines VARCHAR, stations VARCHAR, rider_per_mile VARCHAR)
### question: What is the highest season for the 7th position? ### answer: SELECT MAX(season) FROM table_name_61 WHERE position = "7th" ### context: CREATE TABLE table_name_61 (season INTEGER, position 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" ### context: CREATE TABLE table_name_42 (opponent_in_the_final VARCHAR, tournament 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" ### context: CREATE TABLE table_name_3 (opponent_in_the_final VARCHAR, date 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" ### context: CREATE TABLE table_name_20 (opponent_in_the_final VARCHAR, surface VARCHAR, tournament 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" ### context: CREATE TABLE table_name_46 (surface VARCHAR, score VARCHAR)
### question: What is the score for the Tournament of Cordenons? ### answer: SELECT score FROM table_name_12 WHERE tournament = "cordenons" ### context: CREATE TABLE table_name_12 (score VARCHAR, tournament 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" ### context: CREATE TABLE table_name_28 (date VARCHAR, surface VARCHAR, opponent_in_the_final VARCHAR)
### question: Which artist has a Mintage of 500? ### answer: SELECT artist FROM table_name_9 WHERE mintage = 500 ### context: CREATE TABLE table_name_9 (artist VARCHAR, mintage 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" ### context: CREATE TABLE table_name_20 (artist VARCHAR, issue_price 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)" ### context: CREATE TABLE table_name_69 (opponent_in_the_final VARCHAR, surface VARCHAR, score 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" ### context: CREATE TABLE table_name_90 (opponent_in_the_final VARCHAR, tournament 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" ### context: CREATE TABLE table_name_99 (date VARCHAR, opponent_in_the_final VARCHAR, surface 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" ### context: CREATE TABLE table_name_78 (surface VARCHAR, tournament VARCHAR, score 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" ### context: CREATE TABLE table_name_73 (tournament VARCHAR, opponent_in_the_final VARCHAR, surface 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" ### context: CREATE TABLE table_name_49 (score VARCHAR, date 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" ### context: CREATE TABLE table_name_8 (status VARCHAR, country VARCHAR, transfer_window 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" ### context: CREATE TABLE table_name_92 (name VARCHAR, moving_to VARCHAR, country VARCHAR)
### question: What is the transfer window for bel? ### answer: 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 period for habarugira? ### answer: SELECT transfer_window FROM table_name_16 WHERE name = "habarugira" ### context: CREATE TABLE table_name_16 (transfer_window VARCHAR, name 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" ### context: CREATE TABLE table_name_76 (crowd VARCHAR, away_team VARCHAR)
### question: How many bronze medals for the nation with less than 1 total? ### answer: 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 ranked above 2, and under 0 golds? ### answer: 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 silvers for japan (1 gold)? ### answer: 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: Which authority had a role of 651? ### answer: SELECT authority FROM table_name_18 WHERE roll = 651 ### context: CREATE TABLE table_name_18 (authority VARCHAR, roll VARCHAR)
### question: For the roll of 651, what was the lowest Decile? ### answer: SELECT MIN(decile) FROM table_name_79 WHERE roll = 651 ### context: CREATE TABLE table_name_79 (decile INTEGER, roll 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" ### context: CREATE TABLE table_name_1 (years VARCHAR, authority VARCHAR, name VARCHAR)
### question: What was the sum roll of Karaka area? ### answer: SELECT SUM(roll) FROM table_name_53 WHERE area = "karaka" ### context: CREATE TABLE table_name_53 (roll INTEGER, area VARCHAR)
### question: What home team played North Melbourne? ### answer: 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 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" ### context: CREATE TABLE table_name_41 (nationality VARCHAR, round VARCHAR, position 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" ### context: CREATE TABLE table_name_62 (college_junior_club_team__league_ VARCHAR, position VARCHAR, player VARCHAR)
### question: Who played in lake oval while away? ### answer: SELECT away_team FROM table_name_69 WHERE venue = "lake oval" ### context: CREATE TABLE table_name_69 (away_team VARCHAR, venue VARCHAR)
### question: What week number saw a w 31-16 result? ### answer: SELECT MIN(week) FROM table_name_21 WHERE result = "w 31-16" ### context: CREATE TABLE table_name_21 (week INTEGER, 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" ### context: CREATE TABLE table_name_44 (date VARCHAR, week VARCHAR, result 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" ### context: CREATE TABLE table_name_21 (week VARCHAR, opponent 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 ### context: CREATE TABLE table_name_94 (constructor VARCHAR, grid VARCHAR, laps VARCHAR)
### question: Who built the grid 2 car? ### answer: SELECT constructor FROM table_name_40 WHERE grid = 2 ### context: CREATE TABLE table_name_40 (constructor VARCHAR, grid VARCHAR)