question
stringlengths
12
244
sql
stringlengths
22
468
Which away team scored at 15.17 (107) at an away game?
SELECT Away team FROM table WHERE Away team score = 15.17 (107)
Which title is 3:38 long?
SELECT Title FROM table WHERE Length = 3:38
Which title is 3:43 long?
SELECT Title FROM table WHERE Length = 3:43
What Dance has the Visual Arts of Bryon Kim?
SELECT Dance FROM table WHERE Visual Arts = bryon kim
In 2004, what is the Dance?
SELECT Dance FROM table WHERE Year = 2004
What artist had 1 draw?
SELECT Artist FROM table WHERE Draw = 1
Name the IATA for jeddah
SELECT IATA FROM table WHERE City = jeddah
Name the IATA for jessore
SELECT IATA FROM table WHERE City = jessore
Name the city for thailand
SELECT City FROM table WHERE Country = thailand
Name the IATA of wmkk
SELECT IATA FROM table WHERE ICAO = wmkk
When did the away team carlton play?
SELECT Date FROM table WHERE Away team = carlton
Where did a home team score 8.14 (62)?
SELECT Venue FROM table WHERE Home team score = 8.14 (62)
Which constructor is from ITA with a rank less than 13?
SELECT Constructor FROM table WHERE Country = ita AND Rank < 13
Who was the opponent in the Week 4 game?
SELECT Opponent FROM table WHERE Week = 4
Who are the co-drivers before 2010 with under 326 laps?
SELECT Co-Drivers FROM table WHERE Year < 2010 AND Laps < 326
Who are the co-drivers the risi competizione gt2 class that went under 329 laps and recorded a DNF?
SELECT Co-Drivers FROM table WHERE Laps < 329 AND Class = gt2 AND Team = risi competizione AND Pos. = dnf
Tell me the highest laps for time/retired of +2 laps and driver of felice bonetto
SELECT MAX Laps FROM table WHERE Time/retired = +2 laps AND Driver = felice bonetto
I want to know the driver when grid is greater than 13 and laps is less than 60 with time/retired of accident
SELECT Driver FROM table WHERE Grid > 13 AND Laps < 60 AND Time/retired = accident
Name the album for years after 2007
SELECT Album FROM table WHERE Year > 2007
What was the score on october 17, 2007?
SELECT Score FROM table WHERE Date = october 17, 2007
What was the competition for score of 3-0
SELECT Competition FROM table WHERE Score = 3-0
Which venue had a score of 1-1?
SELECT Venue FROM table WHERE Score = 1-1
I want the date for nihat kahveci
SELECT Date FROM table WHERE Turkey scorers = nihat kahveci
What is the smallest pick with a Reg GP less than 0?
SELECT MIN Pick # FROM table WHERE Reg GP < 0
What is the total of pick numbers with a Reg GP larger than 0?
SELECT COUNT Pick # FROM table WHERE Reg GP > 0
What is the total points when there is a refusal fault and the rider is H.R.H. Prince Abdullah Al-Soud?
SELECT SUM Points FROM table WHERE Faults = refusal AND Rider = h.r.h. prince abdullah al-soud
What is the total points when the horse is Chippison?
SELECT COUNT Points FROM table WHERE Horse = chippison
What is the total time (s) for the horse Pinot Grigio?
SELECT Total time ( s ) FROM table WHERE Horse = pinot grigio
What is the average amount of points when the time (s) is 81.78?
SELECT AVG Points FROM table WHERE Time ( s ) = 81.78
What is the position of the player from Glades Day School?
SELECT Position FROM table WHERE School = glades day school
What is the position of the player who went to college of notre dame?
SELECT Position FROM table WHERE College = notre dame
What is the school of the player who went to the college of michigan and originally comes from Wheaton, Illinois?
SELECT School FROM table WHERE College = michigan AND Hometown = wheaton, illinois
What Chassis was driven by Otto Stuppacher?
SELECT Chassis FROM table WHERE Driver = otto stuppacher
Who drove the car with the n175 chassis in round 13?
SELECT Driver FROM table WHERE Chassis = n175 AND Rounds = 13
What chassis did John Watson drive?
SELECT Chassis FROM table WHERE Driver = john watson
what is the right ascension (j2000) when the constellation is sextans and the declination (j2000) is °28′01″?
SELECT Right ascension ( J2000 ) FROM table WHERE Constellation = sextans AND Declination ( J2000 ) = °28′01″
what is the constellation when the Right ascension ( J2000 ) is 10h18m58.4s?
SELECT Constellation FROM table WHERE Right ascension ( J2000 ) = 10h18m58.4s
what is the highest ngc number when the declination (j2000) is °25′26″?
SELECT MAX NGC number FROM table WHERE Declination ( J2000 ) = °25′26″
What is the score for Collingwood as the home team?
SELECT Home team score FROM table WHERE Home team = collingwood
What away team had a score of 14.14 (98)?
SELECT Away team FROM table WHERE Away team score = 14.14 (98)
What did the home team score at Princes Park?
SELECT Home team score FROM table WHERE Venue = princes park
What is the home team score when the away team scored 13.12 (90)?
SELECT Home team score FROM table WHERE Away team score = 13.12 (90)
When did the home team score 14.22 (106)?
SELECT Date FROM table WHERE Home team score = 14.22 (106)
What's the sum of the population for the place simplified 上杭县 with an area smaller than 2,879?
SELECT SUM Population FROM table WHERE Simplified = 上杭县 AND Area < 2,879
What's the total number of density for the place with a population over 393,390?
SELECT COUNT Density FROM table WHERE Population > 393,390
What's the average area for the xinluo district?
SELECT AVG Area FROM table WHERE English Name = xinluo district
What was the attendance on July 30?
SELECT AVG Attendance FROM table WHERE Date = july 30
How many Goals have a Result of 0 – 4?
SELECT AVG Goals FROM table WHERE Result = 0 – 4
How many goals have a Result of 12 – 0?
SELECT Goals FROM table WHERE Result = 12 – 0
Which Result has a Date of 9 october 2009?
SELECT Result FROM table WHERE Date = 9 october 2009
Which Goals have a Date of 7 february 2010?
SELECT MAX Goals FROM table WHERE Date = 7 february 2010
On what Year did Entrant Leyton House have a Chassis type of Leyton House CG911?
SELECT Year FROM table WHERE Entrant = leyton house AND Chassis = leyton house cg911
What was the first year to have a Chassis of Jordan 193?
SELECT MIN Year FROM table WHERE Chassis = jordan 193
Which School's Mascot is Raiders?
SELECT School FROM table WHERE Mascot = raiders
What is North Valleys School Mascot?
SELECT Mascot FROM table WHERE School = north valleys
What is the Enrollment where Cougars is a Mascot?
SELECT SUM Enrollment FROM table WHERE Mascot = cougars
In what League is the Reed School?
SELECT League FROM table WHERE School = reed
What Mascot has an Enrollment greater than 2,464?
SELECT Mascot FROM table WHERE Enrollment > 2,464
Who was the runner-up in the tournament in which Omar Camporese held third place?
SELECT Runner-up FROM table WHERE Third Place = omar camporese
Who was the runner-up in the tournament in London?
SELECT Runner-up FROM table WHERE Tournament = london
What was the score in the tournament in which Michael Stich took third place?
SELECT Score FROM table WHERE Third Place = michael stich
Who holds third place in the tournament with a score of 2–6, 7–6(3), [10–5]?
SELECT Third Place FROM table WHERE Score = 2–6, 7–6(3), [10–5]
what is the least number of goals for when the goals against is 70 and the ties less than 0?
SELECT MIN Goals For FROM table WHERE Goals Against = 70 AND Ties < 0
what is the average losses when the wins is 9 and ties more than 0?
SELECT AVG Losses FROM table WHERE Wins = 9 AND Ties > 0
what is the lowest number of ties when the losses is 7 and games played is less than 10?
SELECT MIN Ties FROM table WHERE Losses = 7 AND Games Played < 10
what is the sum of games played when the losses is less than 7, the wins is 6 and the goals for is more than 76?
SELECT SUM Games Played FROM table WHERE Losses < 7 AND Wins = 6 AND Goals For > 76
what is the total number of games played when the goals for is less than 30?
SELECT COUNT Games Played FROM table WHERE Goals For < 30
what is the sum of wins for the ottawa hockey club when the games played is less than 10?
SELECT SUM Wins FROM table WHERE Team = ottawa hockey club AND Games Played < 10
How many people attended the game on February 3, 2008?
SELECT SUM Attendance FROM table WHERE Date = february 3, 2008
What is the name of the home team that played against Collingwood?
SELECT Home team FROM table WHERE Away team = collingwood
Which Away team played at the Windy Hill Venue?
SELECT Away team FROM table WHERE Venue = windy hill
How large of a crowd can the Glenferrie oval hold?
SELECT Crowd FROM table WHERE Venue = glenferrie oval
How large of a crowd can the Brunswick Street Oval hold?
SELECT COUNT Crowd FROM table WHERE Venue = brunswick street oval
Which Home Team had a score of 26.16 (172) and a venue larger than 19,000?
SELECT Home team FROM table WHERE Crowd > 19,000 AND Home team score = 26.16 (172)
What is the lowest number of goals scored by a player in the normal league games where more than 8 total goals were scored?
SELECT MIN League FROM table WHERE Total > 8
What is the sum of goals scored in regular league play by Mustoe where he scored 0 goals in the League Cup?
SELECT SUM League FROM table WHERE Name = mustoe AND League Cup < 0
What is the average number of goals scored in the FA Cup by Whelan where he had more than 7 total goals?
SELECT AVG FA Cup FROM table WHERE Name = whelan AND Total > 7
What is the lowest number of goals scored in regular league games by Ehiogu where he scored 0 goals in the FA Cup and at least 1 goal in the League Cup?
SELECT MIN League FROM table WHERE FA Cup = 0 AND Total = 1 AND Name = ehiogu AND League Cup > 0
What is the Uyghur Latin with a population of 69,361?
SELECT Uyghur Latin ( ULY ) FROM table WHERE Population (2010 Census) = 69,361
What is the Hanyu Pinyin with an area of 400?
SELECT Hanyu Pinyin FROM table WHERE Area (km²) = 400
What is the Hanyu Pinyin with a density of 39.63?
SELECT Hanyu Pinyin FROM table WHERE Density (/km²) = 39.63
How many people were in attendance when the visiting team was the Nuggets and the leading scorer was J.R. Smith (28)?
SELECT SUM Attendance FROM table WHERE Visitor = nuggets AND Leading scorer = j.r. smith (28)
Who was the leading scorer on 23 February 2008?
SELECT Leading scorer FROM table WHERE Date = 23 february 2008
Name what was nominated in years before 2002 for most popular comedy performer at the national television awards
SELECT Nominated For FROM table WHERE Year < 2002 AND Award = national television awards AND Category = most popular comedy performer
Name the result for the bafta tv awards
SELECT Result FROM table WHERE Award = bafta tv awards
Name the category for nominated at the british comedy awards
SELECT Category FROM table WHERE Result = nominated AND Award = british comedy awards
Name the year that Birds of a feather category for most popular actress was nominated
SELECT AVG Year FROM table WHERE Category = most popular actress AND Nominated For = birds of a feather
What dates did Ferrari win races?
SELECT Date FROM table WHERE Constructor = ferrari
What was the original air date of the episode with production code 2395120?
SELECT Original air date FROM table WHERE Production code = 2395120
How many points for the ferrari v12 engine and ferrari 1512 chassis, after 1965?
SELECT MAX Pts. FROM table WHERE Engine = ferrari v12 AND Chassis = ferrari 1512 AND Year > 1965
What was the score for the away team when the home team scored 31.9 (195)?
SELECT Away team FROM table WHERE Home team score = 31.9 (195)
What was the date when the crowd was larger than 30,495?
SELECT Date FROM table WHERE Crowd > 30,495
What was the home team when Carlton was the away team?
SELECT Home team FROM table WHERE Away team = carlton
What was the score for the away team when they played at lake oval?
SELECT Away team score FROM table WHERE Venue = lake oval
How many people were in the crowd when the home team scored 31.9 (195)?
SELECT COUNT Crowd FROM table WHERE Home team score = 31.9 (195)
What was the score of the away team when hawthorn was the home team?
SELECT Away team score FROM table WHERE Home team = hawthorn
How many golds for nations ranked below 4, over 5 medals, and under 6 silvers?
SELECT COUNT Gold FROM table WHERE Rank > 4 AND Total > 5 AND Silver < 6
Which rank had the Labour party winning in 2003, a swing to gain that was larger than 2.13, a lab hold as a result, and which took place in the Linlithgow constituency?
SELECT Rank FROM table WHERE Winning party 2003 = labour AND Swing to gain > 2.13 AND Result = lab hold AND Constituency = linlithgow
Which party won in 2003, that had a swing to gain of less than 2.92 and which resulted in a ld hold?
SELECT Winning party 2003 FROM table WHERE Swing to gain < 2.92 AND Result = ld hold
Which constituency had the conservative party win in 2003?
SELECT Constituency FROM table WHERE Winning party 2003 = conservative