question
stringlengths
12
244
context
stringlengths
27
489
answer
stringlengths
18
557
text
stringlengths
114
1.06k
Who built the car that retired due to suspension before 65 laps?
CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
SELECT constructor FROM table_name_7 WHERE laps < 65 AND time_retired = "suspension"
### Context: CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR) ### Question: Who built the car that retired due to suspension before 65 laps? ### Answer: SELECT constructor FROM table_name_7 WHERE laps < 65 AND time_retired = "suspension"
What Valley Vista has a Dysart of 1668?
CREATE TABLE table_name_39 (valley_vista VARCHAR, dysart VARCHAR)
SELECT valley_vista FROM table_name_39 WHERE dysart = "1668"
### Context: CREATE TABLE table_name_39 (valley_vista VARCHAR, dysart VARCHAR) ### Question: What Valley Vista has a Dysart of 1668? ### Answer: SELECT valley_vista FROM table_name_39 WHERE dysart = "1668"
What Valley Vista has a Willow Canyon of 2169?
CREATE TABLE table_name_47 (valley_vista VARCHAR, willow_canyon VARCHAR)
SELECT valley_vista FROM table_name_47 WHERE willow_canyon = "2169"
### Context: CREATE TABLE table_name_47 (valley_vista VARCHAR, willow_canyon VARCHAR) ### Question: What Valley Vista has a Willow Canyon of 2169? ### Answer: SELECT valley_vista FROM table_name_47 WHERE willow_canyon = "2169"
How many people were in the crowd at Lake Oval?
CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR)
SELECT crowd FROM table_name_2 WHERE venue = "lake oval"
### Context: CREATE TABLE table_name_2 (crowd VARCHAR, venue VARCHAR) ### Question: How many people were in the crowd at Lake Oval? ### Answer: SELECT crowd FROM table_name_2 WHERE venue = "lake oval"
What team was the home team on 27 june 1981, at vfl park?
CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR)
SELECT home_team FROM table_name_88 WHERE date = "27 june 1981" AND venue = "vfl park"
### Context: CREATE TABLE table_name_88 (home_team VARCHAR, date VARCHAR, venue VARCHAR) ### Question: What team was the home team on 27 june 1981, at vfl park? ### Answer: SELECT home_team FROM table_name_88 WHERE date = "27 june 1981" AND venue = "vfl park"
What is the tyre with a 56 chassis?
CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR)
SELECT tyre FROM table_name_99 WHERE chassis = "56"
### Context: CREATE TABLE table_name_99 (tyre VARCHAR, chassis VARCHAR) ### Question: What is the tyre with a 56 chassis? ### Answer: SELECT tyre FROM table_name_99 WHERE chassis = "56"
Which country has a GDP (nominal) of $29.9 billion?
CREATE TABLE table_name_20 (country VARCHAR, gdp__nominal_ VARCHAR)
SELECT country FROM table_name_20 WHERE gdp__nominal_ = "$29.9 billion"
### Context: CREATE TABLE table_name_20 (country VARCHAR, gdp__nominal_ VARCHAR) ### Question: Which country has a GDP (nominal) of $29.9 billion? ### Answer: SELECT country FROM table_name_20 WHERE gdp__nominal_ = "$29.9 billion"
Which country has a GDP (nominal) of $29.9 billion?
CREATE TABLE table_name_46 (country VARCHAR, gdp__nominal_ VARCHAR)
SELECT country FROM table_name_46 WHERE gdp__nominal_ = "$29.9 billion"
### Context: CREATE TABLE table_name_46 (country VARCHAR, gdp__nominal_ VARCHAR) ### Question: Which country has a GDP (nominal) of $29.9 billion? ### Answer: SELECT country FROM table_name_46 WHERE gdp__nominal_ = "$29.9 billion"
Which GDP (nominal) has a Population of 5,550,239?
CREATE TABLE table_name_98 (gdp__nominal_ VARCHAR, population VARCHAR)
SELECT gdp__nominal_ FROM table_name_98 WHERE population = "5,550,239"
### Context: CREATE TABLE table_name_98 (gdp__nominal_ VARCHAR, population VARCHAR) ### Question: Which GDP (nominal) has a Population of 5,550,239? ### Answer: SELECT gdp__nominal_ FROM table_name_98 WHERE population = "5,550,239"
Which population has a GDP (nominal) of $6.4 billion?
CREATE TABLE table_name_63 (population VARCHAR, gdp__nominal_ VARCHAR)
SELECT population FROM table_name_63 WHERE gdp__nominal_ = "$6.4 billion"
### Context: CREATE TABLE table_name_63 (population VARCHAR, gdp__nominal_ VARCHAR) ### Question: Which population has a GDP (nominal) of $6.4 billion? ### Answer: SELECT population FROM table_name_63 WHERE gdp__nominal_ = "$6.4 billion"
Which country has a GDP (nominal) of $29.9 billion?
CREATE TABLE table_name_30 (country VARCHAR, gdp__nominal_ VARCHAR)
SELECT country FROM table_name_30 WHERE gdp__nominal_ = "$29.9 billion"
### Context: CREATE TABLE table_name_30 (country VARCHAR, gdp__nominal_ VARCHAR) ### Question: Which country has a GDP (nominal) of $29.9 billion? ### Answer: SELECT country FROM table_name_30 WHERE gdp__nominal_ = "$29.9 billion"
What is the GDP (nominal) with Population of 5,125,693?
CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR)
SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = "5,125,693"
### Context: CREATE TABLE table_name_16 (gdp_per_capita__nominal_ VARCHAR, population VARCHAR) ### Question: What is the GDP (nominal) with Population of 5,125,693? ### Answer: SELECT gdp_per_capita__nominal_ FROM table_name_16 WHERE population = "5,125,693"
What is the earliest year for 9 points?
CREATE TABLE table_name_79 (year INTEGER, points VARCHAR)
SELECT MIN(year) FROM table_name_79 WHERE points = 9
### Context: CREATE TABLE table_name_79 (year INTEGER, points VARCHAR) ### Question: What is the earliest year for 9 points? ### Answer: SELECT MIN(year) FROM table_name_79 WHERE points = 9
What is the low score for the jaguar r3 chasis?
CREATE TABLE table_name_90 (points INTEGER, chassis VARCHAR)
SELECT MIN(points) FROM table_name_90 WHERE chassis = "jaguar r3"
### Context: CREATE TABLE table_name_90 (points INTEGER, chassis VARCHAR) ### Question: What is the low score for the jaguar r3 chasis? ### Answer: SELECT MIN(points) FROM table_name_90 WHERE chassis = "jaguar r3"
What is the notes when the displacement is 220cid (3,604cc)?
CREATE TABLE table_name_78 (notes VARCHAR, displacement VARCHAR)
SELECT notes FROM table_name_78 WHERE displacement = "220cid (3,604cc)"
### Context: CREATE TABLE table_name_78 (notes VARCHAR, displacement VARCHAR) ### Question: What is the notes when the displacement is 220cid (3,604cc)? ### Answer: SELECT notes FROM table_name_78 WHERE displacement = "220cid (3,604cc)"
What is then engine when the notes state srt8?
CREATE TABLE table_name_91 (engine VARCHAR, notes VARCHAR)
SELECT engine FROM table_name_91 WHERE notes = "srt8"
### Context: CREATE TABLE table_name_91 (engine VARCHAR, notes VARCHAR) ### Question: What is then engine when the notes state srt8? ### Answer: SELECT engine FROM table_name_91 WHERE notes = "srt8"
What is the power when the displacement is 182cid (2,988cc) and the notes are eu spec?
CREATE TABLE table_name_43 (power VARCHAR, displacement VARCHAR, notes VARCHAR)
SELECT power FROM table_name_43 WHERE displacement = "182cid (2,988cc)" AND notes = "eu spec"
### Context: CREATE TABLE table_name_43 (power VARCHAR, displacement VARCHAR, notes VARCHAR) ### Question: What is the power when the displacement is 182cid (2,988cc) and the notes are eu spec? ### Answer: SELECT power FROM table_name_43 WHERE displacement = "182cid (2,988cc)" AND notes = "eu spec"
What is the engine for year 2012-?
CREATE TABLE table_name_52 (engine VARCHAR, years VARCHAR)
SELECT engine FROM table_name_52 WHERE years = "2012-"
### Context: CREATE TABLE table_name_52 (engine VARCHAR, years VARCHAR) ### Question: What is the engine for year 2012-? ### Answer: SELECT engine FROM table_name_52 WHERE years = "2012-"
What is the record of the match with Columbus as the home team on March 7?
CREATE TABLE table_name_96 (record VARCHAR, home VARCHAR, date VARCHAR)
SELECT record FROM table_name_96 WHERE home = "columbus" AND date = "march 7"
### Context: CREATE TABLE table_name_96 (record VARCHAR, home VARCHAR, date VARCHAR) ### Question: What is the record of the match with Columbus as the home team on March 7? ### Answer: SELECT record FROM table_name_96 WHERE home = "columbus" AND date = "march 7"
What is the record of the game on March 18?
CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR)
SELECT record FROM table_name_20 WHERE date = "march 18"
### Context: CREATE TABLE table_name_20 (record VARCHAR, date VARCHAR) ### Question: What is the record of the game on March 18? ### Answer: SELECT record FROM table_name_20 WHERE date = "march 18"
Which height has a College of wyoming, and a Name of guy frazier?
CREATE TABLE table_name_72 (height VARCHAR, college VARCHAR, name VARCHAR)
SELECT height FROM table_name_72 WHERE college = "wyoming" AND name = "guy frazier"
### Context: CREATE TABLE table_name_72 (height VARCHAR, college VARCHAR, name VARCHAR) ### Question: Which height has a College of wyoming, and a Name of guy frazier? ### Answer: SELECT height FROM table_name_72 WHERE college = "wyoming" AND name = "guy frazier"
Which season's winner is Panathinaikos and is located in Athens?
CREATE TABLE table_name_33 (season VARCHAR, location VARCHAR, winners VARCHAR)
SELECT season FROM table_name_33 WHERE location = "athens" AND winners = "panathinaikos"
### Context: CREATE TABLE table_name_33 (season VARCHAR, location VARCHAR, winners VARCHAR) ### Question: Which season's winner is Panathinaikos and is located in Athens? ### Answer: SELECT season FROM table_name_33 WHERE location = "athens" AND winners = "panathinaikos"
What is the date recorded of Hate?
CREATE TABLE table_name_34 (recorded VARCHAR, translation VARCHAR)
SELECT recorded FROM table_name_34 WHERE translation = "hate"
### Context: CREATE TABLE table_name_34 (recorded VARCHAR, translation VARCHAR) ### Question: What is the date recorded of Hate? ### Answer: SELECT recorded FROM table_name_34 WHERE translation = "hate"
Who is the composer on the tracks less than 4?
CREATE TABLE table_name_36 (composer VARCHAR, track INTEGER)
SELECT composer FROM table_name_36 WHERE track < 4
### Context: CREATE TABLE table_name_36 (composer VARCHAR, track INTEGER) ### Question: Who is the composer on the tracks less than 4? ### Answer: SELECT composer FROM table_name_36 WHERE track < 4
What is the title of track 7?
CREATE TABLE table_name_83 (title VARCHAR, track VARCHAR)
SELECT title FROM table_name_83 WHERE track = 7
### Context: CREATE TABLE table_name_83 (title VARCHAR, track VARCHAR) ### Question: What is the title of track 7? ### Answer: SELECT title FROM table_name_83 WHERE track = 7
What is the recorded date of track 8?
CREATE TABLE table_name_73 (recorded VARCHAR, track VARCHAR)
SELECT recorded FROM table_name_73 WHERE track = 8
### Context: CREATE TABLE table_name_73 (recorded VARCHAR, track VARCHAR) ### Question: What is the recorded date of track 8? ### Answer: SELECT recorded FROM table_name_73 WHERE track = 8
How many number Builts had unit numbers of 375301-310?
CREATE TABLE table_name_19 (no_built INTEGER, unit_nos VARCHAR)
SELECT SUM(no_built) FROM table_name_19 WHERE unit_nos = "375301-310"
### Context: CREATE TABLE table_name_19 (no_built INTEGER, unit_nos VARCHAR) ### Question: How many number Builts had unit numbers of 375301-310? ### Answer: SELECT SUM(no_built) FROM table_name_19 WHERE unit_nos = "375301-310"
What was the score of the game where Montreal was the home team and the Devils had a record of 40–24–6?
CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, record VARCHAR)
SELECT score FROM table_name_91 WHERE home = "montreal" AND record = "40–24–6"
### Context: CREATE TABLE table_name_91 (score VARCHAR, home VARCHAR, record VARCHAR) ### Question: What was the score of the game where Montreal was the home team and the Devils had a record of 40–24–6? ### Answer: SELECT score FROM table_name_91 WHERE home = "montreal" AND record = "40–24–6"
Which location has 140 stores?
CREATE TABLE table_name_29 (location VARCHAR, stores VARCHAR)
SELECT location FROM table_name_29 WHERE stores = "140"
### Context: CREATE TABLE table_name_29 (location VARCHAR, stores VARCHAR) ### Question: Which location has 140 stores? ### Answer: SELECT location FROM table_name_29 WHERE stores = "140"
Which year did the Short Pump Town Center Mall open?
CREATE TABLE table_name_4 (year_opened VARCHAR, mall_name VARCHAR)
SELECT year_opened FROM table_name_4 WHERE mall_name = "short pump town center"
### Context: CREATE TABLE table_name_4 (year_opened VARCHAR, mall_name VARCHAR) ### Question: Which year did the Short Pump Town Center Mall open? ### Answer: SELECT year_opened FROM table_name_4 WHERE mall_name = "short pump town center"
What is the retail space of the Stony Point Fashion Park Mall?
CREATE TABLE table_name_70 (retail_space_sq_feet__mΒ²_ VARCHAR, mall_name VARCHAR)
SELECT retail_space_sq_feet__mΒ²_ FROM table_name_70 WHERE mall_name = "stony point fashion park"
### Context: CREATE TABLE table_name_70 (retail_space_sq_feet__mΒ²_ VARCHAR, mall_name VARCHAR) ### Question: What is the retail space of the Stony Point Fashion Park Mall? ### Answer: SELECT retail_space_sq_feet__mΒ²_ FROM table_name_70 WHERE mall_name = "stony point fashion park"
Which Mall has 140 stores?
CREATE TABLE table_name_3 (mall_name VARCHAR, stores VARCHAR)
SELECT mall_name FROM table_name_3 WHERE stores = "140"
### Context: CREATE TABLE table_name_3 (mall_name VARCHAR, stores VARCHAR) ### Question: Which Mall has 140 stores? ### Answer: SELECT mall_name FROM table_name_3 WHERE stores = "140"
What match was on 30 january 1938?
CREATE TABLE table_name_33 (match VARCHAR, date VARCHAR)
SELECT match FROM table_name_33 WHERE date = "30 january 1938"
### Context: CREATE TABLE table_name_33 (match VARCHAR, date VARCHAR) ### Question: What match was on 30 january 1938? ### Answer: SELECT match FROM table_name_33 WHERE date = "30 january 1938"
What was the result of the napoli-roma match?
CREATE TABLE table_name_75 (result VARCHAR, match VARCHAR)
SELECT result FROM table_name_75 WHERE match = "napoli-roma"
### Context: CREATE TABLE table_name_75 (result VARCHAR, match VARCHAR) ### Question: What was the result of the napoli-roma match? ### Answer: SELECT result FROM table_name_75 WHERE match = "napoli-roma"
What is the player that is from seattle prep?
CREATE TABLE table_name_15 (player VARCHAR, school VARCHAR)
SELECT player FROM table_name_15 WHERE school = "seattle prep"
### Context: CREATE TABLE table_name_15 (player VARCHAR, school VARCHAR) ### Question: What is the player that is from seattle prep? ### Answer: SELECT player FROM table_name_15 WHERE school = "seattle prep"
What is the hometown of the player which has a height of 6-0?
CREATE TABLE table_name_31 (hometown VARCHAR, height VARCHAR)
SELECT hometown FROM table_name_31 WHERE height = "6-0"
### Context: CREATE TABLE table_name_31 (hometown VARCHAR, height VARCHAR) ### Question: What is the hometown of the player which has a height of 6-0? ### Answer: SELECT hometown FROM table_name_31 WHERE height = "6-0"
What is the hometown for the player that went to the college of washington
CREATE TABLE table_name_54 (hometown VARCHAR, college VARCHAR)
SELECT hometown FROM table_name_54 WHERE college = "washington"
### Context: CREATE TABLE table_name_54 (hometown VARCHAR, college VARCHAR) ### Question: What is the hometown for the player that went to the college of washington ### Answer: SELECT hometown FROM table_name_54 WHERE college = "washington"
What was the away team's score at Princes Park?
CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR)
SELECT away_team FROM table_name_3 WHERE venue = "princes park"
### Context: CREATE TABLE table_name_3 (away_team VARCHAR, venue VARCHAR) ### Question: What was the away team's score at Princes Park? ### Answer: SELECT away_team FROM table_name_3 WHERE venue = "princes park"
When did Richmond play an away game against Collingwood?
CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR)
SELECT date FROM table_name_36 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_36 (date VARCHAR, away_team VARCHAR) ### Question: When did Richmond play an away game against Collingwood? ### Answer: SELECT date FROM table_name_36 WHERE away_team = "richmond"
How many league cup goals on average for players with over 0 FA cup and 5 league goals?
CREATE TABLE table_name_64 (league INTEGER, fa_cup VARCHAR)
SELECT AVG(league) AS Cup FROM table_name_64 WHERE fa_cup > 0 AND league = 5
### Context: CREATE TABLE table_name_64 (league INTEGER, fa_cup VARCHAR) ### Question: How many league cup goals on average for players with over 0 FA cup and 5 league goals? ### Answer: SELECT AVG(league) AS Cup FROM table_name_64 WHERE fa_cup > 0 AND league = 5
What is the low FA cup goals for viduka with under 2 europe goals?
CREATE TABLE table_name_58 (fa_cup INTEGER, name VARCHAR, europe VARCHAR)
SELECT MIN(fa_cup) FROM table_name_58 WHERE name = "viduka" AND europe < 2
### Context: CREATE TABLE table_name_58 (fa_cup INTEGER, name VARCHAR, europe VARCHAR) ### Question: What is the low FA cup goals for viduka with under 2 europe goals? ### Answer: SELECT MIN(fa_cup) FROM table_name_58 WHERE name = "viduka" AND europe < 2
Who won the most recent favorite rap/hip-hop new artist at the American music awards?
CREATE TABLE table_name_55 (year INTEGER, association VARCHAR, category VARCHAR)
SELECT MAX(year) FROM table_name_55 WHERE association = "american music awards" AND category = "favorite rap/hip-hop new artist"
### Context: CREATE TABLE table_name_55 (year INTEGER, association VARCHAR, category VARCHAR) ### Question: Who won the most recent favorite rap/hip-hop new artist at the American music awards? ### Answer: SELECT MAX(year) FROM table_name_55 WHERE association = "american music awards" AND category = "favorite rap/hip-hop new artist"
What is the Date with a Leading scorer with maurice williams (25), and a Score with 102–105?
CREATE TABLE table_name_24 (date VARCHAR, leading_scorer VARCHAR, score VARCHAR)
SELECT date FROM table_name_24 WHERE leading_scorer = "maurice williams (25)" AND score = "102–105"
### Context: CREATE TABLE table_name_24 (date VARCHAR, leading_scorer VARCHAR, score VARCHAR) ### Question: What is the Date with a Leading scorer with maurice williams (25), and a Score with 102–105? ### Answer: SELECT date FROM table_name_24 WHERE leading_scorer = "maurice williams (25)" AND score = "102–105"
What is the Score with a Home with hornets?
CREATE TABLE table_name_54 (score VARCHAR, home VARCHAR)
SELECT score FROM table_name_54 WHERE home = "hornets"
### Context: CREATE TABLE table_name_54 (score VARCHAR, home VARCHAR) ### Question: What is the Score with a Home with hornets? ### Answer: SELECT score FROM table_name_54 WHERE home = "hornets"
What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)?
CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR)
SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)"
### Context: CREATE TABLE table_name_81 (score VARCHAR, visitor VARCHAR, leading_scorer VARCHAR) ### Question: What is the Score with a Visitor of bucks, and a Leading scorer with maurice williams (25)? ### Answer: SELECT score FROM table_name_81 WHERE visitor = "bucks" AND leading_scorer = "maurice williams (25)"
What is the Record with a Leading scorer with andrew bogut (29)?
CREATE TABLE table_name_49 (record VARCHAR, leading_scorer VARCHAR)
SELECT record FROM table_name_49 WHERE leading_scorer = "andrew bogut (29)"
### Context: CREATE TABLE table_name_49 (record VARCHAR, leading_scorer VARCHAR) ### Question: What is the Record with a Leading scorer with andrew bogut (29)? ### Answer: SELECT record FROM table_name_49 WHERE leading_scorer = "andrew bogut (29)"
What is the Record with a Leading scorer with maurice williams (25), and a Date with 27 january 2008?
CREATE TABLE table_name_38 (record VARCHAR, leading_scorer VARCHAR, date VARCHAR)
SELECT record FROM table_name_38 WHERE leading_scorer = "maurice williams (25)" AND date = "27 january 2008"
### Context: CREATE TABLE table_name_38 (record VARCHAR, leading_scorer VARCHAR, date VARCHAR) ### Question: What is the Record with a Leading scorer with maurice williams (25), and a Date with 27 january 2008? ### Answer: SELECT record FROM table_name_38 WHERE leading_scorer = "maurice williams (25)" AND date = "27 january 2008"
What is the Record with a Score with 80–87, and a Visitor with bucks?
CREATE TABLE table_name_12 (record VARCHAR, score VARCHAR, visitor VARCHAR)
SELECT record FROM table_name_12 WHERE score = "80–87" AND visitor = "bucks"
### Context: CREATE TABLE table_name_12 (record VARCHAR, score VARCHAR, visitor VARCHAR) ### Question: What is the Record with a Score with 80–87, and a Visitor with bucks? ### Answer: SELECT record FROM table_name_12 WHERE score = "80–87" AND visitor = "bucks"
What is the nationality of the player Tom Boswell?
CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR)
SELECT nationality FROM table_name_74 WHERE player = "tom boswell"
### Context: CREATE TABLE table_name_74 (nationality VARCHAR, player VARCHAR) ### Question: What is the nationality of the player Tom Boswell? ### Answer: SELECT nationality FROM table_name_74 WHERE player = "tom boswell"
What is the nationality of the player from Duke?
CREATE TABLE table_name_18 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_18 WHERE school_club_team = "duke"
### Context: CREATE TABLE table_name_18 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of the player from Duke? ### Answer: SELECT nationality FROM table_name_18 WHERE school_club_team = "duke"
What position did the player from Florida International play?
CREATE TABLE table_name_31 (position VARCHAR, school_club_team VARCHAR)
SELECT position FROM table_name_31 WHERE school_club_team = "florida international"
### Context: CREATE TABLE table_name_31 (position VARCHAR, school_club_team VARCHAR) ### Question: What position did the player from Florida International play? ### Answer: SELECT position FROM table_name_31 WHERE school_club_team = "florida international"
What is the nationality of the player from UCLA?
CREATE TABLE table_name_4 (nationality VARCHAR, school_club_team VARCHAR)
SELECT nationality FROM table_name_4 WHERE school_club_team = "ucla"
### Context: CREATE TABLE table_name_4 (nationality VARCHAR, school_club_team VARCHAR) ### Question: What is the nationality of the player from UCLA? ### Answer: SELECT nationality FROM table_name_4 WHERE school_club_team = "ucla"
What was Attendance/G with Tms more than 18?
CREATE TABLE table_name_48 (attendance_g INTEGER, tms INTEGER)
SELECT AVG(attendance_g) FROM table_name_48 WHERE tms > 18
### Context: CREATE TABLE table_name_48 (attendance_g INTEGER, tms INTEGER) ### Question: What was Attendance/G with Tms more than 18? ### Answer: SELECT AVG(attendance_g) FROM table_name_48 WHERE tms > 18
Which chassis had an entrant of John Mecom?
CREATE TABLE table_name_37 (chassis VARCHAR, entrant VARCHAR)
SELECT chassis FROM table_name_37 WHERE entrant = "john mecom"
### Context: CREATE TABLE table_name_37 (chassis VARCHAR, entrant VARCHAR) ### Question: Which chassis had an entrant of John Mecom? ### Answer: SELECT chassis FROM table_name_37 WHERE entrant = "john mecom"
What tyre was used for an entrant of Ecurie Nationale Suisse?
CREATE TABLE table_name_27 (tyre VARCHAR, entrant VARCHAR)
SELECT tyre FROM table_name_27 WHERE entrant = "ecurie nationale suisse"
### Context: CREATE TABLE table_name_27 (tyre VARCHAR, entrant VARCHAR) ### Question: What tyre was used for an entrant of Ecurie Nationale Suisse? ### Answer: SELECT tyre FROM table_name_27 WHERE entrant = "ecurie nationale suisse"
Which rounds was Hap Sharp a driver in?
CREATE TABLE table_name_40 (rounds VARCHAR, driver VARCHAR)
SELECT rounds FROM table_name_40 WHERE driver = "hap sharp"
### Context: CREATE TABLE table_name_40 (rounds VARCHAR, driver VARCHAR) ### Question: Which rounds was Hap Sharp a driver in? ### Answer: SELECT rounds FROM table_name_40 WHERE driver = "hap sharp"
what is the year when the title is jotei?
CREATE TABLE table_name_38 (year INTEGER, title VARCHAR)
SELECT SUM(year) FROM table_name_38 WHERE title = "jotei"
### Context: CREATE TABLE table_name_38 (year INTEGER, title VARCHAR) ### Question: what is the year when the title is jotei? ### Answer: SELECT SUM(year) FROM table_name_38 WHERE title = "jotei"
what is the original channel when the year is before 2006 and the note is supporting?
CREATE TABLE table_name_67 (original_channel VARCHAR, year VARCHAR, note VARCHAR)
SELECT original_channel FROM table_name_67 WHERE year < 2006 AND note = "supporting"
### Context: CREATE TABLE table_name_67 (original_channel VARCHAR, year VARCHAR, note VARCHAR) ### Question: what is the original channel when the year is before 2006 and the note is supporting? ### Answer: SELECT original_channel FROM table_name_67 WHERE year < 2006 AND note = "supporting"
what is the original channel when the note is co-star in year 2012?
CREATE TABLE table_name_61 (original_channel VARCHAR, note VARCHAR, year VARCHAR)
SELECT original_channel FROM table_name_61 WHERE note = "co-star" AND year = 2012
### Context: CREATE TABLE table_name_61 (original_channel VARCHAR, note VARCHAR, year VARCHAR) ### Question: what is the original channel when the note is co-star in year 2012? ### Answer: SELECT original_channel FROM table_name_61 WHERE note = "co-star" AND year = 2012
what is the original channel when the year is after 2012?
CREATE TABLE table_name_7 (original_channel VARCHAR, year INTEGER)
SELECT original_channel FROM table_name_7 WHERE year > 2012
### Context: CREATE TABLE table_name_7 (original_channel VARCHAR, year INTEGER) ### Question: what is the original channel when the year is after 2012? ### Answer: SELECT original_channel FROM table_name_7 WHERE year > 2012
what is the year when the note is supporting and the title is rokumeikan?
CREATE TABLE table_name_5 (year VARCHAR, note VARCHAR, title VARCHAR)
SELECT year FROM table_name_5 WHERE note = "supporting" AND title = "rokumeikan"
### Context: CREATE TABLE table_name_5 (year VARCHAR, note VARCHAR, title VARCHAR) ### Question: what is the year when the note is supporting and the title is rokumeikan? ### Answer: SELECT year FROM table_name_5 WHERE note = "supporting" AND title = "rokumeikan"
what is the title when the year is after 2011 and the original channel is nhk?
CREATE TABLE table_name_71 (title VARCHAR, year VARCHAR, original_channel VARCHAR)
SELECT title FROM table_name_71 WHERE year > 2011 AND original_channel = "nhk"
### Context: CREATE TABLE table_name_71 (title VARCHAR, year VARCHAR, original_channel VARCHAR) ### Question: what is the title when the year is after 2011 and the original channel is nhk? ### Answer: SELECT title FROM table_name_71 WHERE year > 2011 AND original_channel = "nhk"
On which circuit does lorenzo bandini have the fastest lap as well as the pole position?
CREATE TABLE table_name_91 (circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT circuit FROM table_name_91 WHERE fastest_lap = "lorenzo bandini" AND pole_position = "lorenzo bandini"
### Context: CREATE TABLE table_name_91 (circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: On which circuit does lorenzo bandini have the fastest lap as well as the pole position? ### Answer: SELECT circuit FROM table_name_91 WHERE fastest_lap = "lorenzo bandini" AND pole_position = "lorenzo bandini"
At what race does jim clark has a Pole position on the Circuit of monaco?
CREATE TABLE table_name_72 (race VARCHAR, pole_position VARCHAR, circuit VARCHAR)
SELECT race FROM table_name_72 WHERE pole_position = "jim clark" AND circuit = "monaco"
### Context: CREATE TABLE table_name_72 (race VARCHAR, pole_position VARCHAR, circuit VARCHAR) ### Question: At what race does jim clark has a Pole position on the Circuit of monaco? ### Answer: SELECT race FROM table_name_72 WHERE pole_position = "jim clark" AND circuit = "monaco"
Which Report is on the Circuit of reims?
CREATE TABLE table_name_32 (report VARCHAR, circuit VARCHAR)
SELECT report FROM table_name_32 WHERE circuit = "reims"
### Context: CREATE TABLE table_name_32 (report VARCHAR, circuit VARCHAR) ### Question: Which Report is on the Circuit of reims? ### Answer: SELECT report FROM table_name_32 WHERE circuit = "reims"
On what Date is there a race on the Circuit of brands hatch?
CREATE TABLE table_name_77 (date VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_77 WHERE circuit = "brands hatch"
### Context: CREATE TABLE table_name_77 (date VARCHAR, circuit VARCHAR) ### Question: On what Date is there a race on the Circuit of brands hatch? ### Answer: SELECT date FROM table_name_77 WHERE circuit = "brands hatch"
Who is the Winnning driver in which lorenzo bandini has the fastest lap as well as the Pole position?
CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR)
SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "lorenzo bandini" AND pole_position = "lorenzo bandini"
### Context: CREATE TABLE table_name_21 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: Who is the Winnning driver in which lorenzo bandini has the fastest lap as well as the Pole position? ### Answer: SELECT winning_driver FROM table_name_21 WHERE fastest_lap = "lorenzo bandini" AND pole_position = "lorenzo bandini"
On what date is there a Tryre of d at the Circuit of monaco?
CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR)
SELECT date FROM table_name_91 WHERE tyre = "d" AND circuit = "monaco"
### Context: CREATE TABLE table_name_91 (date VARCHAR, tyre VARCHAR, circuit VARCHAR) ### Question: On what date is there a Tryre of d at the Circuit of monaco? ### Answer: SELECT date FROM table_name_91 WHERE tyre = "d" AND circuit = "monaco"
What's the date that Morocco has an Against along with a surface of hard?
CREATE TABLE table_name_46 (date VARCHAR, against VARCHAR, surface VARCHAR)
SELECT date FROM table_name_46 WHERE against = "morocco" AND surface = "hard"
### Context: CREATE TABLE table_name_46 (date VARCHAR, against VARCHAR, surface VARCHAR) ### Question: What's the date that Morocco has an Against along with a surface of hard? ### Answer: SELECT date FROM table_name_46 WHERE against = "morocco" AND surface = "hard"
What's Round has a Surface of hard and Opponent of Jelena Simic?
CREATE TABLE table_name_51 (round VARCHAR, surface VARCHAR, opponent VARCHAR)
SELECT round FROM table_name_51 WHERE surface = "hard" AND opponent = "jelena simic"
### Context: CREATE TABLE table_name_51 (round VARCHAR, surface VARCHAR, opponent VARCHAR) ### Question: What's Round has a Surface of hard and Opponent of Jelena Simic? ### Answer: SELECT round FROM table_name_51 WHERE surface = "hard" AND opponent = "jelena simic"
What driver won in the xv grand prix de l'albigeois in a vehicle by ferrari?
CREATE TABLE table_name_95 (winning_driver VARCHAR, constructor VARCHAR, race_name VARCHAR)
SELECT winning_driver FROM table_name_95 WHERE constructor = "ferrari" AND race_name = "xv grand prix de l'albigeois"
### Context: CREATE TABLE table_name_95 (winning_driver VARCHAR, constructor VARCHAR, race_name VARCHAR) ### Question: What driver won in the xv grand prix de l'albigeois in a vehicle by ferrari? ### Answer: SELECT winning_driver FROM table_name_95 WHERE constructor = "ferrari" AND race_name = "xv grand prix de l'albigeois"
What is the latest death with a description of BR-Built inspection saloon?
CREATE TABLE table_name_4 (date INTEGER, description VARCHAR)
SELECT MAX(date) FROM table_name_4 WHERE description = "br-built inspection saloon"
### Context: CREATE TABLE table_name_4 (date INTEGER, description VARCHAR) ### Question: What is the latest death with a description of BR-Built inspection saloon? ### Answer: SELECT MAX(date) FROM table_name_4 WHERE description = "br-built inspection saloon"
What is the identifying number for a description of Stanier (Period III) full brake?
CREATE TABLE table_name_57 (number_ VARCHAR, _name VARCHAR, description VARCHAR)
SELECT number_ & _name FROM table_name_57 WHERE description = "stanier (period iii) full brake"
### Context: CREATE TABLE table_name_57 (number_ VARCHAR, _name VARCHAR, description VARCHAR) ### Question: What is the identifying number for a description of Stanier (Period III) full brake? ### Answer: SELECT number_ & _name FROM table_name_57 WHERE description = "stanier (period iii) full brake"
What is the date with identifying number of No. 37817?
CREATE TABLE table_name_86 (date VARCHAR, number_ VARCHAR, _name VARCHAR)
SELECT date FROM table_name_86 WHERE number_ & _name = "no. 37817"
### Context: CREATE TABLE table_name_86 (date VARCHAR, number_ VARCHAR, _name VARCHAR) ### Question: What is the date with identifying number of No. 37817? ### Answer: SELECT date FROM table_name_86 WHERE number_ & _name = "no. 37817"
What is the release date for the standard cd release format in north america?
CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR)
SELECT release_date FROM table_name_18 WHERE release_format = "standard cd" AND country = "north america"
### Context: CREATE TABLE table_name_18 (release_date VARCHAR, release_format VARCHAR, country VARCHAR) ### Question: What is the release date for the standard cd release format in north america? ### Answer: SELECT release_date FROM table_name_18 WHERE release_format = "standard cd" AND country = "north america"
What is the cat no for the label mute and the standard cd format?
CREATE TABLE table_name_23 (cat_no VARCHAR, label_s_ VARCHAR, release_format VARCHAR)
SELECT cat_no FROM table_name_23 WHERE label_s_ = "mute" AND release_format = "standard cd"
### Context: CREATE TABLE table_name_23 (cat_no VARCHAR, label_s_ VARCHAR, release_format VARCHAR) ### Question: What is the cat no for the label mute and the standard cd format? ### Answer: SELECT cat_no FROM table_name_23 WHERE label_s_ = "mute" AND release_format = "standard cd"
What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4?
CREATE TABLE table_name_51 (rating INTEGER, night_rank VARCHAR, timeslot_rank VARCHAR)
SELECT AVG(rating) FROM table_name_51 WHERE night_rank = "11" AND timeslot_rank > 4
### Context: CREATE TABLE table_name_51 (rating INTEGER, night_rank VARCHAR, timeslot_rank VARCHAR) ### Question: What is the rating for the episode with the night rank of 11 and timeslot rank is larger than 4? ### Answer: SELECT AVG(rating) FROM table_name_51 WHERE night_rank = "11" AND timeslot_rank > 4
What is the smallest share for a timeslot ranking less than 4 and fewer viewers than 8.78 million?
CREATE TABLE table_name_67 (share INTEGER, viewers__m_ VARCHAR, timeslot_rank VARCHAR)
SELECT MIN(share) FROM table_name_67 WHERE viewers__m_ < 8.78 AND timeslot_rank < 4
### Context: CREATE TABLE table_name_67 (share INTEGER, viewers__m_ VARCHAR, timeslot_rank VARCHAR) ### Question: What is the smallest share for a timeslot ranking less than 4 and fewer viewers than 8.78 million? ### Answer: SELECT MIN(share) FROM table_name_67 WHERE viewers__m_ < 8.78 AND timeslot_rank < 4
What is the rating of the episode with 13.47 million viewers and overall rank larger than 6?
CREATE TABLE table_name_69 (rating INTEGER, viewers__m_ VARCHAR, overall_rank VARCHAR)
SELECT SUM(rating) FROM table_name_69 WHERE viewers__m_ = 13.47 AND overall_rank > 6
### Context: CREATE TABLE table_name_69 (rating INTEGER, viewers__m_ VARCHAR, overall_rank VARCHAR) ### Question: What is the rating of the episode with 13.47 million viewers and overall rank larger than 6? ### Answer: SELECT SUM(rating) FROM table_name_69 WHERE viewers__m_ = 13.47 AND overall_rank > 6
What is the rank of the episode with a share of 6 and timeslot rank smaller than 4?
CREATE TABLE table_name_39 (overall_rank INTEGER, share VARCHAR, timeslot_rank VARCHAR)
SELECT AVG(overall_rank) FROM table_name_39 WHERE share = 6 AND timeslot_rank < 4
### Context: CREATE TABLE table_name_39 (overall_rank INTEGER, share VARCHAR, timeslot_rank VARCHAR) ### Question: What is the rank of the episode with a share of 6 and timeslot rank smaller than 4? ### Answer: SELECT AVG(overall_rank) FROM table_name_39 WHERE share = 6 AND timeslot_rank < 4
How many premierships for the queensland raceway?
CREATE TABLE table_name_40 (premierships VARCHAR, venue VARCHAR)
SELECT premierships FROM table_name_40 WHERE venue = "queensland raceway"
### Context: CREATE TABLE table_name_40 (premierships VARCHAR, venue VARCHAR) ### Question: How many premierships for the queensland raceway? ### Answer: SELECT premierships FROM table_name_40 WHERE venue = "queensland raceway"
How many premierships for the commonwealth bank trophy league?
CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR)
SELECT premierships FROM table_name_25 WHERE league = "commonwealth bank trophy"
### Context: CREATE TABLE table_name_25 (premierships VARCHAR, league VARCHAR) ### Question: How many premierships for the commonwealth bank trophy league? ### Answer: SELECT premierships FROM table_name_25 WHERE league = "commonwealth bank trophy"
In which round was there a pick of 4?
CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR)
SELECT MAX(round) FROM table_name_66 WHERE pick = 4
### Context: CREATE TABLE table_name_66 (round INTEGER, pick VARCHAR) ### Question: In which round was there a pick of 4? ### Answer: SELECT MAX(round) FROM table_name_66 WHERE pick = 4
How many rounds were there an offensive tackle position?
CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR)
SELECT COUNT(round) FROM table_name_66 WHERE position = "offensive tackle"
### Context: CREATE TABLE table_name_66 (round VARCHAR, position VARCHAR) ### Question: How many rounds were there an offensive tackle position? ### Answer: SELECT COUNT(round) FROM table_name_66 WHERE position = "offensive tackle"
What was the pick number in round 228 for Mike Ford?
CREATE TABLE table_name_44 (pick INTEGER, player VARCHAR, round VARCHAR)
SELECT MAX(pick) FROM table_name_44 WHERE player = "mike ford" AND round > 228
### Context: CREATE TABLE table_name_44 (pick INTEGER, player VARCHAR, round VARCHAR) ### Question: What was the pick number in round 228 for Mike Ford? ### Answer: SELECT MAX(pick) FROM table_name_44 WHERE player = "mike ford" AND round > 228
What year was E. Meyer the driver?
CREATE TABLE table_name_9 (year VARCHAR, driver VARCHAR)
SELECT year FROM table_name_9 WHERE driver = "e. meyer"
### Context: CREATE TABLE table_name_9 (year VARCHAR, driver VARCHAR) ### Question: What year was E. Meyer the driver? ### Answer: SELECT year FROM table_name_9 WHERE driver = "e. meyer"
What is the name of the driver of the vehicle constructed by Bugatti in Anfa?
CREATE TABLE table_name_2 (driver VARCHAR, constructor VARCHAR, location VARCHAR)
SELECT driver FROM table_name_2 WHERE constructor = "bugatti" AND location = "anfa"
### Context: CREATE TABLE table_name_2 (driver VARCHAR, constructor VARCHAR, location VARCHAR) ### Question: What is the name of the driver of the vehicle constructed by Bugatti in Anfa? ### Answer: SELECT driver FROM table_name_2 WHERE constructor = "bugatti" AND location = "anfa"
What company constructed the vehicle in the location not held in 1933?
CREATE TABLE table_name_99 (constructor VARCHAR, location VARCHAR, year VARCHAR)
SELECT constructor FROM table_name_99 WHERE location = "not held" AND year = "1933"
### Context: CREATE TABLE table_name_99 (constructor VARCHAR, location VARCHAR, year VARCHAR) ### Question: What company constructed the vehicle in the location not held in 1933? ### Answer: SELECT constructor FROM table_name_99 WHERE location = "not held" AND year = "1933"
What company constructed the vehicle when the driver shows as not held?
CREATE TABLE table_name_61 (constructor VARCHAR, driver VARCHAR)
SELECT constructor FROM table_name_61 WHERE driver = "not held"
### Context: CREATE TABLE table_name_61 (constructor VARCHAR, driver VARCHAR) ### Question: What company constructed the vehicle when the driver shows as not held? ### Answer: SELECT constructor FROM table_name_61 WHERE driver = "not held"
What is the name of the driver in 1955?
CREATE TABLE table_name_18 (driver VARCHAR, year VARCHAR)
SELECT driver FROM table_name_18 WHERE year = "1955"
### Context: CREATE TABLE table_name_18 (driver VARCHAR, year VARCHAR) ### Question: What is the name of the driver in 1955? ### Answer: SELECT driver FROM table_name_18 WHERE year = "1955"
What is the name of the constructor when report shows report in 1955?
CREATE TABLE table_name_48 (constructor VARCHAR, year VARCHAR)
SELECT constructor FROM table_name_48 WHERE "report" = "report" AND year = "1955"
### Context: CREATE TABLE table_name_48 (constructor VARCHAR, year VARCHAR) ### Question: What is the name of the constructor when report shows report in 1955? ### Answer: SELECT constructor FROM table_name_48 WHERE "report" = "report" AND year = "1955"
What is the inductioin for 1975–1976?
CREATE TABLE table_name_93 (induction VARCHAR, years VARCHAR)
SELECT induction FROM table_name_93 WHERE years = "1975–1976"
### Context: CREATE TABLE table_name_93 (induction VARCHAR, years VARCHAR) ### Question: What is the inductioin for 1975–1976? ### Answer: SELECT induction FROM table_name_93 WHERE years = "1975–1976"
What is the power of an engine of 1972?
CREATE TABLE table_name_73 (power VARCHAR, years VARCHAR)
SELECT power FROM table_name_73 WHERE years = "1972"
### Context: CREATE TABLE table_name_73 (power VARCHAR, years VARCHAR) ### Question: What is the power of an engine of 1972? ### Answer: SELECT power FROM table_name_73 WHERE years = "1972"
In the game where richmond was the away team, what venue was it played at?
CREATE TABLE table_name_99 (venue VARCHAR, away_team VARCHAR)
SELECT venue FROM table_name_99 WHERE away_team = "richmond"
### Context: CREATE TABLE table_name_99 (venue VARCHAR, away_team VARCHAR) ### Question: In the game where richmond was the away team, what venue was it played at? ### Answer: SELECT venue FROM table_name_99 WHERE away_team = "richmond"
On what date did the match where fitzroy was the home team occur?
CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR)
SELECT date FROM table_name_90 WHERE home_team = "fitzroy"
### Context: CREATE TABLE table_name_90 (date VARCHAR, home_team VARCHAR) ### Question: On what date did the match where fitzroy was the home team occur? ### Answer: SELECT date FROM table_name_90 WHERE home_team = "fitzroy"
What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1?
CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR)
SELECT MIN(apps) FROM table_name_79 WHERE country = "honduras" AND goals < 2 AND team = "club deportivo victoria" AND division > 1
### Context: CREATE TABLE table_name_79 (apps INTEGER, division VARCHAR, team VARCHAR, country VARCHAR, goals VARCHAR) ### Question: What is the smallest apps in Honduras with less than 2 goals for Club Deportivo Victoria in a division over 1? ### Answer: SELECT MIN(apps) FROM table_name_79 WHERE country = "honduras" AND goals < 2 AND team = "club deportivo victoria" AND division > 1
What grid for jacques villeneuve with over 36 laps?
CREATE TABLE table_name_8 (grid INTEGER, driver VARCHAR, laps VARCHAR)
SELECT MAX(grid) FROM table_name_8 WHERE driver = "jacques villeneuve" AND laps > 36
### Context: CREATE TABLE table_name_8 (grid INTEGER, driver VARCHAR, laps VARCHAR) ### Question: What grid for jacques villeneuve with over 36 laps? ### Answer: SELECT MAX(grid) FROM table_name_8 WHERE driver = "jacques villeneuve" AND laps > 36
What were the lowest laps of Tarso Marques?
CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR)
SELECT MIN(laps) FROM table_name_69 WHERE driver = "tarso marques"
### Context: CREATE TABLE table_name_69 (laps INTEGER, driver VARCHAR) ### Question: What were the lowest laps of Tarso Marques? ### Answer: SELECT MIN(laps) FROM table_name_69 WHERE driver = "tarso marques"
What's the average Grid for those who spun off after Lap 64?
CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64
### Context: CREATE TABLE table_name_68 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What's the average Grid for those who spun off after Lap 64? ### Answer: SELECT AVG(grid) FROM table_name_68 WHERE time_retired = "spun off" AND laps > 64
What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps?
CREATE TABLE table_name_27 (grid INTEGER, time_retired VARCHAR, laps VARCHAR)
SELECT SUM(grid) FROM table_name_27 WHERE time_retired = "+ 1:33.141" AND laps < 70
### Context: CREATE TABLE table_name_27 (grid INTEGER, time_retired VARCHAR, laps VARCHAR) ### Question: What is the grid total that has a Time/Retired of + 1:33.141, and under 70 laps? ### Answer: SELECT SUM(grid) FROM table_name_27 WHERE time_retired = "+ 1:33.141" AND laps < 70