question
stringlengths
12
244
sql
stringlengths
22
468
When the Away team score equaled 15.20 (110) what was the Date of the game?
SELECT Date FROM table WHERE Away team score = 15.20 (110)
If the Away team was carlton, what Date did they play?
SELECT Date FROM table WHERE Away team = carlton
How many people were in the Crowd when the Away team scored 15.20 (110)?
SELECT COUNT Crowd FROM table WHERE Away team score = 15.20 (110)
What is the Visitor with a Home with chicago, and a Score of 3 – 2?
SELECT Visitor FROM table WHERE Home = chicago AND Score = 3 – 2
What is the Score with a Date with may 2?
SELECT Score FROM table WHERE Date = may 2
What is the Score with a Home of colorado, and a Date with may 11?
SELECT Score FROM table WHERE Home = colorado AND Date = may 11
What is the Home with a Visitor of chicago, and a Series with 3 – 2?
SELECT Home FROM table WHERE Visitor = chicago AND Series = 3 – 2
What is the Visitor with a Series with 3 – 2?
SELECT Visitor FROM table WHERE Series = 3 – 2
What is the Visitor with a Score with 4 – 3?
SELECT Visitor FROM table WHERE Score = 4 – 3
What is the 2007 value with 1r in 2011 and 1r in 2010?
SELECT 2007 FROM table WHERE 2011 = 1r AND 2010 = 1r
What is the 2012 value with 1r in 2010 and 2r in 2006?
SELECT 2012 FROM table WHERE 2010 = 1r AND 2006 = 2r
What is the 2010 value for the Australian Open?
SELECT 2010 FROM table WHERE Tournament = australian open
What is the 2006 value of the 2009 A value, 2011 A value, and A as the 2007 value?
SELECT 2006 FROM table WHERE 2009 = a AND 2011 = a AND 2007 = a
What is the 2006 value with 3r in 2007?
SELECT 2006 FROM table WHERE 2007 = 3r
What is the 2012 value with 479 in 2008?
SELECT 2012 FROM table WHERE 2008 = 479
What is the building for the r90 pennant?
SELECT Builder FROM table WHERE Pennant = r90
What is the pennant with Denny, Dumbarton as the builder?
SELECT Pennant FROM table WHERE Builder = denny, dumbarton
What is the laid down date of the destroyer with a r29 pennant?
SELECT Laid Down FROM table WHERE Pennant = r29
What is the location/state of the race on 16 Jun?
SELECT Location / State FROM table WHERE Date = 16 jun
What is the lowest heat of the Lakeside race?
SELECT MIN Heat. FROM table WHERE Race Title = lakeside
When the Away team is footscray, what is the Home team playing?
SELECT Home team FROM table WHERE Away team = footscray
When the Home team scores 14.16 (100), what is the sum of the Crowds?
SELECT SUM Crowd FROM table WHERE Home team score = 14.16 (100)
What's the average number of people in the Crowd that attend essendon games as the Home team?
SELECT AVG Crowd FROM table WHERE Home team = essendon
Which Away team plays at the Venue vfl park?
SELECT Away team FROM table WHERE Venue = vfl park
Name the least week for opponent of washington redskins
SELECT MIN Week FROM table WHERE Opponent = washington redskins
Name the tv time for week 10
SELECT TV Time FROM table WHERE Week = 10
What is the Time/Retired for a Grid larger than 6, and 57 laps?
SELECT Time/Retired FROM table WHERE Grid > 6 AND Laps = 57
What grid for denny hulme?
SELECT Grid FROM table WHERE Driver = denny hulme
How many laps for a Time/Retired of tyre, and a Grid larger than 10?
SELECT COUNT Laps FROM table WHERE Time/Retired = tyre AND Grid > 10
What Outcome has a Rocket launch of rehnuma-11?
SELECT Outcomes FROM table WHERE Rocket launch = rehnuma-11
Which Institutional authority has a Rocket launch of rehnuma-10?
SELECT Institutional authority FROM table WHERE Rocket launch = rehnuma-10
Which Derivative has a Launch Date of july 15, 1970; 15:05 gmt?
SELECT Derivatives FROM table WHERE Launch Date = july 15, 1970; 15:05 gmt
Which Outcome has a Launch Date of march 18, 1964; 14:50 gmt?
SELECT Outcomes FROM table WHERE Launch Date = march 18, 1964; 14:50 gmt
Which Mission has a Launch Date of december 30, 1970; 14:50 gmt?
SELECT Mission FROM table WHERE Launch Date = december 30, 1970; 14:50 gmt
What was the score when the Golden State Warriors were the visiting team on 3/7 and there were more than 18,997 people in attendance?
SELECT Score FROM table WHERE Visitor = golden state warriors AND Attendance > 18,997 AND Date = 3/7
What team was the visitor on 3/2?
SELECT Visitor FROM table WHERE Date = 3/2
What is the home team score for kardinia park?
SELECT Home team score FROM table WHERE Venue = kardinia park
When did an away team score 32.16 (208)?
SELECT Date FROM table WHERE Away team score = 32.16 (208)
Name the realization for phoneme of /i/ and example of /idːa/
SELECT Realization FROM table WHERE Phoneme = /i/ AND Example = /idːa/
Name the phoneme for realizaiton of [ɪj]
SELECT Phoneme FROM table WHERE Realization = [ɪj]
Name the example when the environment is #_x
SELECT Example FROM table WHERE Environment = #_x
Name the example when the realization is [ɐ]
SELECT Example FROM table WHERE Realization = [ɐ]
Name the phoneme when the example is /umsʁ/
SELECT Phoneme FROM table WHERE Example = /umsʁ/
Name the phoneme when the realizationis [ɑ]
SELECT Phoneme FROM table WHERE Realization = [ɑ]
What is the power of the engine with an engine code m44b19?
SELECT Power FROM table WHERE Engine code = m44b19
What is the highest numbered grid for piercarlo ghinzani with over 3 laps?
SELECT MAX Grid FROM table WHERE Driver = piercarlo ghinzani AND Laps > 3
How many laps for a grid of over 18 and retired due to electrical failure?
SELECT SUM Laps FROM table WHERE Grid > 18 AND Time/Retired = electrical
What was the crowd attendance for the game with an away team score of 14.10 (94)?
SELECT SUM Crowd FROM table WHERE Away team score = 14.10 (94)
What was the average crowd attendance for the Junction Oval venue?
SELECT AVG Crowd FROM table WHERE Venue = junction oval
What is the home team for the Princes Park venue?
SELECT Home team FROM table WHERE Venue = princes park
What is the average home team score for Footscray?
SELECT Home team score FROM table WHERE Home team = footscray
Which home teams had Geelong as the away team?
SELECT Home team FROM table WHERE Away team = geelong
When did the Rockies play the Giants with an attendance over 24,100?
SELECT Date FROM table WHERE Opponent = giants AND Attendance > 24,100
What is the date of the game when the Rockies had a record of 61–66?
SELECT Date FROM table WHERE Record = 61–66
How many seasons has John Mcfadden coached?
SELECT COUNT Seasons FROM table WHERE Coach = john mcfadden
What is the station with the most riders that has an annaul ridership of 4,445,100 and line smaller than 1??
SELECT MAX Stations FROM table WHERE Annual ridership (2012) = 4,445,100 AND Lines < 1
What is the number of annual ridership with a station that has more than 13 stations and larger than 4 lines?
SELECT SUM Annual ridership (2012) FROM table WHERE Stations = 13 AND Lines > 4
How many lines have fewer than 44 stations and fewer than 881 riders per mile?
SELECT COUNT Lines FROM table WHERE Stations < 44 AND Rider. per mile < 881
Which station has 3,871 riders per mile, and an annual ridership in 2012 of larger than 15,399,400?
SELECT MAX Stations FROM table WHERE Rider. per mile = 3,871 AND Annual ridership (2012) > 15,399,400
What is the highest season for the 7th position?
SELECT MAX Season FROM table WHERE Position = 7th
Who is the opponent in the final of the Tournament of Blenheim?
SELECT Opponent in the final FROM table WHERE Tournament = blenheim
Who is the opponent in the final on August 14, 2006?
SELECT Opponent in the final FROM table WHERE Date = august 14, 2006
Who is the opponent in the final with a clay surface at the Tournament of Lyneham?
SELECT Opponent in the final FROM table WHERE Surface = clay AND Tournament = lyneham
On what surface was the score 6–2, 6–1?
SELECT Surface FROM table WHERE Score = 6–2, 6–1
What is the score for the Tournament of Cordenons?
SELECT Score FROM table WHERE Tournament = cordenons
On what date was the surface clay with Cyril Saulnier as the opponent in the final?
SELECT Date FROM table WHERE Surface = clay AND Opponent in the final = cyril saulnier
Which artist has a Mintage of 500?
SELECT Artist FROM table WHERE Mintage = 500
Which Artist has an Issue Price of $1,541.95?
SELECT Artist FROM table WHERE Issue Price = $1,541.95
Who is the opponent in the final on a hard surface with a score of 6–3 7–6(5)?
SELECT Opponent in the final FROM table WHERE Surface = hard AND Score = 6–3 7–6(5)
Who is the opponent in the Tournament of Lahore final?
SELECT Opponent in the final FROM table WHERE Tournament = lahore
On what date did the opponent in the Toshiaki Sakai final play on a grass surface?
SELECT Date FROM table WHERE Opponent in the final = toshiaki sakai AND Surface = grass
On what surface did a score of 4–6 6–3 6–4 occur at the Tournament of Lahore?
SELECT Surface FROM table WHERE Tournament = lahore AND Score = 4–6 6–3 6–4
Which tournament had Toshiaki Sakai as an opponent in the final on a grass surface?
SELECT Tournament FROM table WHERE Opponent in the final = toshiaki sakai AND Surface = grass
what was the score on the game that happened on May 15?
SELECT Score FROM table WHERE Date = may 15
What is the status of bel with a Transfer window of winter?
SELECT Status FROM table WHERE Country = bel AND Transfer window = winter
What is the union moving name and is from cmr?
SELECT Name FROM table WHERE Moving to = union AND Country = cmr
What is the transfer window for bel?
SELECT Transfer window FROM table WHERE Country = bel
What is the transfer period for habarugira?
SELECT Transfer window FROM table WHERE Name = habarugira
How big was the crowd in game that featured the visiting team of north melbourne?
SELECT Crowd FROM table WHERE Away team = north melbourne
How many bronze medals for the nation with less than 1 total?
SELECT MAX Bronze FROM table WHERE Total < 1
How many bronze medals for the nation ranked above 2, and under 0 golds?
SELECT COUNT Bronze FROM table WHERE Rank < 2 AND Gold < 0
How many silvers for japan (1 gold)?
SELECT SUM Silver FROM table WHERE Nation = japan AND Gold > 1
Which authority had a role of 651?
SELECT Authority FROM table WHERE Roll = 651
For the roll of 651, what was the lowest Decile?
SELECT MIN Decile FROM table WHERE Roll = 651
What were the years for Redhill school, authority of state?
SELECT Years FROM table WHERE Authority = state AND Name = redhill school
What was the sum roll of Karaka area?
SELECT SUM Roll FROM table WHERE Area = karaka
What home team played North Melbourne?
SELECT Home team FROM table WHERE Away team = north melbourne
What is the average crowd where the home team scored 8.15 (63)?
SELECT AVG Crowd FROM table WHERE Home team score = 8.15 (63)
What is the nationality of the player with a round after 4 and plays right wing?
SELECT Nationality FROM table WHERE Round > 4 AND Position = right wing
What is the college/junior/club team (league) of left wing Ondrej Roman?
SELECT College/Junior/Club Team (League) FROM table WHERE Position = left wing AND Player = ondrej roman
Who played in lake oval while away?
SELECT Away team FROM table WHERE Venue = lake oval
What was the home score when the away team scored 16.11 (107)?
SELECT Home team FROM table WHERE Away team score = 16.11 (107)
What was the home score when the away team scored 5.9 (39)?
SELECT Home team FROM table WHERE Away team score = 5.9 (39)
When did the away team score 17.11 (113)?
SELECT Date FROM table WHERE Away team score = 17.11 (113)
What is the low crowd size when the away team scored 17.11 (113)?
SELECT MIN Crowd FROM table WHERE Away team score = 17.11 (113)
What week number saw a w 31-16 result?
SELECT MIN Week FROM table WHERE Result = w 31-16
When was the game before week 8 with a result of bye?
SELECT Date FROM table WHERE Week < 8 AND Result = bye
What week number had the New York Giants as opponent?
SELECT COUNT Week FROM table WHERE Opponent = new york giants
Who built the under grid 6 car with under 49 laps?
SELECT Constructor FROM table WHERE Grid < 6 AND Laps < 49
Who built the grid 2 car?
SELECT Constructor FROM table WHERE Grid = 2