question stringlengths 12 244 | sql stringlengths 22 468 |
|---|---|
How many attended the game at Busch Stadium (ii) when the time was 3:54? | SELECT Attendance FROM table WHERE Location = busch stadium (ii) AND Time = 3:54 |
What dates were the games after game 6 played? | SELECT Date FROM table WHERE Game > 6 |
What is the 1977 value that had Grand Slam Tournaments in 1972? | SELECT 1977 FROM table WHERE 1972 = grand slam tournaments |
What is the tournament that had Grand Slam Tournaments in 1976? | SELECT Tournament FROM table WHERE 1976 = grand slam tournaments |
What is the 1976 value of the Australian Open? | SELECT 1976 FROM table WHERE Tournament = australian open |
What is the 1977 value that has a 1974 a value? | SELECT 1977 FROM table WHERE 1974 = a |
Which week led to a record of 4-10? | SELECT Week FROM table WHERE Record = 4-10 |
Which week was the game against the San Diego Chargers? | SELECT Week FROM table WHERE Opponent = san diego chargers |
What is the height of the player who is from Huntington, WV? | SELECT Height FROM table WHERE Hometown = huntington, wv |
What school is the player who has a hometown of Chicago, IL from? | SELECT School FROM table WHERE Hometown = chicago, il |
Which college is the player from South Medford High School headed to? | SELECT College FROM table WHERE School = south medford high school |
Which school is the player who is headed to Duke from? | SELECT School FROM table WHERE College = duke |
What is the hometown of the player who is headed to Duke? | SELECT Hometown FROM table WHERE College = duke |
Who was Louise when Tracy Venner was Dainty June? | SELECT Louise FROM table WHERE Dainty June = tracy venner |
Who was Dainty June when Tammy Blanchard was Louise? | SELECT Dainty June FROM table WHERE Louise = tammy blanchard |
Who was Dainty June when Boyd Gaines was Herbie? | SELECT Dainty June FROM table WHERE Herbie = boyd gaines |
What production had Angela Lansbury as Rose and Barrie Ingham as Herbie? | SELECT Productions FROM table WHERE Rose = angela lansbury AND Herbie = barrie ingham |
Who was rose in the 1975 Broadway Revival? | SELECT Rose FROM table WHERE Productions = 1975 broadway revival |
Which production had Rex Robbins as Herbie? | SELECT Productions FROM table WHERE Herbie = rex robbins |
On what date was the venue VFL Park? | SELECT Date FROM table WHERE Venue = vfl park |
What date did Footscray play at home? | SELECT Date FROM table WHERE Home team = footscray |
What did the home team score when they played the away team of Geelong? | SELECT Home team score FROM table WHERE Away team = geelong |
For the away team with a score of 14.7 (91) what was the home team? | SELECT Home team FROM table WHERE Away team score = 14.7 (91) |
What was the lowest pick number for the Boston Celtics? | SELECT MIN Pick FROM table WHERE Team = boston celtics |
Who is the visitor team on 23 November 2007? | SELECT Visitor FROM table WHERE Date = 23 november 2007 |
Who is the leading scorer of the game on 20 November 2007? | SELECT Leading scorer FROM table WHERE Date = 20 november 2007 |
When was petter ronnquist picked? | SELECT Overall FROM table WHERE Player = petter ronnquist |
Which venue has a Result of 1–0? | SELECT Venue FROM table WHERE Result = 1–0 |
Which venue has a Result of 1–2? | SELECT Venue FROM table WHERE Result = 1–2 |
What is the highest score with a Result of 1–1 on 4 march 2001? | SELECT MAX Scored FROM table WHERE Result = 1–1 AND Date = 4 march 2001 |
What is the result of 2003 eaff championship preliminary on 2 march 2003? | SELECT Result FROM table WHERE Competition = 2003 eaff championship preliminary AND Date = 2 march 2003 |
I want the engine for luigi villoresi | SELECT Engine FROM table WHERE Driver = luigi villoresi |
I want the chassis for entrant of ecurie lutetia | SELECT Chassis FROM table WHERE Entrant = ecurie lutetia |
What is the venue when the away team scored 15.9 (99)? | SELECT Venue FROM table WHERE Away team score = 15.9 (99) |
What date was the game played at princes park? | SELECT Date FROM table WHERE Venue = princes park |
What was the score of the away team when the game was played at vfl park? | SELECT Away team score FROM table WHERE Venue = vfl park |
What was the venue when the away team scored 17.21 (123)? | SELECT Venue FROM table WHERE Away team score = 17.21 (123) |
What team was the home team when the away team scored 17.21 (123)? | SELECT Home team FROM table WHERE Away team score = 17.21 (123) |
Name the kaz hayashi for block A being bushi | SELECT Kaz Hayashi FROM table WHERE Block A = bushi |
Name the minoru for block A being koji kanemoto | SELECT Minoru FROM table WHERE Block A = koji kanemoto |
Name the BUSHI when it has kenny omega of yang (7:27) | SELECT BUSHI FROM table WHERE Kenny Omega = yang (7:27) |
Name the BUSHI that has kaz hayashi of kai (14:01) | SELECT BUSHI FROM table WHERE Kaz Hayashi = kai (14:01) |
Name the Kaz Hayashi which has BUSHI of yang (9:43) | SELECT Kaz Hayashi FROM table WHERE BUSHI = yang (9:43) |
Who was the winning driver for the Dutch Grand Prix? | SELECT Winning driver FROM table WHERE Race = dutch grand prix |
Tell me the song with year before 2013 and music director of yuvan shankar raja and film of billa ii | SELECT Song FROM table WHERE Year < 2013 AND Music Director = yuvan shankar raja AND Film = billa ii |
What title aired on March 19, 1998? | SELECT Title FROM table WHERE Original air date = march 19, 1998 |
Who directed the show with the production code k2708? | SELECT Directed by FROM table WHERE Production code = k2708 |
What is the season for series 81? | SELECT Season # FROM table WHERE Series # = 81 |
On what date was a match played at Lake Oval? | SELECT Date FROM table WHERE Venue = lake oval |
At the home game in Collingwood, how much did the away team score? | SELECT Away team score FROM table WHERE Home team = collingwood |
In the game at Victoria Park, what was the number of people in the crowd? | SELECT SUM Crowd FROM table WHERE Venue = victoria park |
What was the tournament that happened in 1974 in gothenburg , sweden? | SELECT Tournament FROM table WHERE Year = 1974 AND Venue = gothenburg , sweden |
Which MLB division has a win record of 76? | SELECT Division FROM table WHERE Wins = 76 |
What was the final rank of the Brewers in 1980? | SELECT Finish FROM table WHERE Team season = 1980 |
What was the final rank of the Brewers when they achieved a win percentage of .585? | SELECT Finish FROM table WHERE Win % = .585 |
Which division were the Brewers a part of in the 1987 season? | SELECT Division FROM table WHERE Team season = 1987 |
Which division of the Brewers had a 5th place ranking and a loss record of 87? | SELECT Division FROM table WHERE Finish = 5th AND Losses = 87 |
where was the game site when the opponent was san diego chargers? | SELECT Game site FROM table WHERE Opponent = san diego chargers |
who was the opponent when the week was 9? | SELECT Opponent FROM table WHERE Week = 9 |
What venue features geelong as the away side? | SELECT Venue FROM table WHERE Away team = geelong |
What venue features essendon at home? | SELECT Venue FROM table WHERE Home team = essendon |
What is the home team score at princes park? | SELECT Home team score FROM table WHERE Venue = princes park |
What home team scored 10.24 (84) at vfl park? | SELECT Home team FROM table WHERE Venue = vfl park AND Home team score = 10.24 (84) |
Who is the nominee for best director? | SELECT Nominee FROM table WHERE Category = best director |
What ceremony was leela chitnis nominated at? | SELECT Ceremony FROM table WHERE Outcome = nominated AND Nominee = leela chitnis |
what is the highest pick number of the CFL team, the winnipeg blue bombers? | SELECT MAX Pick # FROM table WHERE CFL Team = winnipeg blue bombers |
Which college has 41 picks? | SELECT College FROM table WHERE Pick # = 41 |
Which player plays for the college of manitoba? | SELECT Player FROM table WHERE College = manitoba |
What is the Unami Delaware value for a Thomas value of nacha? | SELECT Unami Delaware FROM table WHERE Thomas (1698) = nacha |
What is the Interpreter value for an Unami Delaware value of palé·naxk? | SELECT Interpreter (1684?) FROM table WHERE Unami Delaware = palé·naxk |
What is the Munsee Delaware value for an Interpreter value of palenah? | SELECT Munsee Delaware FROM table WHERE Interpreter (1684?) = palenah |
What is the Campanius term for an Unami Delaware term of palé·naxk? | SELECT Campanius (ca. 1645) FROM table WHERE Unami Delaware = palé·naxk |
What is the Interpreter term for a Munsee Delaware term of (n)xá·š? | SELECT Interpreter (1684?) FROM table WHERE Munsee Delaware = (n)xá·š |
What is the De Laet term for a Munsee Delaware term of ní·ša? | SELECT De Laet (1633) FROM table WHERE Munsee Delaware = ní·ša |
What is the name of the player picked before round 2? | SELECT Player FROM table WHERE Round < 2 |
What is the name of the player with an overall less than 209 for the Victoriaville tigres (qmjhl), and a Round of 1? | SELECT Player FROM table WHERE Overall < 209 AND Club team = victoriaville tigres (qmjhl) AND Round = 1 |
What is the name of the player with an Overall larger than 227? | SELECT Player FROM table WHERE Overall > 227 |
What is the highest overall for a round larger than 8 for pavol demitra? | SELECT MAX Overall FROM table WHERE Round > 8 AND Player = pavol demitra |
What description does Livery of ews have? | SELECT Description FROM table WHERE Livery = ews |
What Position has a Super League 1 Competition? | SELECT Position FROM table WHERE Competition = super league 1 |
What Competition in Main Article of Bradford Bulls 1997 have Robbie Paul as Captain with less than 5 Lost? | SELECT Competition FROM table WHERE Captain = robbie paul AND Lost < 5 AND Main Article = bradford bulls 1997 |
What Captain has Lost 13? | SELECT Captain FROM table WHERE Lost = 13 |
How many Drawn did Coach Francis Cummins have with less than 4 Lost? | SELECT SUM Drawn FROM table WHERE Lost < 4 AND Coach = francis cummins |
What horse did not start and had a total of over 16.16? | SELECT Horse FROM table WHERE Faults = did not start AND Total > 16.16 |
What was the total for christina liebherr? | SELECT MIN Total FROM table WHERE Rider = christina liebherr |
What is the population of the year featuring an 87.5% German population? | SELECT Population FROM table WHERE Germans = 87.5% |
How tall is the player from Chicago, IL? | SELECT Height FROM table WHERE Hometown = chicago, il |
What college does Dennis Scott attend? | SELECT College FROM table WHERE Player = dennis scott |
Who's from Bay City, TX? | SELECT Player FROM table WHERE Hometown = bay city, tx |
Which NBA Draft had Labradford Smith? | SELECT NBA Draft FROM table WHERE Player = labradford smith |
What was the lowest attendance at Windy Hill? | SELECT MIN Crowd FROM table WHERE Venue = windy hill |
What was the home team's score at Princes Park? | SELECT Home team score FROM table WHERE Venue = princes park |
How much did the home team Geelong score? | SELECT Home team score FROM table WHERE Home team = geelong |
What is the name of the home team that played Carlton? | SELECT Home team FROM table WHERE Away team = carlton |
Name the status with builder of orenstein and koppel | SELECT Status FROM table WHERE Builder = orenstein and koppel |
Who was the builder for joffre | SELECT Builder FROM table WHERE Name/Number = joffre |
Where did Carlton play as the home team? | SELECT Venue FROM table WHERE Home team = carlton |
Who was the away team when the home team scored 12.13 (85)? | SELECT Away team FROM table WHERE Home team score = 12.13 (85) |
Where was the game held when the home team scored 18.17 (125)? | SELECT Venue FROM table WHERE Home team score = 18.17 (125) |
Who was the home team when Melbourne was the away team? | SELECT Home team FROM table WHERE Away team = melbourne |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.