question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
What is the name for the locomotive n474? | SELECT Name FROM table WHERE Locomotive = n474 |
Which home team has a Crowd greater than 28,000, and an Away team of st kilda? | SELECT Home team FROM table WHERE Crowd > 28,000 AND Away team = st kilda |
Which home team has an Away team score of 18.21 (129)? | SELECT Home team FROM table WHERE Away team score = 18.21 (129) |
What is the home team score at windy hill? | SELECT Home team score FROM table WHERE Venue = windy hill |
Which date has a Crowd greater than 28,000, and a Home team of geelong? | SELECT Date FROM table WHERE Crowd > 28,000 AND Home team = geelong |
What is the largest crowd for an Away team of st kilda? | SELECT MAX Crowd FROM table WHERE Away team = st kilda |
Where was the match that had 119 points for played? | SELECT Played in FROM table WHERE Points for = 119 |
Where were 16 matches played? | SELECT Played in FROM table WHERE Matches = 16 |
What match had 240 points for? | SELECT Matches FROM table WHERE Points for = 240 |
What was the score on 26 July 1930? | SELECT Score FROM table WHERE Date = 26 july 1930 |
How many laps did Innes Ireland make when he had a grid more than 15? | SELECT Laps FROM table WHERE Grid > 15 AND Driver = innes ireland |
What is the grid for Jack Brabham with more than 65 laps? | SELECT SUM Grid FROM table WHERE Driver = jack brabham AND Laps > 65 |
Who drove grid 5? | SELECT Driver FROM table WHERE Grid = 5 |
What is the date of the game with the Rockets as the visitor team? | SELECT Date FROM table WHERE Visitor = rockets |
What was the position of the player who played for the Rockets during 1981? | SELECT Position FROM table WHERE Years for Rockets = 1981 |
What school, club team, or country did the player with a number smaller than 4 come from? | SELECT School/Club Team/Country FROM table WHERE No.(s) < 4 |
What is the number of the player who came from Virginia? | SELECT No.(s) FROM table WHERE School/Club Team/Country = virginia |
Which place has a home team score of 18.19 (127)? | SELECT Venue FROM table WHERE Home team score = 18.19 (127) |
What is the Time/Retired with over 56 laps and a grid of 5? | SELECT Time/Retired FROM table WHERE Laps > 56 AND Grid = 5 |
Who is the driver when the tyre is p and the entrant is officine alfieri maserati? | SELECT Driver FROM table WHERE Tyre = p AND Entrant = officine alfieri maserati |
Who is the constructor when the chassis is talbot-lago t26c and the driver is charles pozzi? | SELECT Constructor FROM table WHERE Chassis = talbot-lago t26c AND Driver = charles pozzi |
What is the tyre when the entrant is sa alfa romeo and the driver is luigi fagioli? | SELECT Tyre FROM table WHERE Entrant = sa alfa romeo AND Driver = luigi fagioli |
Who is the entrant when the engine is talbot l6 and the driver is pierre levegh? | SELECT Entrant FROM table WHERE Engine = talbot l6 AND Driver = pierre levegh |
Who is the entrant when the chassis is ferrari 125? | SELECT Entrant FROM table WHERE Chassis = ferrari 125 |
what is the engine when the tyre is d, the constructor is era and the driver is bob gerard? | SELECT Engine FROM table WHERE Tyre = d AND Constructor = era AND Driver = bob gerard |
What was the score when the record was 39-62? | SELECT Score FROM table WHERE Record = 39-62 |
What was the date when the record was 35-57? | SELECT Date FROM table WHERE Record = 35-57 |
What was the loss when the record was 34-56? | SELECT Loss FROM table WHERE Record = 34-56 |
What is the score of the away team who played the home team who scored 7.14 (56)? | SELECT Away team score FROM table WHERE Home team score = 7.14 (56) |
What is the name of the venue where the away team scored 7.6 (48) and the home team scored 21.27 (153)? | SELECT Venue FROM table WHERE Away team score = 7.6 (48) AND Home team score = 21.27 (153) |
On what date did the home team score 5.15 (45)? | SELECT Date FROM table WHERE Home team score = 5.15 (45) |
What is the score of the away team whose opponent scored 7.14 (56) in front of a crowd was larger than 24,000? | SELECT Away team score FROM table WHERE Crowd > 24,000 AND Home team score = 7.14 (56) |
What is the name of the away team that played Geelong? | SELECT Away team FROM table WHERE Home team = geelong |
What is the smallest crowd size for away team Fitzroy? | SELECT MIN Crowd FROM table WHERE Away team = fitzroy |
Which Builder has BR No. 30782? | SELECT Builder FROM table WHERE BR No. = 30782 |
What is the title of the episode with a production code of K1504? | SELECT Title FROM table WHERE Production code = k1504 |
What is the average of the Series #s that were directed by Matthew Penn? | SELECT AVG Series # FROM table WHERE Directed by = matthew penn |
How many episodes did Matthew Penn direct before season 22? | SELECT COUNT Series # FROM table WHERE Season # < 22 AND Directed by = matthew penn |
What Visiting Team(s) had an Attendance of over 18,680 | SELECT Visitor FROM table WHERE Attendance > 18,680 |
When Nashville was the visiting team what was the lowest Attendance shown? | SELECT MIN Attendance FROM table WHERE Visitor = nashville |
What is the time/retired for the driver with 16 grids? | SELECT Time/Retired FROM table WHERE Grid = 16 |
What is the smallest grid for a time/retired of 1:56:18.22? | SELECT MIN Grid FROM table WHERE Time/Retired = 1:56:18.22 |
Who was the opponent on September 28? | SELECT Opponent FROM table WHERE Date = september 28 |
Who was the opponent in the game with save ||33,389||87–62? | SELECT Opponent FROM table WHERE Save = ||33,389||87–62 |
Who was the opponent in the game with save ||33,723||93–64? | SELECT Opponent FROM table WHERE Save = ||33,723||93–64 |
What was the score on September 8? | SELECT Score FROM table WHERE Date = september 8 |
Which nationality has Years for Jazz of 1984-85? | SELECT Nationality FROM table WHERE Years for Jazz = 1984-85 |
Which position has a Nationality of united states, and a Player of roger powell? | SELECT Position FROM table WHERE Nationality = united states AND Player = roger powell |
What years does milt palacio play? | SELECT Years for Jazz FROM table WHERE Player = milt palacio |
Which years have a School/Club Team of colorado state? | SELECT Years for Jazz FROM table WHERE School/Club Team = colorado state |
During which years was the Model 318td (diesel) with the Engine code of m47d20 manufactured? | SELECT Years FROM table WHERE Engine code = m47d20 AND Model = 318td (diesel) |
What is the Torque of the model with the engine code of M54B25? | SELECT Torque FROM table WHERE Engine code = m54b25 |
What is the Torque of the Model 320td (diesel)? | SELECT Torque FROM table WHERE Model = 320td (diesel) |
During which years was the model with the Engine code of m54b25 manufactured? | SELECT Years FROM table WHERE Engine code = m54b25 |
Which model was made from 2001–2004, with a Torque of n·m (lb·ft) @ 3750, and an Engine code of n42b18 / n46b18? | SELECT Model FROM table WHERE Years = 2001–2004 AND Torque = n·m (lb·ft) @ 3750 AND Engine code = n42b18 / n46b18 |
What was the date of the Mariners game that had a score of 1-12? | SELECT Date FROM table WHERE Score = 1-12 |
What was the date of the Mariners game that had an attendance of 6,707? | SELECT Date FROM table WHERE Attendance = 6,707 |
What was the date of the Mariners game that had a loss of Segui (0-5)? | SELECT Date FROM table WHERE Loss = segui (0-5) |
What was the loss of the Mariners game that had an attendance of 9,065? | SELECT Loss FROM table WHERE Attendance = 9,065 |
Who was the Mariners opponent at the game attended by 7,893? | SELECT Opponent FROM table WHERE Attendance = 7,893 |
What is the tournament surface at Aptos? | SELECT Surface FROM table WHERE Tournament = aptos |
What was the final score of the Paul Goldstein match? | SELECT Score FROM table WHERE Opponent in the final = paul goldstein |
Who played the final match on November 23, 1998? | SELECT Opponent in the final FROM table WHERE Date = november 23, 1998 |
What date did Paul Goldstein play the final? | SELECT Date FROM table WHERE Opponent in the final = paul goldstein |
What was the surface type at Takao Suzuki? | SELECT Surface FROM table WHERE Opponent in the final = takao suzuki |
What were the scores on September 11, 2006? | SELECT Score FROM table WHERE Date = september 11, 2006 |
Who did they lose to on may 9? | SELECT Loss FROM table WHERE Date = may 9 |
What is Pedro De La Rosa's total number of Grid? | SELECT COUNT Grid FROM table WHERE Driver = pedro de la rosa |
Which constructor has a Time/Retired of +37.311? | SELECT Constructor FROM table WHERE Time/Retired = +37.311 |
What is the time/retired for mika häkkinen | SELECT Time/Retired FROM table WHERE Driver = mika häkkinen |
Which title had an audience of 4.629.000? | SELECT Title FROM table WHERE Audience = 4.629.000 |
What was the audience for Episode 21? | SELECT Audience FROM table WHERE Episode = 21 |
What was the share when the audience was 3.944.000? | SELECT Share FROM table WHERE Audience = 3.944.000 |
What was the audience for Mi Amigo el Monstruo? | SELECT Audience FROM table WHERE Title = mi amigo el monstruo |
Which title has a share of 19,9% | SELECT Title FROM table WHERE Share = 19,9% |
Which share had an audience of 4.693.000? | SELECT Share FROM table WHERE Audience = 4.693.000 |
what was the venue that hosted Carlton as the away team? | SELECT Venue FROM table WHERE Away team = carlton |
What was the date of the Collingwood away game? | SELECT Date FROM table WHERE Away team = collingwood |
Who is the player that plays position c on the New York Knicks? | SELECT Player FROM table WHERE Team = new york knicks AND Position = c |
What is the position of the pick 1 player? | SELECT Position FROM table WHERE Pick = 1 |
Who is the player that plays position f from Fort Wayne Pistons? | SELECT Player FROM table WHERE Team = fort wayne pistons AND Position = f |
Which round is the player from Oregon from? | SELECT Round FROM table WHERE College = oregon |
How many goals for occurred when the goals against was less than 56 and games played was larger than 7 with less than 6 wins? | SELECT COUNT Goals For FROM table WHERE Goals Against < 56 AND Games Played > 7 AND Wins < 6 |
What is the smallest number of wins with 7 games played and goals against less than 46 when goals for is more than 34? | SELECT MIN Wins FROM table WHERE Games Played = 7 AND Goals Against < 46 AND Goals For > 34 |
What is the average number of ties when goals against is less than 56 for Ottawa Hockey Club and the goals for is more than 47? | SELECT AVG Ties FROM table WHERE Goals Against < 56 AND Team = ottawa hockey club AND Goals For > 47 |
How many losses occurred with less than 8 games played and less than 3 wins? | SELECT COUNT Losses FROM table WHERE Games Played < 8 AND Wins < 3 |
How many goals against were scored when the goals for is less than 48 with 0 ties? | SELECT COUNT Goals Against FROM table WHERE Goals For < 48 AND Ties < 0 |
Name the position for the player that is from valparaiso | SELECT Position FROM table WHERE School/Club Team/Country = valparaiso |
Name the height in feet for the guard from north carolina-charlotte | SELECT Height in Ft. FROM table WHERE Position = guard AND School/Club Team/Country = north carolina-charlotte |
Name the height in feet for the player from valparaiso | SELECT Height in Ft. FROM table WHERE School/Club Team/Country = valparaiso |
Name the school/club team/country for the player that is 6-5 ft | SELECT School/Club Team/Country FROM table WHERE Height in Ft. = 6-5 |
Name the numbers for the player with a height in ft of 6-7 for the guard | SELECT No.(s) FROM table WHERE Height in Ft. = 6-7 AND Position = guard |
Name the height in ft for the player from wyoming | SELECT Height in Ft. FROM table WHERE School/Club Team/Country = wyoming |
Which college did the Calgary Stampeders recruit from? | SELECT College FROM table WHERE CFL Team = calgary stampeders |
Which year has the Co-singer solo and a Film name of bhagya debata? | SELECT MIN Year FROM table WHERE Co-singer = solo AND Film name = bhagya debata |
What date is the Portuguese Grand Prix? | SELECT Date FROM table WHERE Grand Prix = portuguese grand prix |
Which winning driver is located in Imola? | SELECT Winning Driver FROM table WHERE Location = imola |
What is the Pole Position of the Portuguese Grand Prix? | SELECT Pole Position FROM table WHERE Grand Prix = portuguese grand prix |
On what date did a race occur at Long Beach? | SELECT Date FROM table WHERE Location = long beach |
What race had Jody Scheckter hold pole position? | SELECT Race FROM table WHERE Pole Position = jody scheckter |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.