question
stringlengths
12
244
sql
stringlengths
22
468
What was the nationality of the athlete that ran the 10000 m event?
SELECT Nationality FROM table WHERE Event = 10000 m
What is the number of points of palamós cf, which has less than 21 wins and less than 40 goals?
SELECT COUNT Points FROM table WHERE Wins < 21 AND Club = palamós cf AND Goals for < 40
Which club has more than 46 goals, 10 wins, and a goal difference of -24?
SELECT Club FROM table WHERE Goals against > 46 AND Wins = 10 AND Goal Difference = -24
What is Richmond score as the away team?
SELECT Away team score FROM table WHERE Away team = richmond
Tell me the pole position with round less than 2
SELECT Pole Position FROM table WHERE Round < 2
I want the fastest lap for round of 16
SELECT Fastest Lap FROM table WHERE Round = 16
Which Record has a home of Nashville?
SELECT Record FROM table WHERE Home = nashville
Which Visitor played on January 17?
SELECT Visitor FROM table WHERE Date = january 17
Which game later than number 32 had both Ellis for the decision and Nashville as the visiting team?
SELECT Record FROM table WHERE Visitor = nashville AND Decision = ellis AND Game > 32
Who was the visiting team in the game sometime after number 29 that had 18,584 atttendees?
SELECT Visitor FROM table WHERE Game > 29 AND Attendance > 18,584
Which Crowd has an Away team score of 9.21 (75)?
SELECT SUM Crowd FROM table WHERE Away team score = 9.21 (75)
If there is a VCPC of 75km/h (47mph) what is the VCA?
SELECT VCA 155 FROM table WHERE VCPC = 75km/h (47mph)
If there is a VCRT of 7.62mm (0.3in) fn mag 60-20 machine gun, what is the VCTP of that?
SELECT VCTP FROM table WHERE VCRT = 7.62mm (0.3in) fn mag 60-20 machine gun
What is the airing date for a modern drama with more than 21 episodes?
SELECT Airing date FROM table WHERE Genre = modern drama AND Number of episodes > 21
What was the Constructor for the German Grand Prix Race?
SELECT Constructor FROM table WHERE Race = german grand prix
What Race did Michele Alboreto win?
SELECT Race FROM table WHERE Race Winner = michele alboreto
What was the Constructor for the race that had Derek Warwick as its Fastest Lap?
SELECT Constructor FROM table WHERE Fastest Lap = derek warwick
What Brands Hatch race had Niki Lauda as its Fastest Lap?
SELECT Race FROM table WHERE Fastest Lap = niki lauda AND Location = brands hatch
What was the Report for the Monaco race?
SELECT Report FROM table WHERE Location = monaco
What was the nation that had 59 totals?
SELECT Nation FROM table WHERE Total = 59
On what date did Ayrton Senna win at Imola?
SELECT Date FROM table WHERE Winning Driver = ayrton senna AND Location = imola
Who had the fastest lap of the race that Ayrton Senna won on 23 April?
SELECT Fastest Lap FROM table WHERE Winning Driver = ayrton senna AND Date = 23 april
Which Grand Prix is located in Jerez?
SELECT Grand Prix FROM table WHERE Location = jerez
Who had the pole position in Jerez?
SELECT Pole Position FROM table WHERE Location = jerez
What is the report for the race that Ayrton Senna won on 27 August?
SELECT Report FROM table WHERE Winning Driver = ayrton senna AND Date = 27 august
What is the sum of gold medals for the United States with silver medal count greater than 3?
SELECT SUM Gold FROM table WHERE Nation = united states AND Silver > 3
What is the total number of medals of Norway with a silver medal count greater than 6 and a gold medal count greater than 10?
SELECT COUNT Total FROM table WHERE Silver > 6 AND Nation = norway AND Gold > 10
What is the lowest bronze medal count for Italy with fewer than 6 gold medals and greater than 10 total medals?
SELECT MIN Bronze FROM table WHERE Gold < 6 AND Nation = italy AND Total > 10
On average, what is the number of silver medals for nations ranking higher than 7, with a total of 6 medals and fewer than 2 bronze medals?
SELECT AVG Silver FROM table WHERE Rank > 7 AND Total = 6 AND Bronze < 2
For the United States, with greater than 2 bronze metals, greater than 3 silver medals, and a rank higher than 3, what is the highest total number of medals?
SELECT MAX Total FROM table WHERE Bronze > 2 AND Rank > 3 AND Nation = united states AND Silver > 3
Which player was active in Jazz in 1975-79?
SELECT Player FROM table WHERE Years for Jazz = 1975-79
What is the nationality for the guard position from Bowling Green?
SELECT Nationality FROM table WHERE Position = guard AND School/Club Team = bowling green
Who is the player from Auburn?
SELECT Player FROM table WHERE School/Club Team = auburn
Which player is a shooting guard?
SELECT Player FROM table WHERE Position = shooting guard
Which position was active in Jazz in 2002-03?
SELECT Position FROM table WHERE Years for Jazz = 2002-03
Name the total number of swimsuits when evening gown is 8.329 and average is less than 8.497
SELECT COUNT Swimsuit FROM table WHERE Evening gown = 8.329 AND Average < 8.497
Name the sum of swimsuit when the evening gown is less than 6.983 and the average is less than 7.362
SELECT SUM Swimsuit FROM table WHERE Average < 7.362 AND Evening gown < 6.983
Name the most interview for minnesota and average more than 7.901
SELECT MAX Interview FROM table WHERE State = minnesota AND Average > 7.901
Name the highest Decile for roll more than 325 and area of warkworth
SELECT MAX Decile FROM table WHERE Roll > 325 AND Area = warkworth
Name the authority for roll of 54
SELECT Authority FROM table WHERE Roll = 54
What was the score of Match 2?
SELECT Score1 FROM table WHERE Match = 2
Which away team had a score of 11.11 (77)?
SELECT Away team FROM table WHERE Away team score = 11.11 (77)
When did Essendon play at home?
SELECT Date FROM table WHERE Home team = essendon
What was Collingwood's score when they played against North Melbourne at home?
SELECT Home team score FROM table WHERE Away team = north melbourne
What was the home team score at Melbourne's away match?
SELECT Home team score FROM table WHERE Away team = melbourne
How many people were in attendance at Hawthorn's home match?
SELECT MIN Crowd FROM table WHERE Home team = hawthorn
what is the capital with the Voivodeship Separate city of białostockie?
SELECT Capital FROM table WHERE Voivodeship Separate city = białostockie
between car plates of 80-84 what is the population in 1000 in year 1931?
SELECT Population in 1000 (1931) FROM table WHERE car plates (since 1937) = 80-84
tell me the population in 1000(1931) that has car plates since 1937 of 35-39.
SELECT Population in 1000 (1931) FROM table WHERE car plates (since 1937) = 35-39
tell me the name of the capital with an area of 20,4.
SELECT Capital FROM table WHERE Area in 1000km² (1930) = 20,4
When did they play against Wales?
SELECT Date FROM table WHERE Opponent = wales
What was the result on 29/09/07?
SELECT Result FROM table WHERE Date = 29/09/07
What was the competition on 25/08/07?
SELECT Competition FROM table WHERE Date = 25/08/07
What position is associated with a Time of 20:39.171?
SELECT AVG Pos. FROM table WHERE Time = 20:39.171
How many points associated with a Best time of 01:46.367?
SELECT AVG Points FROM table WHERE Best time = 01:46.367
What is the total reg gp of Ilya Krikunov, who has a round of 7 and a pick number larger than 223?
SELECT COUNT Reg GP FROM table WHERE Rd # = 7 AND Player = ilya krikunov AND Pick # > 223
What is the total PI GP of the player with a pick number 49 and a reg gp less than 0?
SELECT COUNT Pl GP FROM table WHERE Pick # = 49 AND Reg GP < 0
What is the pick # of the player with a PI GP less than 0?
SELECT SUM Pick # FROM table WHERE Pl GP < 0
What is the reg gp of the player with a round number less than 2?
SELECT SUM Reg GP FROM table WHERE Rd # < 2
What is the average PI GP of the player from round 5 with a pick # larger than 151?
SELECT AVG Pl GP FROM table WHERE Rd # = 5 AND Pick # > 151
What constellation has a Declination ( J2000 ) of °32′39″?
SELECT Constellation FROM table WHERE Declination ( J2000 ) = °32′39″
What is the lowest pick from Elitserien (Sweden)?
SELECT MIN Pick # FROM table WHERE League from = elitserien (sweden)
Where was the game played when the home team scored 10.12 (72)?
SELECT Venue FROM table WHERE Home team score = 10.12 (72)
How many spectators were at the game where Richmond was the away team?
SELECT SUM Crowd FROM table WHERE Away team = richmond
What is the location of the kanyakumari government medical college?
SELECT Location FROM table WHERE College Name = kanyakumari government medical college
Where is the coimbatore affilation that was established in 1982?
SELECT Affiliation FROM table WHERE Estd = 1982 AND Location = coimbatore
What is the location of the salem district?
SELECT Location FROM table WHERE District = salem district
What is the location of the tiruchirappalli district?
SELECT Location FROM table WHERE District = tiruchirappalli district
What is the district where the thanjavur medical college is located?
SELECT District FROM table WHERE College Name = thanjavur medical college
Where is the location of the coimbatore medical college?
SELECT Location FROM table WHERE College Name = coimbatore medical college
What is the Time/Retired when the grid is larger than 9 and Rolf Stommelen is the driver?
SELECT Time/Retired FROM table WHERE Grid > 9 AND Driver = rolf stommelen
What is the highest number of laps when the Time/Retired is differential?
SELECT MAX Laps FROM table WHERE Time/Retired = differential
Who is the driver when the laps are smaller than 14, the grid is smaller than 16, and the Time/retired is not classified?
SELECT Driver FROM table WHERE Laps < 14 AND Grid < 16 AND Time/Retired = not classified
What is the average grid when the laps are smaller than 14 and Reine Wisell is the driver?
SELECT AVG Grid FROM table WHERE Laps < 14 AND Driver = reine wisell
Who is the entrant with a driver Damon Hill and a Renault RS8 3.0 V10 engine?
SELECT Entrant FROM table WHERE Engine = renault rs8 3.0 v10 AND Driver = damon hill
Who is the constructor of the car with a Peugeot A12 EV5 3.0 V10 engine that competed in all rounds?
SELECT Constructor FROM table WHERE Rounds = all AND Engine = peugeot a12 ev5 3.0 v10
What kind of engine is in the car for Scuderia Ferrari that went all rounds?
SELECT Engine FROM table WHERE Rounds = all AND Entrant = scuderia ferrari
Who is the constructor of the 196 chassis?
SELECT Constructor FROM table WHERE Chassis = 196
Name the home with visitor of kings
SELECT Home FROM table WHERE Visitor = kings
Name the total number of attendance when the cavaliers visited
SELECT COUNT Attendance FROM table WHERE Visitor = cavaliers
Which women's doubles had the accompanying Men's singles player Ville Lång?
SELECT Women's doubles FROM table WHERE Men's singles = ville lång
Which mixed doubles was featured in 2006?
SELECT Mixed doubles FROM table WHERE Year = 2006
Which women's doubles had the men's singles player Kenichi Tago?
SELECT Women's doubles FROM table WHERE Men's singles = kenichi tago
In the games at corio oval, what was the highest crowd?
SELECT MAX Crowd FROM table WHERE Venue = corio oval
In the match as corio oval, who was the away team?
SELECT Away team FROM table WHERE Venue = corio oval
How many communes associated with over 10 cantons and an area (Square km) of 1,589?
SELECT AVG Communes FROM table WHERE Cantons > 10 AND Area (Square km) = 1,589
Which team won the game on January 12?
SELECT Decision FROM table WHERE Date = january 12
Who was the home team against Geelong?
SELECT Home team score FROM table WHERE Away team = geelong
What was the attendance when the VFL played MCG?
SELECT COUNT Crowd FROM table WHERE Venue = mcg
Name the security forces with civilians of 67
SELECT Security Forces FROM table WHERE Civilians = 67
Name the insurgents for civilians being 49
SELECT Insurgents FROM table WHERE Civilians = 49
Name the security forces with civilians being 67
SELECT Security Forces FROM table WHERE Civilians = 67
Name the security forces for 2009
SELECT Security Forces FROM table WHERE Year = 2009
Tell me the security forces for 849 total
SELECT Security Forces FROM table WHERE Total: = 849
What tyre has a chassis of p57 p61?
SELECT Tyre FROM table WHERE Chassis = p57 p61
what is the highest laps when the grid is 1?
SELECT MAX Laps FROM table WHERE Grid = 1
How many athletes had a Swimming Time (pts) of 2:20.93 (1232)?
SELECT COUNT Total FROM table WHERE Swimming Time (pts) = 2:20.93 (1232)
What is the riding penaltie (pts) for the athlete that has a Swimming Time (pts) of 2:18.16 (1264)?
SELECT Riding Penalties (pts) FROM table WHERE Swimming Time (pts) = 2:18.16 (1264)
Which owner has a description of Mark 1 pos and is dated 1956?
SELECT Owner(s) FROM table WHERE Date = 1956 AND Description = mark 1 pos
Which owner has a description of Mark 1 CK and is dated 1953?
SELECT Owner(s) FROM table WHERE Date = 1953 AND Description = mark 1 ck