question_id
int64 24.2k
80.3k
| table_id
stringlengths 8
14
| question
stringlengths 12
244
| sql
stringlengths 33
482
|
|---|---|---|---|
80,120
|
2-12483185-2
|
What Team 1 has Union Douala as Team 2?
|
SELECT "Team 1" FROM "2-12483185-2" WHERE "Team 2" = 'Union Douala';
|
80,121
|
2-12207474-7
|
What was the score of the game that had a loss of Cerutti (0-1)?
|
SELECT "Score" FROM "2-12207474-7" WHERE "Loss" = 'Cerutti (0-1)';
|
80,122
|
2-12207474-7
|
Who was the opponent at the game that had a record of 93-54?
|
SELECT "Opponent" FROM "2-12207474-7" WHERE "Record" = '93-54';
|
80,123
|
2-12819742-2
|
What was the score to par for 156 strokes?
|
SELECT COUNT("To par") FROM "2-12819742-2" WHERE "Total" > 156.0;
|
80,124
|
2-12819742-2
|
How many strokes for Arnold Palmer with a to par of greater than 9?
|
SELECT AVG("Total") FROM "2-12819742-2" WHERE "To par" > 9.0 AND "Player" = 'Arnold Palmer';
|
80,125
|
2-12819742-2
|
What was the score to par in 1960?
|
SELECT "To par" FROM "2-12819742-2" WHERE "Year(s) won" = '1960';
|
80,126
|
2-13099215-1
|
What is the earliest first game for a rugby team that has 7 lost games and 0 draws?
|
SELECT MIN("First game") FROM "2-13099215-1" WHERE "Lost" = 7.0 AND "Drawn" < 0.0;
|
80,127
|
2-13099215-1
|
How many games were played by a team that won 0.00% of their games and 0 draws?
|
SELECT SUM("Played") FROM "2-13099215-1" WHERE "Percentage" = '0.00%' AND "Drawn" < 0.0;
|
80,128
|
2-12161422-1
|
Name the matches for the first match being 30 March 1997
|
SELECT "Matches" FROM "2-12161422-1" WHERE "1st Match" = '30 March 1997';
|
80,129
|
2-12161422-1
|
Name the 1st match for Brisbane Bears
|
SELECT "1st Match" FROM "2-12161422-1" WHERE "Team" = 'Brisbane Bears';
|
80,130
|
2-12161422-1
|
Name the lost for matches of 1 928
|
SELECT "Lost" FROM "2-12161422-1" WHERE "Matches" = '1 928';
|
80,131
|
2-12161422-1
|
Name the lost for % won of 55.37
|
SELECT "Lost" FROM "2-12161422-1" WHERE "% Won" = '55.37';
|
80,132
|
2-12161422-1
|
Name the matches for Gold Coast
|
SELECT "Matches" FROM "2-12161422-1" WHERE "Team" = 'Gold Coast';
|
80,133
|
2-12837881-3
|
What is the year when cable was 4.6%?
|
SELECT "Year" FROM "2-12837881-3" WHERE "Cable" = '4.6%';
|
80,134
|
2-12837881-3
|
What is the other for 2012?
|
SELECT "Other" FROM "2-12837881-3" WHERE "Year" = '2012';
|
80,135
|
2-12837881-3
|
What is the xDSL for the other of 0.6% and FTTx of 35.4%?
|
SELECT "xDSL" FROM "2-12837881-3" WHERE "Other" = '0.6%' AND "FTTx" = '35.4%';
|
80,136
|
2-12837881-3
|
What is the other for a 78.2% xDSL?
|
SELECT "Other" FROM "2-12837881-3" WHERE "xDSL" = '78.2%';
|
80,137
|
2-12837881-3
|
What is the xDSL in 2010 when the other was 0.6%?
|
SELECT "xDSL" FROM "2-12837881-3" WHERE "Other" = '0.6%' AND "Year" = '2010';
|
80,138
|
2-12402576-1
|
Which date has a Result of Won, and a Score of 1-0?
|
SELECT "Date" FROM "2-12402576-1" WHERE "Result" = 'Won' AND "Score" = '1-0';
|
80,139
|
2-12402576-1
|
Which result has a Date of November 2, 2007?
|
SELECT "Result" FROM "2-12402576-1" WHERE "Date" = 'November 2, 2007';
|
80,140
|
2-12402576-1
|
Which Competition has a Score of 2-0?
|
SELECT "Competition" FROM "2-12402576-1" WHERE "Score" = '2-0';
|
80,141
|
2-12402576-1
|
Which Venue has a Date of January 9, 2011?
|
SELECT "Venue" FROM "2-12402576-1" WHERE "Date" = 'January 9, 2011';
|
80,142
|
2-12826598-1
|
What is the termination of mission date of the representative with a presentation of credentials date on July 4, 1898?
|
SELECT "Termination of Mission" FROM "2-12826598-1" WHERE "Presentation of Credentials" = 'July 4, 1898';
|
80,143
|
2-12826598-1
|
What is the presentation of credentials date of Raúl H. Castro, who has a title of Ambassador Extraordinary and Plenipotentiary?
|
SELECT "Presentation of Credentials" FROM "2-12826598-1" WHERE "Title" = 'Ambassador Extraordinary and Plenipotentiary' AND "Representative" = 'Raúl H. Castro';
|
80,144
|
2-12826598-1
|
Who is the representative with a presentation of credentials date on February 23, 1854?
|
SELECT "Representative" FROM "2-12826598-1" WHERE "Presentation of Credentials" = 'February 23, 1854';
|
80,145
|
2-12826598-1
|
What is the title of the representative appointed by James K. Polk?
|
SELECT "Title" FROM "2-12826598-1" WHERE "Appointed by" = 'James K. Polk';
|
80,146
|
2-12826598-1
|
What is the termination of mission date of the representative appointed by Franklin Pierce with a title of Chargé d'Affaires?
|
SELECT "Termination of Mission" FROM "2-12826598-1" WHERE "Appointed by" = 'Franklin Pierce' AND "Title" = 'Chargé d''Affaires';
|
80,147
|
2-12771946-2
|
What is the Stadium held on November 29?
|
SELECT "Stadium" FROM "2-12771946-2" WHERE "Date" = 'November 29';
|
80,148
|
2-12771946-2
|
Who is the Visiting team on December 20?
|
SELECT "Visiting team" FROM "2-12771946-2" WHERE "Date" = 'December 20';
|
80,149
|
2-12771946-2
|
Which Stadium has a Visiting team of Pittsburgh Steelers?
|
SELECT "Stadium" FROM "2-12771946-2" WHERE "Visiting team" = 'Pittsburgh Steelers';
|
80,150
|
2-12771946-2
|
Who is the Host team that has a Chicago Bears as a visiting team?
|
SELECT "Host team" FROM "2-12771946-2" WHERE "Visiting team" = 'Chicago Bears';
|
80,151
|
2-12771946-2
|
What is the Final score on November 22?
|
SELECT "Final score" FROM "2-12771946-2" WHERE "Date" = 'November 22';
|
80,152
|
2-12771946-2
|
What is the Host team that has Indianapolis Colts as a Visiting team?
|
SELECT "Host team" FROM "2-12771946-2" WHERE "Visiting team" = 'Indianapolis Colts';
|
80,153
|
2-12963180-1
|
Who won when NP Cooper AV Cooke was runner up?
|
SELECT "Winners" FROM "2-12963180-1" WHERE "Runners-up" = 'NP Cooper AV Cooke';
|
80,154
|
2-12758642-2
|
What was the record of the match that had a time of 1:44?
|
SELECT "Record" FROM "2-12758642-2" WHERE "Time" = '1:44';
|
80,155
|
2-12758642-2
|
Who was the opponent at GCM – D.O.G. 4?
|
SELECT "Opponent" FROM "2-12758642-2" WHERE "Event" = 'GCM – D.O.G. 4';
|
80,156
|
2-12758642-2
|
What was the location of the match that ended before round 2, against Hikaru Sato?
|
SELECT "Location" FROM "2-12758642-2" WHERE "Round" < 2.0 AND "Opponent" = 'Hikaru Sato';
|
80,157
|
2-12617978-14
|
What was the Company or Product name where Entrepreneurs Geoff and Colette Bell requested £75,000?
|
SELECT "Company or product name" FROM "2-12617978-14" WHERE "Money requested (£)" = '75,000' AND "Entrepreneur(s)" = 'Geoff and Colette Bell';
|
80,158
|
2-12617978-14
|
Which Investing Dragon(s) belong to Episode 9 with the Entrepreneur Ashley Sayed?
|
SELECT "Investing Dragon(s)" FROM "2-12617978-14" WHERE "Episode" = 'Episode 9' AND "Entrepreneur(s)" = 'Ashley Sayed';
|
80,159
|
2-12617978-14
|
What Episode did Entrepreneur(s) Luke Booth and Christopher Eves take part?
|
SELECT "Episode" FROM "2-12617978-14" WHERE "Entrepreneur(s)" = 'Luke Booth and Christopher Eves';
|
80,160
|
2-12617978-14
|
Which Company or Product name requested £70,000 on Episode 11?
|
SELECT "Company or product name" FROM "2-12617978-14" WHERE "Episode" = 'Episode 11' AND "Money requested (£)" = '70,000';
|
80,161
|
2-12275654-1
|
What is the year in which Yong Yudianto won the men's singles?
|
SELECT MIN("Year") FROM "2-12275654-1" WHERE "Men's singles" = 'Yong Yudianto';
|
80,162
|
2-12275654-1
|
Who won the men's singles in 1999?
|
SELECT "Men's singles" FROM "2-12275654-1" WHERE "Year" = 1999.0;
|
80,163
|
2-12962773-9
|
What is Stephen Arigbabu's height?
|
SELECT MIN("Height") FROM "2-12962773-9" WHERE "Player" = 'Stephen Arigbabu';
|
80,164
|
2-13242342-7
|
For all games with Los Angeles as visitor, what is the highest attendance of all?
|
SELECT MAX("Attendance") FROM "2-13242342-7" WHERE "Visitor" = 'Los Angeles';
|
80,165
|
2-13242342-7
|
For all games with Calgary as home, what is the average number of attendees?
|
SELECT AVG("Attendance") FROM "2-13242342-7" WHERE "Home" = 'Calgary';
|
80,166
|
2-12531692-10
|
Who is no. 5 when Lena Claudisabel is no. 1 and Lena Sylvie is no. 2?
|
SELECT "No.5" FROM "2-12531692-10" WHERE "No.1" = 'Lena Claudisabel' AND "No.2" = 'Lena Sylvie';
|
80,167
|
2-12531692-10
|
Who is no.3 when Claudio Sylvie is no.1?
|
SELECT "No.3" FROM "2-12531692-10" WHERE "No.1" = 'Claudio Sylvie';
|
80,168
|
2-12206356-2
|
What was the score of the game when the record was 18-20?
|
SELECT "Score" FROM "2-12206356-2" WHERE "Record" = '18-20';
|
80,169
|
2-12171145-1
|
What Men's double held together with Women's singles of Camilla Martin?
|
SELECT "Men's doubles" FROM "2-12171145-1" WHERE "Women's singles" = 'Camilla Martin';
|
80,170
|
2-12513240-1
|
Who played in the Mixed Doubles when Zhu Lin played in the Women's Singles?
|
SELECT "Mixed doubles" FROM "2-12513240-1" WHERE "Women's singles" = 'Zhu Lin';
|
80,171
|
2-12513240-1
|
Who was on the Men's Doubles Team in 2002?
|
SELECT "Men's doubles" FROM "2-12513240-1" WHERE "Year" = 2002.0;
|
80,172
|
2-12513240-1
|
Which year did Aya Ohori play in the Women's Singles?
|
SELECT "Year" FROM "2-12513240-1" WHERE "Women's singles" = 'Aya Ohori';
|
80,173
|
2-13141391-4
|
Who was the Partner for Flavio Cipolla Simone Vagnozzi Opponents in the final?
|
SELECT "Partner" FROM "2-13141391-4" WHERE "Opponents in the final" = 'Flavio Cipolla Simone Vagnozzi';
|
80,174
|
2-13141391-4
|
Who were the Opponents in the final that played on a Carpet (i) Surface?
|
SELECT "Opponents in the final" FROM "2-13141391-4" WHERE "Surface" = 'Carpet (i)';
|
80,175
|
2-13141391-4
|
Played on Clay Surface, what was the Score of the Dortmund Tournament?
|
SELECT "Score in the final" FROM "2-13141391-4" WHERE "Surface" = 'Clay' AND "Tournament" = 'Dortmund';
|
80,176
|
2-13141391-4
|
Who is Partner Frederik Nielsen's Opponents in the final?
|
SELECT "Opponents in the final" FROM "2-13141391-4" WHERE "Partner" = 'Frederik Nielsen';
|
80,177
|
2-13141391-4
|
What is Partner Tomas Behrend's Score in the final?
|
SELECT "Score in the final" FROM "2-13141391-4" WHERE "Partner" = 'Tomas Behrend';
|
80,178
|
2-12531523-2
|
What Country does Larry Mize play for?
|
SELECT "Country" FROM "2-12531523-2" WHERE "Player" = 'Larry Mize';
|
80,179
|
2-12531523-2
|
What is the winning total from 1976?
|
SELECT MAX("Total") FROM "2-12531523-2" WHERE "Year(s) won" = '1976';
|
80,180
|
2-12168673-1
|
What year was owner Michael E. Pegram's last win?
|
SELECT MAX("Year") FROM "2-12168673-1" WHERE "Owner" = 'Michael E. Pegram';
|
80,181
|
2-12168673-1
|
Who is the trainer for Cherry Valley Farm?
|
SELECT "Trainer" FROM "2-12168673-1" WHERE "Owner" = 'Cherry Valley Farm';
|
80,182
|
2-12168673-1
|
Who owned winner Blueeyesintherein after 2009?
|
SELECT "Owner" FROM "2-12168673-1" WHERE "Year" > 2009.0 AND "Winner" = 'Blueeyesintherein';
|
80,183
|
2-12207528-4
|
Who was the Blue Jays' opponent when their record was 33-15?
|
SELECT "Opponent" FROM "2-12207528-4" WHERE "Record" = '33-15';
|
80,184
|
2-12207528-4
|
Who did the Blue Jays lose to when their record was 36-20?
|
SELECT "Loss" FROM "2-12207528-4" WHERE "Record" = '36-20';
|
80,185
|
2-1252065-1
|
What is the rank of the qual 141.471?
|
SELECT "Rank" FROM "2-1252065-1" WHERE "Qual" = '141.471';
|
80,186
|
2-1252065-1
|
What is the start of lap 55?
|
SELECT "Start" FROM "2-1252065-1" WHERE "Laps" = 55.0;
|
80,187
|
2-1252065-1
|
What is rank of the year 1956?
|
SELECT "Rank" FROM "2-1252065-1" WHERE "Year" = '1956';
|
80,188
|
2-1252065-1
|
What is the lap number for the rank of 13?
|
SELECT "Laps" FROM "2-1252065-1" WHERE "Rank" = '13';
|
80,189
|
2-1252065-1
|
What is the rank for 1961?
|
SELECT "Rank" FROM "2-1252065-1" WHERE "Year" = '1961';
|
80,190
|
2-1252065-1
|
What is the sum of the lap with a finish of 24?
|
SELECT SUM("Laps") FROM "2-1252065-1" WHERE "Finish" = '24';
|
80,191
|
2-1297671-1
|
Which band plays Self Versus Self - Immersion?
|
SELECT "Band" FROM "2-1297671-1" WHERE "Album or Song" = 'Self Versus Self - Immersion';
|
80,192
|
2-12278106-2
|
What Event used Submission (rear naked choke) with 9-4?
|
SELECT "Event" FROM "2-12278106-2" WHERE "Method" = 'Submission (rear naked choke)' AND "Record" = '9-4';
|
80,193
|
2-12278106-2
|
What event was Donald Ouimet involved?
|
SELECT "Event" FROM "2-12278106-2" WHERE "Opponent" = 'Donald Ouimet';
|
80,194
|
2-13047884-1
|
What event did she finish 3rd in 2010?
|
SELECT "Event" FROM "2-13047884-1" WHERE "Position" = '3rd' AND "Year" = 2010.0;
|
80,195
|
2-13047884-1
|
What year did she compete in tampere, finland?
|
SELECT AVG("Year") FROM "2-13047884-1" WHERE "Venue" = 'tampere, finland';
|
80,196
|
2-13081672-1
|
Ben Hogan with a score larger than 66 had a place listed of what?
|
SELECT "Place" FROM "2-13081672-1" WHERE "Score" > 66.0 AND "Player" = 'Ben Hogan';
|
80,197
|
2-13081672-1
|
With a score of 70, this player's name is listed as what?
|
SELECT "Player" FROM "2-13081672-1" WHERE "Score" = 70.0;
|
80,198
|
2-13081672-1
|
With a score smaller than 71 along with a place of T6, what is the To par score?
|
SELECT "To par" FROM "2-13081672-1" WHERE "Score" < 71.0 AND "Place" = 'T6';
|
80,199
|
2-1300302-1
|
Which Hanyu Pinyin has a GDP in 2011 larger than 688.02 billion yuan and a regional population of 8,700,400 in 2010?
|
SELECT "Hanyu Pinyin" FROM "2-1300302-1" WHERE "GDP(2011)(billion yuan)" > 688.02 AND "Regional Population(2010)" = '8,700,400';
|
80,200
|
2-1300302-1
|
Which Hanzi has a Regional Population of 4,591,972 in 2010?
|
SELECT "Hanzi" FROM "2-1300302-1" WHERE "Regional Population(2010)" = '4,591,972';
|
80,201
|
2-12382948-5
|
What is the Name of the person from the Netherlands in a Lane lower than 5, with a Rank better than 5, and a time of less than 55.62?
|
SELECT "Name" FROM "2-12382948-5" WHERE "Rank" < 5.0 AND "Time" < 55.62 AND "Lane" < 5.0 AND "Nationality" = 'Netherlands';
|
80,202
|
2-12382948-5
|
What is the highest Rank of Karen Pickering when she had a time of less than 55.71?
|
SELECT MAX("Rank") FROM "2-12382948-5" WHERE "Name" = 'Karen Pickering' AND "Time" < 55.71;
|
80,203
|
2-12382948-5
|
What is the highest Lane number of a person with a time of 55.94 with a Rank that's bigger than 8?
|
SELECT MAX("Lane") FROM "2-12382948-5" WHERE "Time" > 55.94 AND "Rank" > 8.0;
|
80,204
|
2-12207553-3
|
What was the date of the game that had a loss of Burns (0-1)?
|
SELECT "Date" FROM "2-12207553-3" WHERE "Loss" = 'Burns (0-1)';
|
80,205
|
2-12207553-3
|
What was the loss of the game when the record was 20-16?
|
SELECT "Loss" FROM "2-12207553-3" WHERE "Record" = '20-16';
|
80,206
|
2-12207553-3
|
What was the loss of the game that had an attendance of 18,769?
|
SELECT "Loss" FROM "2-12207553-3" WHERE "Attendance" = '18,769';
|
80,207
|
2-12207553-3
|
What was the date of the game that had a loss of Geisel (0-1)?
|
SELECT "Date" FROM "2-12207553-3" WHERE "Loss" = 'Geisel (0-1)';
|
80,208
|
2-12207553-3
|
What is the date of the game against the Royals that had an attendance of 12,699?
|
SELECT "Date" FROM "2-12207553-3" WHERE "Opponent" = 'Royals' AND "Attendance" = '12,699';
|
80,209
|
2-12169960-1
|
When regions center has a rank less than 11, what is the greatest number o floors?
|
SELECT MAX("Floors") FROM "2-12169960-1" WHERE "Name" = 'regions center' AND "Rank" < 11.0;
|
80,210
|
2-12169960-1
|
What is the average rank for a building with 24 floors?
|
SELECT AVG("Rank") FROM "2-12169960-1" WHERE "Floors" = 24.0;
|
80,211
|
2-12169960-1
|
What is the rank for Omni Nashville Hotel?
|
SELECT SUM("Rank") FROM "2-12169960-1" WHERE "Name" = 'Omni Nashville Hotel';
|
80,212
|
2-12169960-1
|
What is the greatest rank for Fifth Third Center?
|
SELECT MAX("Rank") FROM "2-12169960-1" WHERE "Name" = 'Fifth Third Center';
|
80,213
|
2-12169960-1
|
When a building is 292 (89) ft (m) tall, has less than 23 floors, and ranks less than 14, what is the average year?
|
SELECT AVG("Year") FROM "2-12169960-1" WHERE "Floors" < 23.0 AND "Height ft (m)" = '292 (89)' AND "Rank" < 14.0;
|
80,214
|
2-12938428-1
|
What type of regular season/preseason game was played on August 25, 2007?
|
SELECT "Regular season / Preseason" FROM "2-12938428-1" WHERE "Date" = 'August 25, 2007';
|
80,215
|
2-12938428-1
|
In what stadium was the game on August 22, 2008 played?
|
SELECT "Stadium" FROM "2-12938428-1" WHERE "Date" = 'August 22, 2008';
|
80,216
|
2-12938428-1
|
In what stadium was the home team Dallas Cowboys 21?
|
SELECT "Stadium" FROM "2-12938428-1" WHERE "Home team" = 'Dallas Cowboys 21';
|
80,217
|
2-12938428-1
|
On what date was the home team the Dallas Cowboys 34?
|
SELECT "Date" FROM "2-12938428-1" WHERE "Home team" = 'Dallas Cowboys 34';
|
80,218
|
2-12938428-1
|
Who was the visiting team on October 15, 2006?
|
SELECT "Visiting team" FROM "2-12938428-1" WHERE "Date" = 'October 15, 2006';
|
80,219
|
2-1236238-1
|
What's the smallest amount of Laps that had a finish of 7 with a start of 6?
|
SELECT MIN("Laps") FROM "2-1236238-1" WHERE "Finish" = '7' AND "Start" = '6';
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.