question
stringlengths 12
244
| sql
stringlengths 22
468
|
|---|---|
What was the most recent race at Kyalami with Keke Rosberg competing?
|
SELECT MAX Year FROM table WHERE Venue = kyalami AND Driver = keke rosberg
|
What year was the Spanish Grand Prix where Emerson Fittipaldi drove?
|
SELECT Year FROM table WHERE Event = spanish grand prix AND Driver = emerson fittipaldi
|
What was the outcome for Emerson Fittipaldi in the race held at Jarama?
|
SELECT Result FROM table WHERE Venue = jarama AND Driver = emerson fittipaldi
|
How many years did Wilson Fittipaldi race?
|
SELECT COUNT Year FROM table WHERE Driver = wilson fittipaldi
|
What was the score of the game that had a loss of Cox (6–2)?
|
SELECT Score FROM table WHERE Loss = cox (6–2)
|
What was the date of the game that had a loss of Rojas (9–8)?
|
SELECT Date FROM table WHERE Loss = rojas (9–8)
|
What was the score of the game that had a loss of Coates (0–2)?
|
SELECT Score FROM table WHERE Loss = coates (0–2)
|
What was the score of the game when the record was 58–47?
|
SELECT Score FROM table WHERE Record = 58–47
|
Strong's Transliteration of yowyaqiym is what Hebrew word?
|
SELECT Hebrew word FROM table WHERE Strong's Transliteration = yowyaqiym
|
How do you spell the Hebrew word יְהוֹשָפָט in English?
|
SELECT English Spelling FROM table WHERE Hebrew word = יְהוֹשָפָט
|
What's the english word joshaphat in Strong's Transliteration?
|
SELECT Strong's Transliteration FROM table WHERE English Spelling = joshaphat
|
Which start has 1956 as the year?
|
SELECT Start FROM table WHERE Year = 1956
|
Which start has 32 as the finish and laps more than 6?
|
SELECT Start FROM table WHERE Finish = 32 AND Laps > 6
|
Which start has 4 as a rank?
|
SELECT Start FROM table WHERE Rank = 4
|
How many laps have 1 as the start?
|
SELECT COUNT Laps FROM table WHERE Start = 1
|
Which finish has 33 as a rank and 200 for laps?
|
SELECT Finish FROM table WHERE Rank = 33 AND Laps = 200
|
Which finish has 1 as the rank?
|
SELECT Finish FROM table WHERE Rank = 1
|
What are the special notes for an issue price under 24.95 with an edmonton oilers theme?
|
SELECT Special notes FROM table WHERE Issue price < 24.95 AND Theme = edmonton oilers
|
What theme has special notes from calgary flames gift set?
|
SELECT Theme FROM table WHERE Special notes = from calgary flames gift set
|
What year has an issue price over 15.95, and a special notes from edmonton oilers gift set?
|
SELECT COUNT Year FROM table WHERE Issue price > 15.95 AND Special notes = from edmonton oilers gift set
|
What is the site when the superintendent was John Barry?
|
SELECT Site FROM table WHERE Superintendent = john barry
|
What is the number of guns when the superintendent was Silas Talbot?
|
SELECT Guns FROM table WHERE Superintendent = silas talbot
|
What is the site when the superintendent was James Sever?
|
SELECT Site FROM table WHERE Superintendent = james sever
|
Who was the loss in the game with the record of 65-53?
|
SELECT Loss FROM table WHERE Record = 65-53
|
On August 29, What was the record playing against the Rangers?
|
SELECT Record FROM table WHERE Opponent = rangers AND Date = august 29
|
On August 22, how many people came to the game?
|
SELECT Attendance FROM table WHERE Date = august 22
|
When west indes was a holder at the end of the series for the 1991 season with an england greater than 1, what is the smallest west indies?
|
SELECT MIN West Indies FROM table WHERE Holder at the end of the series = west indies AND England > 1 AND Season = 1991
|
When were the Brewers 27-31?
|
SELECT Date FROM table WHERE Record = 27-31
|
When did the Brewers lose 2-8?
|
SELECT Loss FROM table WHERE Score = 2-8
|
When the Brewers score was 5-7, what was the lowest attendance?
|
SELECT MIN Attendance FROM table WHERE Score = 5-7
|
Who hosted the visiting team Baltimore Ravens?
|
SELECT Host team FROM table WHERE Visiting team = baltimore ravens
|
What was the final score at Heinz Field?
|
SELECT Final score FROM table WHERE Stadium = heinz field
|
What is the home stadium of the Atlanta Falcons?
|
SELECT Stadium FROM table WHERE Host team = atlanta falcons
|
What date did the New York Giants play as a visiting team?
|
SELECT Date FROM table WHERE Visiting team = new york giants
|
What is the score of Tim Herron, who placed t1?
|
SELECT Score FROM table WHERE Place = t1 AND Player = tim herron
|
What place does Fred Funk, who has a score of 69-69=138, have?
|
SELECT Place FROM table WHERE Score = 69-69=138 AND Player = fred funk
|
What is Tiger Woods's score?
|
SELECT Score FROM table WHERE Player = tiger woods
|
What is the score of Australia?
|
SELECT Score FROM table WHERE Country = australia
|
Who was Constructor for rider Marco Melandri?
|
SELECT Constructor FROM table WHERE Rider = marco melandri
|
Anthony West ride which Motorcyle?
|
SELECT Motorcycle FROM table WHERE Rider = anthony west
|
What team draft a player from Canada that was picked #43 and plays right wing?
|
SELECT NHL team FROM table WHERE Nationality = canada AND Position = right wing AND Pick # = 43
|
What nationality is Gerry Methe?
|
SELECT Nationality FROM table WHERE Player = gerry methe
|
What which player from Canada was picked #49 and plays left wing?
|
SELECT Player FROM table WHERE Nationality = canada AND Position = left wing AND Pick # = 49
|
What Nationality is Dave Hynes?
|
SELECT Nationality FROM table WHERE Player = dave hynes
|
The Estevan Bruins (WCHL) are affiliated with what NHL team?
|
SELECT NHL team FROM table WHERE College/junior/club team = estevan bruins (wchl)
|
what's the number of games with a Goals Against smaller than 14, and a Wins larger than 1, and a Draws smaller than 2, and a Goals For of 3?
|
SELECT MAX Games FROM table WHERE Goals Against < 14 AND Wins > 1 AND Draws < 2 AND Goals For = 3
|
what's the total win count for Games smaller than 7, and a Goals For larger than 2, and a Goals Against smaller than 6, and Draws of 1
|
SELECT COUNT Wins FROM table WHERE Games < 7 AND Goals For > 2 AND Goals Against < 6 AND Draws = 1
|
for a Goals Against smaller than 9, and a Goal Differential of 0, and a Draws smaller than 2, and a Wins of 1, what's the goal total?
|
SELECT SUM Goals For FROM table WHERE Goals Against < 9 AND Goal Differential = 0 AND Draws < 2 AND Wins = 1
|
What tournament happened on 12 november 2006?
|
SELECT Tournament FROM table WHERE Date = 12 november 2006
|
what was the score on 6 june 2010?
|
SELECT Score FROM table WHERE Date = 6 june 2010
|
When was the railmotor made?
|
SELECT Date made FROM table WHERE Type = railmotor
|
What are the fleet number for the 4-6-4t locomotive?
|
SELECT Fleet numbers FROM table WHERE Type = 4-6-4t
|
How many fast laps have 0 points in the World Series by Nissan?
|
SELECT Fast laps FROM table WHERE Points = 0 AND Series = world series by nissan
|
How many fast laps are in 6 races with 30 points in the World Series by Nissan?
|
SELECT Fast laps FROM table WHERE Series = world series by nissan AND Races = 6 AND Points = 30
|
Which team has the points category of test driver?
|
SELECT Team FROM table WHERE Points = test driver
|
What is the position with 0 points in Season of 2007–08?
|
SELECT Pos. FROM table WHERE Points = 0 AND Season = 2007–08
|
tell me the Dates administered that sees a Steve Westly* of ––, an Antonio Villaraigosa* of ––, and 47% for jerry brown.
|
SELECT Dates administered FROM table WHERE Steve Westly* = –– AND Antonio Villaraigosa* = –– AND Jerry Brown = 47%
|
tell me the Antonio Villaraigosa* that has a Steve Westly* of ––, and 47% for jerry brown.
|
SELECT Antonio Villaraigosa* FROM table WHERE Steve Westly* = –– AND Jerry Brown = 47%
|
Name the least year for wins more than 0
|
SELECT MIN Year FROM table WHERE Wins > 0
|
Name the least wins for 6 points
|
SELECT MIN Wins FROM table WHERE Points = 6
|
Name the wins for 1963 bultaco
|
SELECT Wins FROM table WHERE Year = 1963 AND Team = bultaco
|
Year larger than 2008, and a Nationality of director of lebanon is what director?
|
SELECT Director FROM table WHERE Year > 2008 AND Nationality of director = lebanon
|
ilm of taukukauppiaat has how many total number of years?
|
SELECT COUNT Year FROM table WHERE Film = taukukauppiaat
|
Award of troisième prix, and a Year smaller than 2010, and a Director of jan komasa is what film?
|
SELECT Film FROM table WHERE Award = troisième prix AND Year < 2010 AND Director = jan komasa
|
Film of um sol alaranjado director is what nationality?
|
SELECT Nationality of director FROM table WHERE Film = um sol alaranjado
|
What is the position for round 5 from alabama state?
|
SELECT Position FROM table WHERE Round = 5 AND College = alabama state
|
what is the pick # when overall is more than 131, position is wide receiver and the round is less than 5?
|
SELECT COUNT Pick # FROM table WHERE Overall > 131 AND Position = wide receiver AND Round < 5
|
what is the highest round for anthony gonzalez?
|
SELECT MAX Round FROM table WHERE Name = anthony gonzalez
|
How many times is brannon condren with and overall more than 131 drafted?
|
SELECT COUNT Round FROM table WHERE Name = brannon condren AND Overall > 131
|
Which rider has the time of +31.426?
|
SELECT Rider FROM table WHERE Time/Retired = +31.426
|
What is the grid for the rider who rides a Suzuki and has the time of +1:01.894?
|
SELECT MAX Grid FROM table WHERE Manufacturer = suzuki AND Time/Retired = +1:01.894
|
What is the score for Australia with a place of 4?
|
SELECT Score FROM table WHERE Country = australia AND Place = 4
|
What is the place of To par of e when Arron Oberholser was the player ?
|
SELECT Place FROM table WHERE To par = e AND Player = arron oberholser
|
What is the score with a place of t6 for the player k.j. choi?
|
SELECT Score FROM table WHERE Place = t6 AND Player = k.j. choi
|
What is the country for the player Tiger Woods?
|
SELECT Country FROM table WHERE Player = tiger woods
|
What is the name of the player with a score of 72-68-70=210?
|
SELECT Player FROM table WHERE Score = 72-68-70=210
|
What is the name of the player with t6 as his place and a country of United states?
|
SELECT Player FROM table WHERE Place = t6 AND Country = united states
|
What is the fineness of the 2008 chinese cuju sport Reverse?
|
SELECT Fineness FROM table WHERE Year = 2008 AND Reverse = chinese cuju sport
|
What's the diameter of the 2006 equestrian Reverse?
|
SELECT Diameter FROM table WHERE Year = 2006 AND Reverse = equestrian
|
What denomination was produced in 2006?
|
SELECT Denomination FROM table WHERE Year = 2006
|
What was the fineness prior to 2007?
|
SELECT Fineness FROM table WHERE Year < 2007
|
What does the ii Series weigh?
|
SELECT Weight FROM table WHERE Series = ii series
|
What loss has 10-16 as the record?
|
SELECT Loss FROM table WHERE Record = 10-16
|
What is the least attendance that has 3-5 as a record?
|
SELECT MIN Attendance FROM table WHERE Record = 3-5
|
What is the average attendance for the date of april 4?
|
SELECT AVG Attendance FROM table WHERE Date = april 4
|
Which opponent has april 2 as the date?
|
SELECT Opponent FROM table WHERE Date = april 2
|
What is the Remark of Airline of Dutch Antilles Express?
|
SELECT Remarks FROM table WHERE Airline = dutch antilles express
|
What Category has a Year that's smaller than 2006, has Result of Nominated, and a Title of Cold Feet?
|
SELECT Category FROM table WHERE Year < 2006 AND Result = nominated AND Title = cold feet
|
What is recorded as the lowest Year that has the Title of Cold Feet?
|
SELECT MIN Year FROM table WHERE Title = cold feet
|
What Category has a Result of Nominated, Year of 2006, and the Title of Pierrepoint?
|
SELECT Category FROM table WHERE Result = nominated AND Year = 2006 AND Title = pierrepoint
|
What Title is listed for the Year of 1999?
|
SELECT Title FROM table WHERE Year = 1999
|
What is the total number of Year for the Title of The Queen, has an Award of British Academy Film Award, and has a Result of Won?
|
SELECT COUNT Year FROM table WHERE Title = the queen AND Award = british academy film award AND Result = won
|
What was the date of the game against Northwestern?
|
SELECT Date FROM table WHERE Opponent = northwestern
|
Who was the opponent when the city was Louisville?
|
SELECT Opponent FROM table WHERE City = louisville
|
What was the score of the game against Minnesota?
|
SELECT Score FROM table WHERE Opponent = minnesota
|
On what date was a friendly competition and a result of 3–0?
|
SELECT Date FROM table WHERE Competition = friendly AND Result = 3–0
|
When was the score 1–0, and the result 4–0?
|
SELECT Date FROM table WHERE Score = 1–0 AND Result = 4–0
|
What was the result at dakar , senegal, on 3 september 2011, and with a Score of 2–0?
|
SELECT Result FROM table WHERE Venue = dakar , senegal AND Date = 3 september 2011 AND Score = 2–0
|
Which time has a Rank larger than 3, and a Name of andrey kapralov?
|
SELECT Time FROM table WHERE Rank > 3 AND Name = andrey kapralov
|
Which Nationality has a Name of igor koleda?
|
SELECT Nationality FROM table WHERE Name = igor koleda
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.