question
stringlengths
12
244
sql
stringlengths
22
468
What is the average laps for the +50.653 time?
SELECT AVG Laps FROM table WHERE Time = +50.653
What is the highest Matches were the points were smaller than 8, the place was larger than 13, and the drawn is less than 1?
SELECT MAX Matches FROM table WHERE Points < 8 AND Place > 13 AND Drawn < 1
What is the average points when the drawn is less than 0?
SELECT AVG Points FROM table WHERE Drawn < 0
What was Turkey's lowest gold when there were less than 2 bronze?
SELECT MIN Gold FROM table WHERE Nation = turkey AND Bronze < 2
What is the average area in square miles for the division that is 9,630,960 square kilometers with a national share larger than 100%?
SELECT AVG Area (sq mi) FROM table WHERE Area (km²) = 9,630,960 AND National Share (%) > 100
What is the average area in square miles for the hunan administrative division with a national share less than 2.19%?
SELECT AVG Area (sq mi) FROM table WHERE Administrative Division = hunan AND National Share (%) < 2.19
What is the average square kilometer area of the division that has a 2,448 square mile area and a national share larger than 0.065%?
SELECT AVG Area (km²) FROM table WHERE Area (sq mi) = 2,448 AND National Share (%) > 0.065
What is Central Michigan's average overall when the pick was 8?
SELECT AVG Overall FROM table WHERE College = central michigan AND Pick = 8
what is the record when the opponent is jeff williams?
SELECT Record FROM table WHERE Opponent = jeff williams
what is the method for round 1 and the opponent is bobby mcmaster?
SELECT Method FROM table WHERE Round = 1 AND Opponent = bobby mcmaster
what is the location when the time is 3:15?
SELECT Location FROM table WHERE Time = 3:15
what is the record when the round is before 3 and the time si 4:59?
SELECT Record FROM table WHERE Round < 3 AND Time = 4:59
what is the record when the event is shido usa mma and the opponent is raphael assunção?
SELECT Record FROM table WHERE Event = shido usa mma AND Opponent = raphael assunção
How much money did Ben Crenshaw earn?
SELECT Money ( $ ) FROM table WHERE Player = ben crenshaw
what is the competition when the score is 2-1?
SELECT Competition FROM table WHERE Score = 2-1
what is the venue when the score is 10-0 on 1997-06-22?
SELECT Venue FROM table WHERE Score = 10-0 AND Date = 1997-06-22
what is the venue when the competition is 1996 afc asian cup group stage?
SELECT Venue FROM table WHERE Competition = 1996 afc asian cup group stage
what is the competition when the date is 1995-08-06?
SELECT Competition FROM table WHERE Date = 1995-08-06
What is the total number of weeks that the Giants played against the Dallas Cowboys?
SELECT COUNT Week FROM table WHERE Opponent = dallas cowboys
Which Home has an Away of hispano?
SELECT Home FROM table WHERE Away = hispano
What engine has the Mercedes AMG Petronas f1 team, and 93 points?
SELECT Engine FROM table WHERE Entrant = mercedes amg petronas f1 team AND Points = 93
Which Chassis has 4 points?
SELECT Chassis FROM table WHERE Points = 4
What is Opponent, when Year is greater than 2009, and when Score is 7–5, 6–7 (6–8) , 6–1?
SELECT Opponent FROM table WHERE Year > 2009 AND Score = 7–5, 6–7 (6–8) , 6–1
What is the lowest Year, when Surface is Hard, and when Opponent is Dinara Safina?
SELECT MIN Year FROM table WHERE Surface = hard AND Opponent = dinara safina
What is Surface, when Championship is Australian Open?
SELECT Surface FROM table WHERE Championship = australian open
What is Outcome, when Opponent is Victoria Azarenka, and when Score is 6–2, 2–6, 7–5?
SELECT Outcome FROM table WHERE Opponent = victoria azarenka AND Score = 6–2, 2–6, 7–5
WHAT SERIES WAS RELEASED BY ITV STUDIOS AND A RELEASE DATE OF AUGUST 15, 2012?
SELECT Series FROM table WHERE Released by = itv studios AND Release Date = august 15, 2012
WHAT IS THE EPISODE NUMBER THAT HAS 28 DVD?
SELECT Episode No. FROM table WHERE No. of DVDs = 28
WHAT EPISODE HAS A REGION NUMBER BIGGER THAN 1, AND 32 DVDS?
SELECT Episode No. FROM table WHERE Region No. > 1 AND No. of DVDs = 32
Who was the player from Duke?
SELECT Position FROM table WHERE From = duke
What is Duration, when Test Flight is Taxi Test #2?
SELECT Duration FROM table WHERE Test flight = taxi test #2
What it Duration, when Test Flight is Free Flight #3?
SELECT Duration FROM table WHERE Test flight = free flight #3
What is Date, when Comment is Tailcone On, Lakebed Landing, and when Duration is 5min 34 s?
SELECT Date FROM table WHERE Comment = tailcone on, lakebed landing AND Duration = 5min 34 s
What is Crew, when Date is July 26, 1977?
SELECT Crew FROM table WHERE Date = july 26, 1977
What is Years, when Nationality is United States, and when Position is PG / SG?
SELECT Years FROM table WHERE Nationality = united states AND Position = pg / sg
What is Nationality, when Years is 1979?
SELECT Nationality FROM table WHERE Years = 1979
What is From, when Player is Jackie Robinson Category:Articles With Hcards?
SELECT From FROM table WHERE Player = jackie robinson category:articles with hcards
WHAT SCORE HAS A TIME OF 18:27?
SELECT Score FROM table WHERE Time = 18:27
WHAT GOAL HAS A TIME OF 39:37?
SELECT Goal FROM table WHERE Time = 39:37
What is Electorate, when Party is "Country", when State is "WA", and when Member is "John Hallett"?
SELECT Electorate FROM table WHERE Party = country AND State = wa AND Member = john hallett
What is Term of Office, when Member is "Dominic Costa"?
SELECT Term of office FROM table WHERE Member = dominic costa
What is State, when Member is "Gil Duthie"?
SELECT State FROM table WHERE Member = gil duthie
What was the number of attendance at Stadion with a score of 2-0
SELECT Attendance FROM table WHERE Venue = stadion AND Score = 2-0
What season did the Rangers win?
SELECT Season FROM table WHERE Winner = rangers
What is the score of the game with Falkirk as the runner-up?
SELECT Score FROM table WHERE Runner-up = falkirk
What is the venue of the game where hibernian won and the rangers were the runner-up?
SELECT Venue FROM table WHERE Runner-up = rangers AND Winner = hibernian
what is the country for the 1972 winter olympics?
SELECT Country FROM table WHERE Winter Olympics = 1972
what is the winter olympics year when the fis nordic world ski championships is 1976?
SELECT Winter Olympics FROM table WHERE FIS Nordic World Ski Championships = 1976
what is the earliest winter olympics when the fis nordic world ski championships is 1976?
SELECT MIN Winter Olympics FROM table WHERE FIS Nordic World Ski Championships = 1976
what is the winter olympics when the country is soviet union and holmenkollen is 1970, 1979?
SELECT SUM Winter Olympics FROM table WHERE Country = soviet union AND Holmenkollen = 1970, 1979
what is the date when the away team is newport county?
SELECT Date FROM table WHERE Away team = newport county
How many games have 5 goals and less than 8 assists?
SELECT COUNT Games FROM table WHERE Goals = 5 AND Assists < 8
What is the highest number of goals Eisbären Berlin had along with 13 points and 10 assists?
SELECT MAX Goals FROM table WHERE Points = 13 AND Assists = 10 AND Club = eisbären berlin
What is Ivan Ciernik's average points with less than 11 goals?
SELECT AVG Points FROM table WHERE Player = ivan ciernik AND Goals < 11
Which province is Parun in?
SELECT Province FROM table WHERE Centers = parun
In which category is Frank Scarabino a pilot?
SELECT Category FROM table WHERE Pilot = frank scarabino
What is the sum of speed in km per hour reached by John Egginton?
SELECT SUM Speed (km/h) FROM table WHERE Pilot = john egginton
What is the name of team 1 that was after the 2005 season and with a 4-2 score?
SELECT Team 1 FROM table WHERE Season > 2005 AND Score = 4-2
In the 2004 season with a 0-2 score what was the name of the venue?
SELECT Venue FROM table WHERE Score = 0-2 AND Season = 2004
What is the earliest season that Pisico Bình ðinh is team 2?
SELECT MIN Season FROM table WHERE Team 2 = pisico bình ðinh
Which years have a rank less than 2?
SELECT Years FROM table WHERE Rank < 2
How many games have rebounds larger than 1048?
SELECT COUNT Games FROM table WHERE Total Rebounds > 1048
How many rebounds have a Player of andre gaddy, and a Rank smaller than 6?
SELECT COUNT Total Rebounds FROM table WHERE Player = andre gaddy AND Rank < 6
How many rebounds have a Player of herb estes?
SELECT COUNT Total Rebounds FROM table WHERE Player = herb estes
What is the total of rebound averages with more than 98 games and a rank of 7?
SELECT SUM Reb. Avg. FROM table WHERE Games > 98 AND Rank = 7
Can you tell me the Date that has the Team of golden state?
SELECT Date FROM table WHERE Team = golden state
Can you tell me the High assists that has the Date of november 25?
SELECT High assists FROM table WHERE Date = november 25
Can you tell me the Team that has the High rebounds of antawn jamison (10), and the Date of november 5?
SELECT Team FROM table WHERE High rebounds = antawn jamison (10) AND Date = november 5
Can you tell me the High rebounds that has the Date of november 5?
SELECT High rebounds FROM table WHERE Date = november 5
WHAT IS THE TEAM WITH astc round 1?
SELECT Team FROM table WHERE Series = astc round 1
WHAT IS THE WINNER WITH ATCC ROUND 6?
SELECT Winner FROM table WHERE Series = atcc round 6
What is the lowest number of points the 49ers scored when the record was 1-5 and there were more than 29,563 fans attending?
SELECT MIN 49ers points FROM table WHERE Attendance > 29,563 AND Record = 1-5
What was the highest attendance for the game where the record was 0-5 and the opponents scored more than 20 points?
SELECT MAX Attendance FROM table WHERE Record = 0-5 AND Opponents > 20
What is the street address of Notre Dame Basilica?
SELECT Street address FROM table WHERE Name = notre dame basilica
What is the name of the building that was the tallest for 28 years?
SELECT Name FROM table WHERE # of Years as tallest = 28 years
What is the Region, when the Catalog is SM 2965-05?
SELECT Region FROM table WHERE Catalog = sm 2965-05
What is the Region, when the Catalog is 25AP 301?
SELECT Region FROM table WHERE Catalog = 25ap 301
What is Date, when Catalog is EPC 81436?
SELECT Date FROM table WHERE Catalog = epc 81436
What is Label, when Format is Double CD?
SELECT Label FROM table WHERE Format = double cd
What is Label, when Region is Japan?
SELECT Label FROM table WHERE Region = japan
What is Format, when Region is United States?
SELECT Format FROM table WHERE Region = united states
What was the date of appointment for the manager of lecce when the previous manager's contract expired?
SELECT Date of appointment FROM table WHERE Manner of departure = contract expired AND Team = lecce
What was the manner of departure for the outgoing manager, davide ballardini?
SELECT Manner of departure FROM table WHERE Outgoing manager = davide ballardini
What was the manner of departure for the outgoing manager, giuseppe iachini?
SELECT Manner of departure FROM table WHERE Outgoing manager = giuseppe iachini
What is the date of appointment for the outgoing manager edoardo reja?
SELECT Date of appointment FROM table WHERE Outgoing manager = edoardo reja
At what event did he fight matt eckerle?
SELECT Event FROM table WHERE Opponent = matt eckerle
What is the highest Round that lasted 1:44?
SELECT MAX Round FROM table WHERE Time = 1:44
What is the number for the interview in Illinois when the preliminary is less than 8.558?
SELECT SUM Interview FROM table WHERE Country = illinois AND Preliminary < 8.558
What is the name of the country with less than 9.033 for swimsuit, 8.611 for interview and preliminary is less than 8.87?
SELECT Country FROM table WHERE Swimsuit < 9.033 AND Interview = 8.611 AND Preliminary < 8.87
What is the evening gown number when the average is more than 8.984 in Louisiana and the preliminary is more than 8.597?
SELECT COUNT Evening Gown FROM table WHERE Average > 8.984 AND Country = louisiana AND Preliminary > 8.597
What is the interview number in Louisiana, and the swimsuit number is more than 9.1?
SELECT COUNT Interview FROM table WHERE Country = louisiana AND Swimsuit > 9.1
What is the swimsuit number when the preliminary is 8.721, and the average is more than 8.781?
SELECT COUNT Swimsuit FROM table WHERE Preliminary = 8.721 AND Average > 8.781
Where was the game played on 30 May 2004?
SELECT Venue FROM table WHERE Date = 30 may 2004
Who was Silva's Partner in the Amarante Tournament played on a Hard Surface?
SELECT Partner FROM table WHERE Surface = hard AND Tournament = amarante
Who was Silva's Partner in the match with a Score of 6–3, 7–6 (7–3)?
SELECT Partner FROM table WHERE Score = 6–3, 7–6 (7–3)
On what Date was the match with partner Kira Nagy?
SELECT Date FROM table WHERE Partner = kira nagy
What is the Date of the Vigo Tournament?
SELECT Date FROM table WHERE Tournament = vigo
What Tournament did Silva Partner with Nicole Thijssen with Opponent in the final Nina Bratchikova & Frederica Piedade?
SELECT Tournament FROM table WHERE Partner = nicole thijssen AND Opponent in the final = nina bratchikova & frederica piedade
What is Name, when State is "Jin"?
SELECT Name FROM table WHERE State = jin
What is Name, when Royal House is "Ji", and when State is "Cai"?
SELECT Name FROM table WHERE Royal house = ji AND State = cai