question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
What is Event, when Round is "10"? | SELECT Event FROM table WHERE Round = 10 |
What is Date, when Round is less than 10, and when Circuit is "Norisring"? | SELECT Date FROM table WHERE Round < 10 AND Circuit = norisring |
What is the highest goal difference of the club with more than 34 played? | SELECT MAX Goal Difference FROM table WHERE Played > 34 |
What is the total number of points of the club with a goal difference greater than 17 and more than 34 played? | SELECT COUNT Points FROM table WHERE Goal Difference > 17 AND Played > 34 |
What is the lowest goal difference of club real betis, who has less than 18 wins? | SELECT MIN Goal Difference FROM table WHERE Club = real betis AND Wins < 18 |
What is the sum of the points of the club with more than 34 played? | SELECT SUM Points FROM table WHERE Played > 34 |
What is the lowest number played of the club with more than 15 wins and less than 42 goals against? | SELECT MIN Played FROM table WHERE Wins > 15 AND Goals against < 42 |
What is the total number of wins of the club with a goal difference less than 21, 4 draws, and less than 21 losses? | SELECT COUNT Wins FROM table WHERE Goal Difference < 21 AND Draws = 4 AND Losses < 21 |
What is the round for the qualifying phase with a draw date on 16 July 2010? | SELECT Round FROM table WHERE Phase = qualifying AND Draw date = 16 july 2010 |
Jack Nicklaus finished in what place? | SELECT Finish FROM table WHERE Player = jack nicklaus |
What year (s) won was +2 the To par, and t22 the finish? | SELECT Year(s) won FROM table WHERE To par = +2 AND Finish = t22 |
Lee Trevino of the United States with a total greater than 294 had what To par? | SELECT To par FROM table WHERE Total > 294 AND Country = united states AND Player = lee trevino |
The golfer from Spain with a total less than 294 won in what year (s)? | SELECT Year(s) won FROM table WHERE Total < 294 AND Country = spain |
Which Nationality has a Pick # smaller than 130 and a Player of tyler bunz? Question 1 | SELECT Nationality FROM table WHERE Pick # < 130 AND Player = tyler bunz |
Which League from has a Player of louis domingue? | SELECT League from FROM table WHERE Player = louis domingue |
Which League from has a NHL team of san jose sharks (from carolina) 3? | SELECT League from FROM table WHERE NHL team = san jose sharks (from carolina) 3 |
Name the Nationality of södertälje sk? | SELECT Nationality FROM table WHERE Team from = södertälje sk |
Which Team has a Pick # of 148? | SELECT Team from FROM table WHERE Pick # = 148 |
Which team has a League from of ontario hockey league, and a Player of tony dehart? | SELECT NHL team FROM table WHERE League from = ontario hockey league AND Player = tony dehart |
What is T4 Place Player Nick Price's Money? | SELECT Money ( $ ) FROM table WHERE Place = t4 AND Player = nick price |
What is the To par of the Place 1 Player? | SELECT To par FROM table WHERE Place = 1 |
What Player's Score is 69-68-66-70=273? | SELECT Player FROM table WHERE Score = 69-68-66-70=273 |
What Player's To par is −6? | SELECT Player FROM table WHERE To par = −6 |
What is the height of the the building ranked 13= with fewer than 28 floors? | SELECT Height ft ( m ) FROM table WHERE Rank = 13= AND Floors < 28 |
Which Country has a To par larger than 3, and a Year(s) won of 1979? Question 1 | SELECT Country FROM table WHERE To par > 3 AND Year(s) won = 1979 |
Which To par has a Country of australia, and a Year(s) won of 1990? | SELECT MIN To par FROM table WHERE Country = australia AND Year(s) won = 1990 |
Which city is in Cantabria? | SELECT City FROM table WHERE Province = cantabria |
What is the name of the city with the Socialist Party of the Extremadurian People? | SELECT City FROM table WHERE Name in English = socialist party of the extremadurian people |
Which province has the partido Socialista del Pueblo Extremeño party? | SELECT Province FROM table WHERE Party = partido socialista del pueblo extremeño |
When was the Partido radical party in Madrid registered? | SELECT Date of registration FROM table WHERE Province = madrid AND Party = partido radical |
Which province is Pamplona located in? | SELECT Province FROM table WHERE City = pamplona |
On what date was the Canarian Workers Socialist Union registered? | SELECT Date of registration FROM table WHERE Name in English = canarian workers socialist union |
What is the lowest rank of Hungary where there was a total of 8 medals, including 2 silver? | SELECT MIN Rank FROM table WHERE Total = 8 AND Nation = hungary AND Silver > 2 |
What is the highest rank of Great Britain who has less than 16 bronze? | SELECT MAX Rank FROM table WHERE Nation = great britain AND Bronze < 16 |
What was the injured entry for the row with a killed entry of 29? | SELECT Injured FROM table WHERE Killed = 29 |
What location has a killed of 100.9, and a year later than 1993? | SELECT Location FROM table WHERE Year > 1993 AND Killed = 100.9 |
What was the injured entry for Venezuela? | SELECT Injured FROM table WHERE Country = venezuela |
Which season had a season finale of May 13, 2012? | SELECT SUM Season FROM table WHERE Season finale = may 13, 2012 |
How many viewers (in millions) were there for the season premiere on September 26, 2010? | SELECT Viewers (in millions) FROM table WHERE Season premiere = september 26, 2010 |
How old were Mitchell & Jessica when they danced the Cha-Cha-Cha? | SELECT Ages FROM table WHERE Dance = cha-cha-cha AND Pair = mitchell & jessica |
Who danced the Cha-Cha-Cha on November 18, 2008? | SELECT Pair FROM table WHERE Dance = cha-cha-cha AND Date = november 18, 2008 |
Who danced the Samba on October 14, 2008? | SELECT Pair FROM table WHERE Date = october 14, 2008 AND Dance = samba |
What was the pic for Canada for player Yvon Bouillon earlier than 1974? | SELECT AVG Pick FROM table WHERE Nationality = canada AND Year < 1974 AND Player = yvon bouillon |
What was the competition when the score was 3-0? | SELECT Competition FROM table WHERE Score = 3-0 |
Akin Ayodele drafted before round 7 plays what position? | SELECT Position FROM table WHERE Round < 7 AND Name = akin ayodele |
What is the total overall for the pick that went before round 4, who went to Tennessee for college, and was picked at a number bigger than 9? | SELECT SUM Overall FROM table WHERE Round < 4 AND College = tennessee AND Pick # > 9 |
What is the pick number average for the player who was drafted before round 7, and went to college at Tennessee? | SELECT AVG Pick # FROM table WHERE Round < 7 AND College = tennessee |
What visiting team played at the home of the Chicago Black Hawks with a record of 1-1? | SELECT Visitor FROM table WHERE Home = chicago black hawks AND Record = 1-1 |
What home team has a record of 4-3? | SELECT Home FROM table WHERE Record = 4-3 |
What visiting team has a record of 4-3? | SELECT Visitor FROM table WHERE Record = 4-3 |
What is the highest league up with less than 3 championships, a total less than 2, and a FA cup larger than 0? | SELECT MAX League Cup FROM table WHERE Championship < 3 AND Total < 2 AND FA Cup > 0 |
What is the average total for less than 1 championship? | SELECT AVG Total FROM table WHERE Championship < 1 |
What i the total number of championships less than 2, and a league cup larger than 1? | SELECT COUNT Total FROM table WHERE Championship < 2 AND League Cup > 1 |
What home team has a score of 2–1, when the away team was Telford United? | SELECT Home team FROM table WHERE Score = 2–1 AND Away team = telford united |
What was the score when the way team was Wrexham? | SELECT Score FROM table WHERE Away team = wrexham |
What is the home team when the Tie no is 1? | SELECT Home team FROM table WHERE Tie no = 1 |
What was Eduardo Romero's score? | SELECT Score FROM table WHERE Player = eduardo romero |
Where was the score 67-71-70=208? | SELECT Place FROM table WHERE Score = 67-71-70=208 |
What was the score when Fred Couples played in the United States and placed t9? | SELECT Score FROM table WHERE Country = united states AND Place = t9 AND Player = fred couples |
What country does Gary Koch play for? | SELECT Country FROM table WHERE Player = gary koch |
Who plays for Zimbabwe? | SELECT Player FROM table WHERE Country = zimbabwe |
What was the To par when the place was 4? | SELECT To par FROM table WHERE Place = 4 |
What is the current club with a position of sg/sf and a height less than 1.96? | SELECT Current Club FROM table WHERE Position = sg/sf AND Height < 1.96 |
What year was Rowan Barrett born? | SELECT Year born (Age) FROM table WHERE Player = rowan barrett |
What is the lowest height for Rans Brempong? | SELECT MIN Height FROM table WHERE Player = rans brempong |
When was the result 0–3? | SELECT Date FROM table WHERE Result = 0–3 |
What is the result of the match on 9 September 2009? | SELECT Result FROM table WHERE Date = 9 september 2009 |
What is the name of the player that was loaned out on 13 August 2008 ? | SELECT Name FROM table WHERE Date From = 13 august 2008 |
When was febian brandy loaned out until, when was loaned out on 2 february 2009.? | SELECT Date To FROM table WHERE Name = febian brandy AND Date From = 2 february 2009 |
When was james chester loaned out until ? | SELECT Date To FROM table WHERE Name = james chester |
Where did the player loaned out on 27 november 2008 move to ? | SELECT Moving To FROM table WHERE Date From = 27 november 2008 |
When was ron-robert zieler loaned out until ? | SELECT Date To FROM table WHERE Name = ron-robert zieler |
Where did the player in Pos mf, move to until 30 june 2009 ? | SELECT Moving To FROM table WHERE Date To = 30 june 2009 AND Pos. = mf |
What is the name of the manager who was replaced by michael skibbe? | SELECT Name FROM table WHERE Replacement = michael skibbe |
What is the club the used aykut kocaman as the replacement? | SELECT Club FROM table WHERE Replacement = aykut kocaman |
What is the date of appointment of nejat biyedić? | SELECT Date of appointment FROM table WHERE Name = nejat biyedić |
When did they play at the wachovia center? | SELECT Date FROM table WHERE Location/Attendance = wachovia center |
What game number was played at amway arena? | SELECT Game FROM table WHERE Location/Attendance = amway arena |
How many medals were won total for the country that won 1 silver and was ranked 2 or lower? | SELECT COUNT Total FROM table WHERE Silver = 1 AND Rank < 2 |
How many silvers did the country with more than 0 gold and a rank above 1 win that had a total less than 4? | SELECT COUNT Silver FROM table WHERE Gold > 0 AND Rank > 1 AND Total < 4 |
How many bronzes were won by the country with a total higher than 5? | SELECT SUM Bronze FROM table WHERE Total > 5 |
How many bronzes were won for the country that had a larger than 3 rank and a silver win count above 0? | SELECT SUM Bronze FROM table WHERE Rank > 3 AND Silver > 0 |
What is the highest value for Other that has CONCACAF value of 0 a U.S. Open Cup larger than 0? | SELECT MAX Other FROM table WHERE U.S. Open Cup > 0 AND CONCACAF = 0 |
Which Subregion has a No P. of 4, and a Pop/Area (1/km²) of 534? | SELECT Subregion FROM table WHERE No P. = 4 AND Pop/Area (1/km²) = 534 |
Which Pop/Area (1/km²) has a No P. larger than 1, and a Name of albergaria-a-velha? | SELECT AVG Pop/Area (1/km²) FROM table WHERE No P. > 1 AND Name = albergaria-a-velha |
Which Area (km²) is the lowest one that has a Population of 17,089? | SELECT MIN Area (km²) FROM table WHERE Pop. = 17,089 |
Who was the home team on 4 February 1987 when Luton Town was away team and there was no replay? | SELECT Home team FROM table WHERE Tie no = replay AND Date = 4 february 1987 AND Away team = luton town |
What was the score on 31 January 1987 with tie number 1? | SELECT Score FROM table WHERE Date = 31 january 1987 AND Tie no = 1 |
Who was the away team on 31 January 1987 when the home team was Wimbledon? | SELECT Away team FROM table WHERE Date = 31 january 1987 AND Home team = wimbledon |
How high is Macedonia's highest point? | SELECT Height (ft) FROM table WHERE Country = macedonia |
What is the theme with dani as the winner? | SELECT Theme FROM table WHERE Winner = dani |
What are the notes of the patience theme? | SELECT Notes FROM table WHERE Theme = patience |
what is the round when the position is (c)? | SELECT MAX Round FROM table WHERE Position = (c) |
what is the round for jake gardiner? | SELECT AVG Round FROM table WHERE Player = jake gardiner |
what is the college/junior/club team (league) when the round is higher than 1, the nationality is canada and the position is (d)? | SELECT College/Junior/Club Team (League) FROM table WHERE Round > 1 AND Nationality = canada AND Position = (d) |
what is the position when the round is higher than 3, the nationality is united states and the player is nick pryor? | SELECT Position FROM table WHERE Round > 3 AND Nationality = united states AND Player = nick pryor |
what is the college/junior/club team (league) when the position is (c) and the round is higher than 2? | SELECT College/Junior/Club Team (League) FROM table WHERE Position = (c) AND Round > 2 |
When the team Heathmere of the South West DFL won more than 11 games, what is the maximum byes? | SELECT MAX Byes FROM table WHERE South West DFL = heathmere AND Wins > 11 |
What is the most games lost when the against is greater than 1401, and the draws greater than 0? | SELECT MAX Losses FROM table WHERE Draws > 0 AND Against > 1401 |
What is the maximum draws when less than 2514 is the against, and less than 0 byes? | SELECT MAX Draws FROM table WHERE Against < 2514 AND Byes < 0 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.