text
stringlengths 142
882
|
---|
table: 1-1132588-3
columns: Rd., Grand Prix, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What is the rd for the canadian grand prix?
A: SELECT Rd. FROM 1-1132588-3 WHERE Grand Prix = 'Canadian Grand Prix' |
table: 1-1132588-3
columns: Rd., Grand Prix, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What is the fastest lap for the european grand prix?
A: SELECT Fastest Lap FROM 1-1132588-3 WHERE Grand Prix = 'European Grand Prix' |
table: 1-1132588-3
columns: Rd., Grand Prix, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What is the pole position for the ferrari at the austrian grand prix?
A: SELECT Pole Position FROM 1-1132588-3 WHERE Constructor = 'Ferrari' AND Grand Prix = 'Austrian Grand Prix' |
table: 1-11326124-3
columns: Edition, Zone, Round, Date, Against, Surface, Opponent, Outcome, Result
Q: What was the result of round 2r?
A: SELECT Outcome FROM 1-11326124-3 WHERE Round = '2R' |
table: 1-11326124-3
columns: Edition, Zone, Round, Date, Against, Surface, Opponent, Outcome, Result
Q: Who did Tina Pisnik verse?
A: SELECT Against FROM 1-11326124-3 WHERE Opponent = 'Tina Pisnik' |
table: 1-11326124-3
columns: Edition, Zone, Round, Date, Against, Surface, Opponent, Outcome, Result
Q: How many rounds were 2r?
A: SELECT COUNT Result FROM 1-11326124-3 WHERE Round = '2R' |
table: 1-11326124-3
columns: Edition, Zone, Round, Date, Against, Surface, Opponent, Outcome, Result
Q: Name the outcome for round 2r
A: SELECT Outcome FROM 1-11326124-3 WHERE Round = '2R' |
table: 1-11354111-3
columns: #, Episode, Air Date, Rating, Share, Rating/Share 18–49, Viewers (m), Timeslot Rank, Night Rank, Overall Rank
Q: what's the night rank with viewers (m) of 6.63
A: SELECT Night Rank FROM 1-11354111-3 WHERE Viewers (m) = '6.63' |
table: 1-11354111-3
columns: #, Episode, Air Date, Rating, Share, Rating/Share 18–49, Viewers (m), Timeslot Rank, Night Rank, Overall Rank
Q: what's the overall rank with viewers (m) of 7.44
A: SELECT Overall Rank FROM 1-11354111-3 WHERE Viewers (m) = '7.44' |
table: 1-11354111-3
columns: #, Episode, Air Date, Rating, Share, Rating/Share 18–49, Viewers (m), Timeslot Rank, Night Rank, Overall Rank
Q: what's the overall rank with rating/share 18–49 of 2.1/5
A: SELECT COUNT Overall Rank FROM 1-11354111-3 WHERE Rating/Share 18–49 = '2.1/5' |
table: 1-11354111-3
columns: #, Episode, Air Date, Rating, Share, Rating/Share 18–49, Viewers (m), Timeslot Rank, Night Rank, Overall Rank
Q: what's the night rank with rating of 6.2
A: SELECT Night Rank FROM 1-11354111-3 WHERE Rating = '6.2' |
table: 1-11354111-3
columns: #, Episode, Air Date, Rating, Share, Rating/Share 18–49, Viewers (m), Timeslot Rank, Night Rank, Overall Rank
Q: what's the viewers (m) with episode of "legacy"
A: SELECT Viewers (m) FROM 1-11354111-3 WHERE Episode = '"Legacy"' |
table: 1-1137142-1
columns: Season, Group A Winner, Group B Winner, Group C Winner, Group D Winner
Q: What is the number of group b winner for francavilla?
A: SELECT COUNT Group B Winner FROM 1-1137142-1 WHERE Group C Winner = 'Francavilla' |
table: 1-1137142-1
columns: Season, Group A Winner, Group B Winner, Group C Winner, Group D Winner
Q: What is the group a winner for modena?
A: SELECT Group A Winner FROM 1-1137142-1 WHERE Group B Winner = 'Modena' |
table: 1-1137142-1
columns: Season, Group A Winner, Group B Winner, Group C Winner, Group D Winner
Q: What is the group a winner for vis pesaro?
A: SELECT Group A Winner FROM 1-1137142-1 WHERE Group C Winner = 'Vis Pesaro' |
table: 1-1137142-1
columns: Season, Group A Winner, Group B Winner, Group C Winner, Group D Winner
Q: What group a winner was for nocerina?
A: SELECT Group A Winner FROM 1-1137142-1 WHERE Group D Winner = 'Nocerina' |
table: 1-1137142-1
columns: Season, Group A Winner, Group B Winner, Group C Winner, Group D Winner
Q: What was the group d winner for modena?
A: SELECT Group D Winner FROM 1-1137142-1 WHERE Group B Winner = 'Modena' |
table: 1-1137695-3
columns: Round, Grand Prix, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: Who had the fastest lap at the brazilian grand prix?
A: SELECT Fastest Lap FROM 1-1137695-3 WHERE Grand Prix = 'Brazilian Grand Prix' |
table: 1-1137695-3
columns: Round, Grand Prix, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: Who was on the pole position at the monaco grand prix?
A: SELECT Pole Position FROM 1-1137695-3 WHERE Grand Prix = 'Monaco Grand Prix' |
table: 1-1137695-3
columns: Round, Grand Prix, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: Who was the winning driver when Michael Schumacher had the pole and the fastest lap?
A: SELECT Winning Driver FROM 1-1137695-3 WHERE Fastest Lap = 'Michael Schumacher' AND Pole Position = 'Michael Schumacher' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: what are all the location where date is 5 april
A: SELECT Location FROM 1-1137704-2 WHERE Date = '5 April' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: what are all the pole position where date is 26 july
A: SELECT Pole Position FROM 1-1137704-2 WHERE Date = '26 July' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos
A: SELECT Winning Constructor FROM 1-1137704-2 WHERE Fastest Lap = 'Riccardo Patrese' AND Location = 'Interlagos' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: what are all the report where winning constructor is williams - renault and grand prix is south african grand prix
A: SELECT Report FROM 1-1137704-2 WHERE Winning Constructor = 'Williams - Renault' AND Grand Prix = 'South African Grand Prix' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: whatthe minimum round where grand prix is german grand prix
A: SELECT MIN Round FROM 1-1137704-2 WHERE Grand Prix = 'German Grand Prix' |
table: 1-1137704-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: what of the total number of date where grand prix is portuguese grand prix
A: SELECT COUNT Date FROM 1-1137704-2 WHERE Grand Prix = 'Portuguese Grand Prix' |
table: 1-1137707-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: What is the number of pole position with a round of 15?
A: SELECT COUNT Pole Position FROM 1-1137707-2 WHERE Round = 15 |
table: 1-1137707-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: What is the date of the circuit gilles villeneuve?
A: SELECT Date FROM 1-1137707-2 WHERE Location = 'Circuit Gilles Villeneuve' |
table: 1-1137707-2
columns: Round, Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Winning Constructor, Report
Q: What is the location of thierry boutsen?
A: SELECT Location FROM 1-1137707-2 WHERE Fastest Lap = 'Thierry Boutsen' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: Who had the pole position at the German Grand Prix?
A: SELECT Pole Position FROM 1-1137718-2 WHERE Grand Prix = 'German Grand Prix' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: Which rd. occurred on 22 October?
A: SELECT MIN Rd. FROM 1-1137718-2 WHERE Date = '22 October' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: Who was the winning driver on 13 August?
A: SELECT Winning Driver FROM 1-1137718-2 WHERE Date = '13 August' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What was the fastest lap at the Mexican Grand Prix?
A: SELECT Fastest Lap FROM 1-1137718-2 WHERE Grand Prix = 'Mexican Grand Prix' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: Which rd. took place at Hockenheimring?
A: SELECT MIN Rd. FROM 1-1137718-2 WHERE Location = 'Hockenheimring' |
table: 1-1137718-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: How many drivers had the fastest lap at Silverstone?
A: SELECT COUNT Fastest Lap FROM 1-1137718-2 WHERE Location = 'Silverstone' |
table: 1-11381701-3
columns: Source, Date, Method, iOS, Android, BlackBerry, Symbian / Series 40, Bada, Windows, Other
Q: What is the percentage of Android use when Windows is 1.15%?
A: SELECT Android FROM 1-11381701-3 WHERE Windows = '1.15%' |
table: 1-11381701-3
columns: Source, Date, Method, iOS, Android, BlackBerry, Symbian / Series 40, Bada, Windows, Other
Q: On which dates was the value of Bada 0.05%?
A: SELECT Date FROM 1-11381701-3 WHERE Bada = '0.05%' |
table: 1-11381701-3
columns: Source, Date, Method, iOS, Android, BlackBerry, Symbian / Series 40, Bada, Windows, Other
Q: When the value of "other" is 0.7%, what is the percentage for Windows?
A: SELECT Windows FROM 1-11381701-3 WHERE Other = '0.7%' |
table: 1-11381701-3
columns: Source, Date, Method, iOS, Android, BlackBerry, Symbian / Series 40, Bada, Windows, Other
Q: When Symbian/Series 40 is 0.40%, what is the percentage of "other"?
A: SELECT Other FROM 1-11381701-3 WHERE Symbian / Series 40 = '0.40%' |
table: 1-11381701-3
columns: Source, Date, Method, iOS, Android, BlackBerry, Symbian / Series 40, Bada, Windows, Other
Q: Which source shows Blackberry at 2.9%?
A: SELECT Source FROM 1-11381701-3 WHERE BlackBerry = '2.9%' |
table: 1-11390711-4
columns: English Name, Japanese orthography, Pronouciation, abbreviation, Provider(IAI), Foundation
Q: Which colleges have the english abbreviation MTC?
A: SELECT English Name FROM 1-11390711-4 WHERE abbreviation = 'MTC' |
table: 1-11390711-4
columns: English Name, Japanese orthography, Pronouciation, abbreviation, Provider(IAI), Foundation
Q: What is the Japanese orthography for the English name National Farmers Academy?
A: SELECT Japanese orthography FROM 1-11390711-4 WHERE English Name = 'National Farmers Academy' |
table: 1-11390711-4
columns: English Name, Japanese orthography, Pronouciation, abbreviation, Provider(IAI), Foundation
Q: What is the abbreviation for the college pronounced "kōkū daigakkō"?
A: SELECT abbreviation FROM 1-11390711-4 WHERE Pronouciation = 'Kōkū Daigakkō' |
table: 1-11390711-4
columns: English Name, Japanese orthography, Pronouciation, abbreviation, Provider(IAI), Foundation
Q: How many providers were founded in 1964?
A: SELECT COUNT Provider(IAI) FROM 1-11390711-4 WHERE Foundation = 1964 |
table: 1-11390711-4
columns: English Name, Japanese orthography, Pronouciation, abbreviation, Provider(IAI), Foundation
Q: What is the Japanese orthography for National Fisheries University?
A: SELECT Japanese orthography FROM 1-11390711-4 WHERE English Name = 'National Fisheries University' |
table: 1-11391954-3
columns: Country, Total, Marathon (mens), Marathon (womens), Half Marathon (mens), Half Marathon (womens)
Q: What is the minimum number for the half marathon (womens)?
A: SELECT MIN Half Marathon (womens) FROM 1-11391954-3 |
table: 1-11391954-3
columns: Country, Total, Marathon (mens), Marathon (womens), Half Marathon (mens), Half Marathon (womens)
Q: Whatis the total number of half marathon (mens) that represented kazakhstan?
A: SELECT COUNT Half Marathon (mens) FROM 1-11391954-3 WHERE Country = 'Kazakhstan' |
table: 1-11391954-3
columns: Country, Total, Marathon (mens), Marathon (womens), Half Marathon (mens), Half Marathon (womens)
Q: What is amount of countries where half marathon (women) is larger than 1.0?
A: SELECT COUNT Country FROM 1-11391954-3 WHERE Half Marathon (womens) > 1.0 |
table: 1-11391954-3
columns: Country, Total, Marathon (mens), Marathon (womens), Half Marathon (mens), Half Marathon (womens)
Q: How many times is Moldova the winner of half marathon (womens)?
A: SELECT COUNT Half Marathon (womens) FROM 1-11391954-3 WHERE Country = 'Moldova' |
table: 1-11391954-3
columns: Country, Total, Marathon (mens), Marathon (womens), Half Marathon (mens), Half Marathon (womens)
Q: Which country has half marathon (womens) that is larger than 1.0?
A: SELECT Country FROM 1-11391954-3 WHERE Half Marathon (womens) > 1.0 |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What is the make of the car that won the brazilian grand prix?
A: SELECT Constructor FROM 1-1139087-2 WHERE Grand Prix = 'Brazilian Grand Prix' |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: Who drove the fastest lap for round 8?
A: SELECT Fastest Lap FROM 1-1139087-2 WHERE Rd. = 8 |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What day was the grand prix in jerez?
A: SELECT Date FROM 1-1139087-2 WHERE Location = 'Jerez' |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What event was in detroit?
A: SELECT Grand Prix FROM 1-1139087-2 WHERE Location = 'Detroit' |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: How many events did nigel mansell drive the fastest and a mclaren - honda win?
A: SELECT COUNT Grand Prix FROM 1-1139087-2 WHERE Constructor = 'McLaren - Honda' AND Fastest Lap = 'Nigel Mansell' |
table: 1-1139087-2
columns: Rd., Grand Prix, Date, Location, Pole Position, Fastest Lap, Winning Driver, Constructor, Report
Q: What day is the french grand prix
A: SELECT Date FROM 1-1139087-2 WHERE Grand Prix = 'French Grand Prix' |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: who is the winners where season result is 7th
A: SELECT Winners FROM 1-1139835-3 WHERE Season Result = '7th' |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: who is the winners where season result is 9th
A: SELECT Winners FROM 1-1139835-3 WHERE Season Result = '9th' |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: what's the grand finalist where winners is collingwood
A: SELECT Grand Finalist FROM 1-1139835-3 WHERE Winners = 'Collingwood' |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: who is the season result where margin is 51
A: SELECT Season Result FROM 1-1139835-3 WHERE Margin = 51 |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: who is the grand finalist where scores is 11.11 (77) – 10.8 (68)
A: SELECT Grand Finalist FROM 1-1139835-3 WHERE Scores = '11.11 (77) – 10.8 (68)' |
table: 1-1139835-3
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: who is the grand finalist where scores is 8.9 (57) – 7.12 (54)
A: SELECT Grand Finalist FROM 1-1139835-3 WHERE Scores = '8.9 (57) – 7.12 (54)' |
table: 1-1139835-1
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: what was the crowd when the scores are 10.12 (72) – 8.11 (59)?
A: SELECT MAX Crowd FROM 1-1139835-1 WHERE Scores = '10.12 (72) – 8.11 (59)' |
table: 1-1139835-1
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: what is the venue where the scores are 15.13 (103) – 8.4 (52)?
A: SELECT Venue FROM 1-1139835-1 WHERE Scores = '15.13 (103) – 8.4 (52)' |
table: 1-1139835-1
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: what is the venue where the margin is 4?
A: SELECT Venue FROM 1-1139835-1 WHERE Margin = 4 |
table: 1-1139835-1
columns: Year, Winners, Grand Finalist, Scores, Venue, Crowd, Margin, Season Result
Q: what is the crowd when the grand finalist was south melbourne?
A: SELECT Crowd FROM 1-1139835-1 WHERE Grand Finalist = 'South Melbourne' |
table: 1-1140067-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What was the date for monaco grand prix?
A: SELECT Date FROM 1-1140067-2 WHERE Race = 'Monaco Grand Prix' |
table: 1-1140067-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What was the date for the pole position of alain prost?
A: SELECT Date FROM 1-1140067-2 WHERE Pole Position = 'Alain Prost' |
table: 1-1140067-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What is the race winer of the portuguese grand prix?
A: SELECT Race Winner FROM 1-1140067-2 WHERE Race = 'Portuguese Grand Prix' |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the race winner with date being 12 june
A: SELECT Race Winner FROM 1-1140074-2 WHERE Date = '12 June' |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the constructor with location being hockenheimring
A: SELECT Constructor FROM 1-1140074-2 WHERE Location = 'Hockenheimring' |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the race winner with location being jacarepaguá
A: SELECT Race Winner FROM 1-1140074-2 WHERE Location = 'Jacarepaguá' |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the total number of race winner with rnd being 10
A: SELECT COUNT Race Winner FROM 1-1140074-2 WHERE Rnd = 10 |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the pole position with location being hockenheimring
A: SELECT Pole Position FROM 1-1140074-2 WHERE Location = 'Hockenheimring' |
table: 1-1140074-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the report with rnd being 4
A: SELECT Report FROM 1-1140074-2 WHERE Rnd = 4 |
table: 1-1139835-9
columns: Season, Premier, Runner Up, Score, Venue, Attendance, Premiership
Q: What venue has an attendance of 30824 at Essendon in 1984?
A: SELECT Venue FROM 1-1139835-9 WHERE Premier = 'Essendon' AND Attendance = 30824 |
table: 1-1139835-9
columns: Season, Premier, Runner Up, Score, Venue, Attendance, Premiership
Q: What other venue was a runner up to Hawthorn?
A: SELECT Venue FROM 1-1139835-9 WHERE Runner Up = 'Hawthorn' |
table: 1-1139835-9
columns: Season, Premier, Runner Up, Score, Venue, Attendance, Premiership
Q: What is the other premiership when the runner up wis Geelong?
A: SELECT Premiership FROM 1-1139835-9 WHERE Runner Up = 'Geelong' |
table: 1-1139835-9
columns: Season, Premier, Runner Up, Score, Venue, Attendance, Premiership
Q: Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)?
A: SELECT Runner Up FROM 1-1139835-9 WHERE Score = '9.12 (66) – 5.6 (36)' |
table: 1-1140073-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: Who had the fastest lap in the race where Patrick Tambay was on the pole?
A: SELECT Fastest Lap FROM 1-1140073-2 WHERE Pole Position = 'Patrick Tambay' |
table: 1-1140073-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What race had Nelson Piquet on the pole and was in Nürburgring?
A: SELECT Race FROM 1-1140073-2 WHERE Pole Position = 'Nelson Piquet' AND Location = 'Nürburgring' |
table: 1-1140073-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: How many rounds did Patrick Tambay record the fastest lap?
A: SELECT COUNT Rnd FROM 1-1140073-2 WHERE Fastest Lap = 'Patrick Tambay' |
table: 1-1140073-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: Which race is located in kyalami?
A: SELECT Race FROM 1-1140073-2 WHERE Location = 'Kyalami' |
table: 1-1140077-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What is the fastest lap with pole position of gilles villeneuve?
A: SELECT Fastest Lap FROM 1-1140077-2 WHERE Pole Position = 'Gilles Villeneuve' |
table: 1-1140077-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: Who did the fastest lap in the dutch grand prix?
A: SELECT Fastest Lap FROM 1-1140077-2 WHERE Race = 'Dutch Grand Prix' |
table: 1-1140077-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: Who did the fastest lap with the race winner john watson?
A: SELECT Fastest Lap FROM 1-1140077-2 WHERE Race Winner = 'John Watson' |
table: 1-1140076-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What is the constructor for 9 May?
A: SELECT Constructor FROM 1-1140076-2 WHERE Date = '9 May' |
table: 1-1140076-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari?
A: SELECT Pole Position FROM 1-1140076-2 WHERE Fastest Lap = 'Nelson Piquet' AND Constructor = 'Ferrari' |
table: 1-1140076-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: What is the report listed for the race in San Marino Grand Prix?
A: SELECT Report FROM 1-1140076-2 WHERE Race = 'San Marino Grand Prix' |
table: 1-1140076-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: Who was the constructor in the location Monza?
A: SELECT Constructor FROM 1-1140076-2 WHERE Location = 'Monza' |
table: 1-1140076-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: How many races had the pole position Alain Prost and the race winner Keke Rosberg?
A: SELECT COUNT Race FROM 1-1140076-2 WHERE Pole Position = 'Alain Prost' AND Race Winner = 'Keke Rosberg' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the report with location österreichring
A: SELECT Report FROM 1-1140080-2 WHERE Location = 'Österreichring' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the report with race argentine grand prix
A: SELECT Report FROM 1-1140080-2 WHERE Race = 'Argentine Grand Prix' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the minimum rnd with race italian grand prix
A: SELECT MIN Rnd FROM 1-1140080-2 WHERE Race = 'Italian Grand Prix' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the total number of report with date 29 april
A: SELECT COUNT Report FROM 1-1140080-2 WHERE Date = '29 April' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the race winner with constructor renault
A: SELECT Race Winner FROM 1-1140080-2 WHERE Constructor = 'Renault' |
table: 1-1140080-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: what's the date with rnd 1
A: SELECT Date FROM 1-1140080-2 WHERE Rnd = 1 |
table: 1-1140083-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: How many days is the Monaco Grand Prix?
A: SELECT COUNT Date FROM 1-1140083-2 WHERE Race = 'Monaco Grand Prix' |
table: 1-1140083-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: How many rounds were won with James Hunt as pole position and John Watson as fastest lap?
A: SELECT COUNT Rnd FROM 1-1140083-2 WHERE Pole Position = 'James Hunt' AND Fastest Lap = 'John Watson' |
table: 1-1140083-2
columns: Rnd, Race, Date, Location, Pole Position, Fastest Lap, Race Winner, Constructor, Report
Q: The Dijon-prenois had how many fastest laps?
A: SELECT COUNT Fastest Lap FROM 1-1140083-2 WHERE Location = 'Dijon-Prenois' |