question
stringlengths
12
244
sql
stringlengths
22
468
Who won the Brands Hatch circuit?
SELECT Winning driver FROM table WHERE Circuit = Brands Hatch
Who constructed the I Italian Republic Grand Prix?
SELECT Constructor FROM table WHERE Race Name = I Italian Republic Grand Prix
What race was held at Oulton Park?
SELECT Race Name FROM table WHERE Circuit = Oulton Park
Did the I Brazilian Grand Prix have a report?
SELECT Report FROM table WHERE Race Name = I Brazilian Grand Prix
what is the race where the pole position is niki lauda and the date is 27 april?
SELECT Race FROM table WHERE Pole Position = Niki Lauda AND Date = 27 April
what is the date where the constructor is ferrari and the location is anderstorp?
SELECT Date FROM table WHERE Constructor = Ferrari AND Location = Anderstorp
how many times is the pole position niki lauda and the race is monaco grand prix?
SELECT COUNT Rnd FROM table WHERE Pole Position = Niki Lauda AND Race = Monaco Grand Prix
what is the report where the location is kyalami?
SELECT Report FROM table WHERE Location = Kyalami
who is the pole position for the rnd 3
SELECT Pole Position FROM table WHERE Rnd = 3
what is the race where the fastest lap is by jean-pierre jarier?
SELECT Race FROM table WHERE Fastest Lap = Jean-Pierre Jarier
What circuit did Clay Regazzoni win?
SELECT Circuit FROM table WHERE Winning driver = Clay Regazzoni
What was the date when Chris Amon won?
SELECT Date FROM table WHERE Winning driver = Chris Amon
What circuit is the Vi Rhein-Pokalrennen race in?
SELECT Circuit FROM table WHERE Race Name = VI Rhein-Pokalrennen
What date is listed at place 13
SELECT Date FROM table WHERE # = 13
What date has a solitudering circuit
SELECT Date FROM table WHERE Circuit = Solitudering
How many dates have silverstone circuit
SELECT COUNT Date FROM table WHERE Circuit = Silverstone
How many constructors are listed for the XVI BRDC international trophy race
SELECT COUNT Constructor FROM table WHERE Race Name = XVI BRDC International Trophy
What is the name of the circuit in which the race name is ii danish grand prix?
SELECT Circuit FROM table WHERE Race Name = II Danish Grand Prix
What is te name of the constructors dated 26 march?
SELECT Constructor FROM table WHERE Date = 26 March
What is the total amount of circuts dated 22 april?
SELECT COUNT Circuit FROM table WHERE Date = 22 April
what is the name of the constructor that has the circuit zeltweg airfield?
SELECT Constructor FROM table WHERE Circuit = Zeltweg Airfield
What is the name of the winning driver where the circuit name is posillipo?
SELECT Winning driver FROM table WHERE Circuit = Posillipo
What is the name of the circuit where the race xi Syracuse grand prix was held?
SELECT Circuit FROM table WHERE Race Name = XI Syracuse Grand Prix
What kind of report is for the Pau circuit?
SELECT Report FROM table WHERE Circuit = Pau
How many different kinds of reports are there for races that Juan Manuel Fangio won?
SELECT COUNT Report FROM table WHERE Winning driver = Juan Manuel Fangio
Who constructed the Syracuse circuit?
SELECT Constructor FROM table WHERE Circuit = Syracuse
What is the name of the race in the Modena circuit?
SELECT Race Name FROM table WHERE Circuit = Modena
What is the race name in the Monza circuit?
SELECT Race Name FROM table WHERE Circuit = Monza
When does V Madgwick Cup take place?
SELECT Date FROM table WHERE Race Name = V Madgwick Cup
Which driver won the race xiv eläintarhanajot?
SELECT Winning driver FROM table WHERE Race Name = XIV Eläintarhanajot
Who won the Modena circuit?
SELECT Winning driver FROM table WHERE Circuit = Modena
How many constructors won the III Redex Trophy?
SELECT COUNT Constructor FROM table WHERE Race Name = III RedeX Trophy
What was the report of Mike Hawthorn's winning race?
SELECT Report FROM table WHERE Winning driver = Mike Hawthorn
What was the name of the race in Bordeaux?
SELECT Race Name FROM table WHERE Circuit = Bordeaux
What is the report for the race name V Ulster Trophy?
SELECT Report FROM table WHERE Race Name = V Ulster Trophy
What is the constructor for the Silverstone circuit?
SELECT Constructor FROM table WHERE Circuit = Silverstone
What's the report for the Silverstone circuit?
SELECT Report FROM table WHERE Circuit = Silverstone
What's the report for the race name, XIII Grand Prix de l'Albigeois?
SELECT Report FROM table WHERE Race Name = XIII Grand Prix de l'Albigeois
Which date did the race name XII Pau Grand Prix take place on?
SELECT Date FROM table WHERE Race Name = XII Pau Grand Prix
Who was the winning driver for the goodwood circuit?
SELECT Winning driver FROM table WHERE Circuit = Goodwood
How many millions of U.S. viewers whatched episodes written by Krystal Houghton?
SELECT U.S. viewers (millions) FROM table WHERE Written by = Krystal Houghton
How many titles were directed in series 79?
SELECT COUNT Directed by FROM table WHERE No. in series = 79
Who wrote an episode watched by 19.01 million US viewers?
SELECT Written by FROM table WHERE U.S. viewers (millions) = 19.01
What are the titles of the episodes where Rodman Flender is the director?
SELECT Episode title FROM table WHERE Director = Rodman Flender
What is the original air date of the Jamie Babbit directed episode?
SELECT Original air date FROM table WHERE Director = Jamie Babbit
What is the original air date when there were 12.81 million u.s viewers?
SELECT Original air date FROM table WHERE U.S. viewers (millions) = 12.81
When did Shelia Lawrence join the series?
SELECT MIN Series # FROM table WHERE Writer(s) = Shelia Lawrence
Who was the director when there were 13.66 million u.s viewers?
SELECT Director FROM table WHERE U.S. viewers (millions) = 13.66
Name the percentage where the amount won was 25
SELECT Pct % FROM table WHERE Won = 25
How many games were won with 2nd oha was standing and there were 62 games?
SELECT Won FROM table WHERE Standing = 2nd OHA AND Games = 62
What is the Liscumb when Gauthier is 34?
SELECT Liscumb FROM table WHERE Gauthier = 34
What is the Bello when Ben-Tahir is 296?
SELECT Bello FROM table WHERE Ben-Tahir = 296
What is Ben-Tahir when Bello is 51?
SELECT Ben-Tahir FROM table WHERE Bello = 51
What is Haydon when Larter is 11 and Libweshya is 4?
SELECT Haydon FROM table WHERE Larter = 11 AND Libweshya = 4
What is Liscumb when Haydon is 1632?
SELECT Liscumb FROM table WHERE Haydon = 1632
What is Doucet when Lawrance is 36?
SELECT Doucet FROM table WHERE Lawrance = 36
Which tv had the date december 7, 1986?
SELECT TV FROM table WHERE Date = December 7, 1986
Which kickoff has the opponent at new orleans saints?
SELECT Kickoff [a ] FROM table WHERE Opponent = at New Orleans Saints
How many houses are green?
SELECT COUNT House Name FROM table WHERE Colours = Green
What year was the house named gongola made?
SELECT Founded FROM table WHERE House Name = Gongola
What is the name of the green house?
SELECT House Name FROM table WHERE Colours = Green
What is the green house made of?
SELECT Composition FROM table WHERE Colours = Green
What is the benue house made of?
SELECT Composition FROM table WHERE House Name = Benue
In which week was the game against a team with a record of 3-6 played?
SELECT COUNT Week FROM table WHERE Record = 3-6
Which channel had the game against the Minnesota Vikings?
SELECT TV FROM table WHERE Opponent = Minnesota Vikings
How many opponents were there at the game with 64,087 people in attendance?
SELECT COUNT Opponent FROM table WHERE Attendance = 64,087
Where was the game played when the team's record was 1-3?
SELECT Game site FROM table WHERE Record = 1-3
How many times was there a kickoff in the September 4, 1988 game?
SELECT COUNT Kickoff [a ] FROM table WHERE Date = September 4, 1988
How many crowds watched the game where the record was 1-3?
SELECT COUNT Attendance FROM table WHERE Record = 1-3
What year finished with Daniel Zueras as the runner-up?
SELECT COUNT Year FROM table WHERE Runner-up = Daniel Zueras
How many people hosted the show in the year when Chenoa ended up in fourth place?
SELECT COUNT Host FROM table WHERE Fourth place = Chenoa
How many fourth places were there in 2003?
SELECT COUNT Fourth place FROM table WHERE Year = 2003
What is the engine type when the max torque at rpm is n·m ( lbf·ft ) @ 4,800 Answers:?
SELECT engine type FROM table WHERE max. torque at rpm = N·m ( lbf·ft ) @ 4,800
What is the engine configuration $notes 0-100km/h for the engine type b5244 t2?
SELECT engine configuration & notes 0-100km/h FROM table WHERE engine type = B5244 T2
What is the engine displacement for the engine type b5254 t?
SELECT engine displacement FROM table WHERE engine type = B5254 T
How many have are model 2.4 awd?
SELECT COUNT engine type FROM table WHERE model = 2.4 AWD
How many engine b5204 t3?
SELECT COUNT engine displacement FROM table WHERE engine type = B5204 T3
How many engine b5234 t3?
SELECT COUNT model FROM table WHERE engine type = B5234 T3
how many power (ps) with torque (nm@rpm) being 240@2200-5000
SELECT COUNT Power (ps) FROM table WHERE Torque (Nm@rpm) = 240@2200-5000
what's the comment with model name being 2.4 (2001-2007)
SELECT Comment FROM table WHERE Model name = 2.4 (2001-2007)
what's the model name with engine code being b5204 t5
SELECT Model name FROM table WHERE Engine code = B5204 T5
what's the dbeingplacement (cm³) with torque (nm@rpm) being 350@1800-6000
SELECT Displacement (cm³) FROM table WHERE Torque (Nm@rpm) = 350@1800-6000
what's the model name with torque (nm@rpm) being 230@4500
SELECT Model name FROM table WHERE Torque (Nm@rpm) = 230@4500
what's the model name with engine code being b5254 t4
SELECT Model name FROM table WHERE Engine code = B5254 T4
Name the torque of the engine is d5244 t5
SELECT Torque (Nm@rpm) FROM table WHERE Engine code = D5244 T5
What is the model of the engine d5244 t?
SELECT Model name FROM table WHERE Engine code = D5244 T
What is the model of the enginge d5252 t?
SELECT Model name FROM table WHERE Engine code = D5252 T
What is the model of the engine d5244 t7?
SELECT Model name FROM table WHERE Engine code = D5244 T7
What is the position of number 47?
SELECT Position FROM table WHERE No. = 47
Name the position of Turkey
SELECT Position FROM table WHERE Nationality = Turkey
Who is player number 51?
SELECT Player FROM table WHERE No. = 51
What is the position for the years 1998-99
SELECT Position FROM table WHERE Years for Jazz = 1998-99
How many positions are for creighton?
SELECT COUNT Position FROM table WHERE School/Club Team = Creighton
Which player is from Marshall and played 1974-75?
SELECT Player FROM table WHERE Years for Jazz = 1974-75 AND School/Club Team = Marshall
Which country is the player that went to Oregon?
SELECT Nationality FROM table WHERE School/Club Team = Oregon
Which country is Jim Les from?
SELECT Nationality FROM table WHERE Player = Jim Les
Which number is the player from Minnesota?
SELECT MAX No. FROM table WHERE School/Club Team = Minnesota
Which player played for years 2000-02
SELECT Player FROM table WHERE Years for Jazz = 2000-02
Which school is Kirk Snyder from?
SELECT School/Club Team FROM table WHERE Player = Kirk Snyder
What is the number for years 1985-88
SELECT MIN No. FROM table WHERE Years for Jazz = 1985-88