question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
What is the nationality of the player on the Jazz from 1974-79? | SELECT Nationality FROM table WHERE Years for Jazz = 1974-79 |
Who is the player who went to school at Tampa? | SELECT Player FROM table WHERE School/Club Team = tampa |
What is the nationality of the player on the Jazz from 1974-79? | SELECT Nationality FROM table WHERE Years for Jazz = 1974-79 |
What was the total size of the crowd when an away team had a score of 9.9 (63)? | SELECT SUM Crowd FROM table WHERE Away team score = 9.9 (63) |
What was the away team that had a score of 4.13 (37)? | SELECT Away team FROM table WHERE Away team score = 4.13 (37) |
What was the score of the away team at the the glenferrie oval? | SELECT Away team score FROM table WHERE Venue = glenferrie oval |
What institution is located in athens, ga, us? | SELECT Institution FROM table WHERE Location = athens, ga, us |
What is the status of the institution that was founded in 1996? | SELECT Status FROM table WHERE Founded = 1996 |
During runs 332, what was the venue? | SELECT Venue FROM table WHERE Runs = 332 |
Which player's runs are 270? | SELECT Player FROM table WHERE Runs = 270 |
During season 1935, what was the venue? | SELECT Venue FROM table WHERE Season = 1935 |
For player Les Ames, what was the venue? | SELECT Venue FROM table WHERE Player = les ames |
When was the Austrian Grand Prix? | SELECT Date FROM table WHERE Grand Prix = austrian grand prix |
How many points has a draw greater than 3 and 3rd place? | SELECT Points FROM table WHERE Draw > 3 AND Place = 3 |
Name the average events for miller barber | SELECT AVG Events FROM table WHERE Player = miller barber |
Name the most wins for earnings of 130,002 | SELECT MAX Wins FROM table WHERE Earnings ( $ ) = 130,002 |
Name the average wins for earnings more than 120,367 and events less than 13 | SELECT AVG Wins FROM table WHERE Earnings ( $ ) > 120,367 AND Events < 13 |
Name the average rank for earnings less than 231,008 and wins less than 1 | SELECT AVG Rank FROM table WHERE Earnings ( $ ) < 231,008 AND Wins < 1 |
What year was Neverchanger with the label of Latenight weeknight? | SELECT Year FROM table WHERE Label = latenight weeknight AND Release title = neverchanger |
What year was Ethereal 77, which has a CD album release type? | SELECT Year FROM table WHERE Release type = cd album AND Released as = ethereal 77 |
what is the platform when the frequency (per hour) is 4 and the destination is west croydon? | SELECT SUM Platform FROM table WHERE Frequency (per hour) = 4 AND Destination = west croydon |
what is the highest platform number when the frequency (per hour) is 4, the operator is london overground and the destination is west croydon? | SELECT MAX Platform FROM table WHERE Frequency (per hour) = 4 AND Operator = london overground AND Destination = west croydon |
What is the name of the team with a qual 1 time of 1:17.481? | SELECT Team FROM table WHERE Qual 1 = 1:17.481 |
What is the qual 1 for the best of 1:18.067? | SELECT Qual 1 FROM table WHERE Best = 1:18.067 |
What is the qual 1 when the qual 2 has no time and the best is 1:16.776? | SELECT Qual 1 FROM table WHERE Qual 2 = no time AND Best = 1:16.776 |
What person on team Minardi Team USA with a qual of 1:17.481? | SELECT Name FROM table WHERE Team = minardi team usa AND Qual 1 = 1:17.481 |
What is the name of the person with a qual 1 time of 1:16.850? | SELECT Name FROM table WHERE Qual 1 = 1:16.850 |
What is the qual 2 when the qual 1 is 1:16.841? | SELECT Qual 2 FROM table WHERE Qual 1 = 1:16.841 |
Who is the Monarch whose Heir is Robert Curthose when the Reason is that the father became king? | SELECT Monarch FROM table WHERE Heir = robert curthose AND Reason = father became king |
Which Monarch has succession unclear 1100-1103 as his Status? | SELECT Monarch FROM table WHERE Status = succession unclear 1100-1103 |
Which Reason is given when 1103 is the date for Became heir? | SELECT Reason FROM table WHERE Became heir = 1103 |
What is the Status when Henry I is the Monarch and the Reason is succession unclear 1100-1103? | SELECT Status FROM table WHERE Monarch = henry i AND Reason = succession unclear 1100-1103 |
Name the tyre for hb bewaking team ensign with rounds of 13 | SELECT Tyre FROM table WHERE Entrant = hb bewaking team ensign AND Rounds = 13 |
Name the round for engine of ford cosworth dfv 3.0 v8 with chassis fo 751 | SELECT Rounds FROM table WHERE Engine = ford cosworth dfv 3.0 v8 AND Chassis = 751 |
Name the chassis for tyre of g and carlos reutemann | SELECT Chassis FROM table WHERE Tyre = g AND Driver = carlos reutemann |
Name the entrant for chassis of gh1 | SELECT Entrant FROM table WHERE Chassis = gh1 |
Name the rounds for stanley brm | SELECT Rounds FROM table WHERE Entrant = stanley brm |
What were the years of the Tottenham Hotspur career for the player with 10 goals, from England, played the df position, and had 118 club apps? | SELECT Tottenham Hotspur career FROM table WHERE Goals = 10 AND Nationality = england AND Position = df AND Club Apps = 118 |
What is the position of the player from England with 62 goals? | SELECT Position FROM table WHERE Nationality = england AND Goals = 62 |
How many goals did the player from England who played the position of mf and had 170 club apps had? | SELECT Goals FROM table WHERE Nationality = england AND Position = mf AND Club Apps = 170 |
How many goals did the player with 229 club apps have? | SELECT Goals FROM table WHERE Club Apps = 229 |
For which Award Ceremony was Emilio Pichardo as Bobby Strong nominated? | SELECT Award Ceremony FROM table WHERE Nominee = emilio pichardo as bobby strong |
Who was nominated for best female performer? | SELECT Nominee FROM table WHERE Category = best female performer |
What area is the school with a decile of 8 in? | SELECT Area FROM table WHERE Decile = 8 |
Which school has a state authority and a roll of 318? | SELECT Name FROM table WHERE Authority = state AND Roll = 318 |
In what area is torbay school with a state authority? | SELECT Area FROM table WHERE Authority = state AND Name = torbay school |
How many regular season titles did Kansas receive when they received fewer than 2 tournament titles and more than 0 total titles? | SELECT Regular Season FROM table WHERE Tournament < 2 AND Total > 0 AND Team = kansas |
What is the time of retirement with Laps smaller than 66, a grid less than 10, and a Driver of heinz-harald frentzen? | SELECT Time/Retired FROM table WHERE Laps < 66 AND Grid < 10 AND Driver = heinz-harald frentzen |
How many laps does olivier panis have? | SELECT Laps FROM table WHERE Driver = olivier panis |
Which home team played against Geelong? | SELECT Home team FROM table WHERE Away team = geelong |
What did the home team score when the away team scored 18.20 (128)? | SELECT Home team score FROM table WHERE Away team score = 18.20 (128) |
How large was the crowd when North Melbourne played as the away team? | SELECT Crowd FROM table WHERE Away team = north melbourne |
Who is the away team that played home team Hawthorn? | SELECT Away team FROM table WHERE Home team = hawthorn |
What is the name of the home team that played away team Footscray? | SELECT Home team FROM table WHERE Away team = footscray |
Who is the home team that played at venue MCG? | SELECT Home team FROM table WHERE Venue = mcg |
What is the name of the first appearance when Chad Williams is a portrayal? | SELECT First appearance FROM table WHERE Portrayed by = chad williams |
Which character is portrayed by Elias Koteas? | SELECT Character FROM table WHERE Portrayed by = elias koteas |
What is the Home Team Score at VFL Park? | SELECT Home team score FROM table WHERE Venue = vfl park |
What is the Home Team Score at Windy Hill? | SELECT Home team score FROM table WHERE Venue = windy hill |
On what Date is Carlton the Away Team? | SELECT Date FROM table WHERE Away team = carlton |
What Crowd had the least people with a Home Team Score of 9.13 (67)? | SELECT MIN Crowd FROM table WHERE Home team score = 9.13 (67) |
On what Date was the Home Team Score 9.13 (67)? | SELECT Date FROM table WHERE Home team score = 9.13 (67) |
Which competition with a result of 3-1? | SELECT Competition FROM table WHERE Result = 3-1 |
I want to know the lowest ligue 1 titles for position in 2012-13 of 010 12th and number of seasons in ligue 1 more than 56 | SELECT MIN Ligue 1 titles FROM table WHERE Position in 2012–13 = 010 12th AND Number of seasons in Ligue 1 > 56 |
Tell me the position in 2012-13 and number of seasons in leigue 1 of 30 with ligue 1 titles of 1 | SELECT Position in 2012–13 FROM table WHERE Number of seasons in Ligue 1 = 30 AND Ligue 1 titles = 1 |
What is the NBA draft result of the player from Kingston, PA? | SELECT NBA Draft FROM table WHERE Hometown = kingston, pa |
What is the NBA draft result of the player with a height of 6-7? | SELECT NBA Draft FROM table WHERE Height = 6-7 |
What is the NBA draft result of Dwayne Washington? | SELECT NBA Draft FROM table WHERE Player = dwayne washington |
What is the NBA draft result of the player from Dunbar High School? | SELECT NBA Draft FROM table WHERE School = dunbar high school |
What is the school of the player from the College of Michigan? | SELECT School FROM table WHERE College = michigan |
What is the away team score for the game where the home team scored 19.16 (130)? | SELECT Away team score FROM table WHERE Home team score = 19.16 (130) |
What was the away team score for the game played at MCG? | SELECT Away team score FROM table WHERE Venue = mcg |
What was the home team's score at Victoria Park? | SELECT Home team score FROM table WHERE Venue = victoria park |
What is the score at shay stadium? | SELECT Score FROM table WHERE Venue = shay stadium |
What is the result at valley parade on 4/7/02? | SELECT Result FROM table WHERE Venue = valley parade AND Date = 4/7/02 |
Which competition has a Goal of deacon 8/8 and a Score of 32-14? | SELECT Competition FROM table WHERE Goals = deacon 8/8 AND Score = 32-14 |
What is the top grid that is driven by martin brundle? | SELECT MAX Grid FROM table WHERE Driver = martin brundle |
What is the grid 13 time score? | SELECT Time/Retired FROM table WHERE Grid = 13 |
Which grid is lower for thierry boutsen which laps less than 44? | SELECT MIN Grid FROM table WHERE Driver = thierry boutsen AND Laps < 44 |
Which player is 6-2? | SELECT Player FROM table WHERE Height = 6-2 |
What is the Laid down for the Hyperion ship? | SELECT Laid down FROM table WHERE Ship = hyperion |
What is the name of the ship that had a Pennant number of h55? | SELECT Ship FROM table WHERE Pennant number = h55 |
How did the jab tak hai jaan movie gross worldwide? | SELECT Worldwide Gross FROM table WHERE Movie = jab tak hai jaan |
What is average year for ayan mukerji? | SELECT AVG Year FROM table WHERE Director = ayan mukerji |
When melbourne was the home team what was their score? | SELECT Home team score FROM table WHERE Home team = melbourne |
What date had a time of 20:10? | SELECT Date FROM table WHERE Time = 20:10 |
What is the title of the episode that originally aired on March 31, 2008? | SELECT Episode Title FROM table WHERE Original Airdate = march 31, 2008 |
What is the episode number of the episode that originally aired on February 4, 2008? | SELECT Episode no. FROM table WHERE Original Airdate = february 4, 2008 |
when the away team score was 21.11 (137) what was the home team score? | SELECT Home team score FROM table WHERE Away team score = 21.11 (137) |
at kardinia park, what was the away team's score? | SELECT Away team score FROM table WHERE Venue = kardinia park |
what was the largest attendance at kardinia park? | SELECT MAX Crowd FROM table WHERE Venue = kardinia park |
Who was the Home team at the Western Oval location? | SELECT Home team FROM table WHERE Venue = western oval |
What's the average of the amount of laps for the driver patrick tambay? | SELECT AVG Laps FROM table WHERE Driver = patrick tambay |
When renault is the constructor, the grid is over 6, and the time was labeled ignition, what's the largest amount of laps on record? | SELECT MAX Laps FROM table WHERE Grid > 6 AND Constructor = renault AND Time/Retired = ignition |
In 2008, what was the world ranking that ranked 5th in L.A.? | SELECT World Ranking (1) FROM table WHERE Ranking L.A. (2) = 5th AND Year of publication = 2008 |
what is the total number of played when the goals for is more than 34 and goals against is more than 63? | SELECT COUNT Played FROM table WHERE Goals for > 34 AND Goals against > 63 |
what is the total number of goal different when the club is cf extremadura and the played is less than 38? | SELECT COUNT Goal Difference FROM table WHERE Club = cf extremadura AND Played < 38 |
what is the average points when the goal difference is less than 17, the club is getafe cf and the goals for is more than 30? | SELECT AVG Points FROM table WHERE Goal Difference < 17 AND Club = getafe cf AND Goals for > 30 |
what is the sum of goals for when the position is less than 8, the losses is less than 10 the goals against is less than 35 and played is less than 38? | SELECT SUM Goals for FROM table WHERE Position < 8 AND Losses < 10 AND Goals against < 35 AND Played < 38 |
what is the highest gold when the rank is 12 for the nation vietnam? | SELECT MAX Gold FROM table WHERE Rank = 12 AND Nation = vietnam |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.