question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
Who built the car that retired due to suspension before 65 laps?
CREATE TABLE table_name_7 (constructor VARCHAR, laps VARCHAR, time_retired VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT SUM(grid) FROM table_name_27 WHERE time_retired = \"+ 1:33.141\" AND laps < 70" }