question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the group a winner for modena? | CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_b_winner VARCHAR) | SELECT group_a_winner FROM table_1137142_1 WHERE group_b_winner = "Modena" | ### Context: CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_b_winner VARCHAR) ### Question: What is the group a winner for modena? ### Answer: SELECT group_a_winner FROM table_1137142_1 WHERE group_b_winner = "Modena" |
What is the group a winner for vis pesaro? | CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_c_winner VARCHAR) | SELECT group_a_winner FROM table_1137142_1 WHERE group_c_winner = "Vis Pesaro" | ### Context: CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_c_winner VARCHAR) ### Question: What is the group a winner for vis pesaro? ### Answer: SELECT group_a_winner FROM table_1137142_1 WHERE group_c_winner = "Vis Pesaro" |
What group a winner was for nocerina? | CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_d_winner VARCHAR) | SELECT group_a_winner FROM table_1137142_1 WHERE group_d_winner = "Nocerina" | ### Context: CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_d_winner VARCHAR) ### Question: What group a winner was for nocerina? ### Answer: SELECT group_a_winner FROM table_1137142_1 WHERE group_d_winner = "Nocerina" |
What was the group d winner for modena? | CREATE TABLE table_1137142_1 (group_d_winner VARCHAR, group_b_winner VARCHAR) | SELECT group_d_winner FROM table_1137142_1 WHERE group_b_winner = "Modena" | ### Context: CREATE TABLE table_1137142_1 (group_d_winner VARCHAR, group_b_winner VARCHAR) ### Question: What was the group d winner for modena? ### Answer: SELECT group_d_winner FROM table_1137142_1 WHERE group_b_winner = "Modena" |
Who had the fastest lap at the brazilian grand prix? | CREATE TABLE table_1137695_3 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1137695_3 WHERE grand_prix = "Brazilian grand_prix" | ### Context: CREATE TABLE table_1137695_3 (fastest_lap VARCHAR, grand_prix VARCHAR) ### Question: Who had the fastest lap at the brazilian grand prix? ### Answer: SELECT fastest_lap FROM table_1137695_3 WHERE grand_prix = "Brazilian grand_prix" |
Who was on the pole position at the monaco grand prix? | CREATE TABLE table_1137695_3 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1137695_3 WHERE grand_prix = "Monaco grand_prix" | ### Context: CREATE TABLE table_1137695_3 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: Who was on the pole position at the monaco grand prix? ### Answer: SELECT pole_position FROM table_1137695_3 WHERE grand_prix = "Monaco grand_prix" |
Who was the winning driver when Michael Schumacher had the pole and the fastest lap? | CREATE TABLE table_1137695_3 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) | SELECT winning_driver FROM table_1137695_3 WHERE fastest_lap = "Michael Schumacher" AND pole_position = "Michael Schumacher" | ### Context: CREATE TABLE table_1137695_3 (winning_driver VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ### Question: Who was the winning driver when Michael Schumacher had the pole and the fastest lap? ### Answer: SELECT winning_driver FROM table_1137695_3 WHERE fastest_lap = "Michael Schumacher" AND pole_posit... |
what are all the location where date is 5 april | CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR) | SELECT location FROM table_1137704_2 WHERE date = "5 April" | ### Context: CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR) ### Question: what are all the location where date is 5 april ### Answer: SELECT location FROM table_1137704_2 WHERE date = "5 April" |
what are all the pole position where date is 26 july | CREATE TABLE table_1137704_2 (pole_position VARCHAR, date VARCHAR) | SELECT pole_position FROM table_1137704_2 WHERE date = "26 July" | ### Context: CREATE TABLE table_1137704_2 (pole_position VARCHAR, date VARCHAR) ### Question: what are all the pole position where date is 26 july ### Answer: SELECT pole_position FROM table_1137704_2 WHERE date = "26 July" |
who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos | CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR) | SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = "Riccardo Patrese" AND location = "Interlagos" | ### Context: CREATE TABLE table_1137704_2 (winning_constructor VARCHAR, fastest_lap VARCHAR, location VARCHAR) ### Question: who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos ### Answer: SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = "Riccardo Pat... |
what are all the report where winning constructor is williams - renault and grand prix is south african grand prix | CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR) | SELECT report FROM table_1137704_2 WHERE winning_constructor = "Williams - Renault" AND grand_prix = "South African grand_prix" | ### Context: CREATE TABLE table_1137704_2 (report VARCHAR, winning_constructor VARCHAR, grand_prix VARCHAR) ### Question: what are all the report where winning constructor is williams - renault and grand prix is south african grand prix ### Answer: SELECT report FROM table_1137704_2 WHERE winning_constructor = "William... |
whatthe minimum round where grand prix is german grand prix | CREATE TABLE table_1137704_2 (round INTEGER, grand_prix VARCHAR) | SELECT MIN(round) FROM table_1137704_2 WHERE grand_prix = "German grand_prix" | ### Context: CREATE TABLE table_1137704_2 (round INTEGER, grand_prix VARCHAR) ### Question: whatthe minimum round where grand prix is german grand prix ### Answer: SELECT MIN(round) FROM table_1137704_2 WHERE grand_prix = "German grand_prix" |
what of the total number of date where grand prix is portuguese grand prix | CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR) | SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = "Portuguese grand_prix" | ### Context: CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR) ### Question: what of the total number of date where grand prix is portuguese grand prix ### Answer: SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = "Portuguese grand_prix" |
What is the number of pole position with a round of 15? | CREATE TABLE table_1137707_2 (pole_position VARCHAR, round VARCHAR) | SELECT COUNT(pole_position) FROM table_1137707_2 WHERE round = 15 | ### Context: CREATE TABLE table_1137707_2 (pole_position VARCHAR, round VARCHAR) ### Question: What is the number of pole position with a round of 15? ### Answer: SELECT COUNT(pole_position) FROM table_1137707_2 WHERE round = 15 |
What is the date of the circuit gilles villeneuve? | CREATE TABLE table_1137707_2 (date VARCHAR, location VARCHAR) | SELECT date FROM table_1137707_2 WHERE location = "Circuit Gilles Villeneuve" | ### Context: CREATE TABLE table_1137707_2 (date VARCHAR, location VARCHAR) ### Question: What is the date of the circuit gilles villeneuve? ### Answer: SELECT date FROM table_1137707_2 WHERE location = "Circuit Gilles Villeneuve" |
What is the location of thierry boutsen? | CREATE TABLE table_1137707_2 (location VARCHAR, fastest_lap VARCHAR) | SELECT location FROM table_1137707_2 WHERE fastest_lap = "Thierry Boutsen" | ### Context: CREATE TABLE table_1137707_2 (location VARCHAR, fastest_lap VARCHAR) ### Question: What is the location of thierry boutsen? ### Answer: SELECT location FROM table_1137707_2 WHERE fastest_lap = "Thierry Boutsen" |
Who had the pole position at the German Grand Prix? | CREATE TABLE table_1137718_2 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1137718_2 WHERE grand_prix = "German grand_prix" | ### Context: CREATE TABLE table_1137718_2 (pole_position VARCHAR, grand_prix VARCHAR) ### Question: Who had the pole position at the German Grand Prix? ### Answer: SELECT pole_position FROM table_1137718_2 WHERE grand_prix = "German grand_prix" |
Which rd. occurred on 22 October? | CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR) | SELECT MIN(rd) FROM table_1137718_2 WHERE date = "22 October" | ### Context: CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR) ### Question: Which rd. occurred on 22 October? ### Answer: SELECT MIN(rd) FROM table_1137718_2 WHERE date = "22 October" |
Who was the winning driver on 13 August? | CREATE TABLE table_1137718_2 (winning_driver VARCHAR, date VARCHAR) | SELECT winning_driver FROM table_1137718_2 WHERE date = "13 August" | ### Context: CREATE TABLE table_1137718_2 (winning_driver VARCHAR, date VARCHAR) ### Question: Who was the winning driver on 13 August? ### Answer: SELECT winning_driver FROM table_1137718_2 WHERE date = "13 August" |
What was the fastest lap at the Mexican Grand Prix? | CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1137718_2 WHERE grand_prix = "Mexican grand_prix" | ### Context: CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, grand_prix VARCHAR) ### Question: What was the fastest lap at the Mexican Grand Prix? ### Answer: SELECT fastest_lap FROM table_1137718_2 WHERE grand_prix = "Mexican grand_prix" |
Which rd. took place at Hockenheimring? | CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR) | SELECT MIN(rd) FROM table_1137718_2 WHERE location = "Hockenheimring" | ### Context: CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR) ### Question: Which rd. took place at Hockenheimring? ### Answer: SELECT MIN(rd) FROM table_1137718_2 WHERE location = "Hockenheimring" |
How many drivers had the fastest lap at Silverstone? | CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = "Silverstone" | ### Context: CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR) ### Question: How many drivers had the fastest lap at Silverstone? ### Answer: SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = "Silverstone" |
What is the percentage of Android use when Windows is 1.15%? | CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR) | SELECT android FROM table_11381701_3 WHERE windows = "1.15%" | ### Context: CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR) ### Question: What is the percentage of Android use when Windows is 1.15%? ### Answer: SELECT android FROM table_11381701_3 WHERE windows = "1.15%" |
On which dates was the value of Bada 0.05%? | CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR) | SELECT date FROM table_11381701_3 WHERE bada = "0.05%" | ### Context: CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR) ### Question: On which dates was the value of Bada 0.05%? ### Answer: SELECT date FROM table_11381701_3 WHERE bada = "0.05%" |
When the value of "other" is 0.7%, what is the percentage for Windows? | CREATE TABLE table_11381701_3 (windows VARCHAR, other VARCHAR) | SELECT windows FROM table_11381701_3 WHERE other = "0.7%" | ### Context: CREATE TABLE table_11381701_3 (windows VARCHAR, other VARCHAR) ### Question: When the value of "other" is 0.7%, what is the percentage for Windows? ### Answer: SELECT windows FROM table_11381701_3 WHERE other = "0.7%" |
When Symbian/Series 40 is 0.40%, what is the percentage of "other"? | CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR) | SELECT other FROM table_11381701_3 WHERE symbian___series_40 = "0.40%" | ### Context: CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR) ### Question: When Symbian/Series 40 is 0.40%, what is the percentage of "other"? ### Answer: SELECT other FROM table_11381701_3 WHERE symbian___series_40 = "0.40%" |
Which source shows Blackberry at 2.9%? | CREATE TABLE table_11381701_3 (source VARCHAR, blackberry VARCHAR) | SELECT source FROM table_11381701_3 WHERE blackberry = "2.9%" | ### Context: CREATE TABLE table_11381701_3 (source VARCHAR, blackberry VARCHAR) ### Question: Which source shows Blackberry at 2.9%? ### Answer: SELECT source FROM table_11381701_3 WHERE blackberry = "2.9%" |
Which colleges have the english abbreviation MTC? | CREATE TABLE table_11390711_4 (english_name VARCHAR, abbreviation VARCHAR) | SELECT english_name FROM table_11390711_4 WHERE abbreviation = "MTC" | ### Context: CREATE TABLE table_11390711_4 (english_name VARCHAR, abbreviation VARCHAR) ### Question: Which colleges have the english abbreviation MTC? ### Answer: SELECT english_name FROM table_11390711_4 WHERE abbreviation = "MTC" |
What is the Japanese orthography for the English name National Farmers Academy? | CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) | SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Farmers Academy" | ### Context: CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) ### Question: What is the Japanese orthography for the English name National Farmers Academy? ### Answer: SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Farmers Academy" |
What is the abbreviation for the college pronounced "kōkū daigakkō"? | CREATE TABLE table_11390711_4 (abbreviation VARCHAR, pronouciation VARCHAR) | SELECT abbreviation FROM table_11390711_4 WHERE pronouciation = "Kōkū Daigakkō" | ### Context: CREATE TABLE table_11390711_4 (abbreviation VARCHAR, pronouciation VARCHAR) ### Question: What is the abbreviation for the college pronounced "kōkū daigakkō"? ### Answer: SELECT abbreviation FROM table_11390711_4 WHERE pronouciation = "Kōkū Daigakkō" |
How many providers were founded in 1964? | CREATE TABLE table_11390711_4 (provider_iai_ VARCHAR, foundation VARCHAR) | SELECT COUNT(provider_iai_) FROM table_11390711_4 WHERE foundation = 1964 | ### Context: CREATE TABLE table_11390711_4 (provider_iai_ VARCHAR, foundation VARCHAR) ### Question: How many providers were founded in 1964? ### Answer: SELECT COUNT(provider_iai_) FROM table_11390711_4 WHERE foundation = 1964 |
What is the Japanese orthography for National Fisheries University? | CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) | SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Fisheries University" | ### Context: CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) ### Question: What is the Japanese orthography for National Fisheries University? ### Answer: SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Fisheries University" |
What is the minimum number for the half marathon (womens)? | CREATE TABLE table_11391954_3 (Half INTEGER) | SELECT MIN(Half) AS marathon__womens_ FROM table_11391954_3 | ### Context: CREATE TABLE table_11391954_3 (Half INTEGER) ### Question: What is the minimum number for the half marathon (womens)? ### Answer: SELECT MIN(Half) AS marathon__womens_ FROM table_11391954_3 |
Whatis the total number of half marathon (mens) that represented kazakhstan? | CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) | SELECT COUNT(Half) AS marathon__mens_ FROM table_11391954_3 WHERE country = "Kazakhstan" | ### Context: CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) ### Question: Whatis the total number of half marathon (mens) that represented kazakhstan? ### Answer: SELECT COUNT(Half) AS marathon__mens_ FROM table_11391954_3 WHERE country = "Kazakhstan" |
How many times is Moldova the winner of half marathon (womens)? | CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) | SELECT COUNT(Half) AS marathon__womens_ FROM table_11391954_3 WHERE country = "Moldova" | ### Context: CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) ### Question: How many times is Moldova the winner of half marathon (womens)? ### Answer: SELECT COUNT(Half) AS marathon__womens_ FROM table_11391954_3 WHERE country = "Moldova" |
What is the make of the car that won the brazilian grand prix? | CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR) | SELECT constructor FROM table_1139087_2 WHERE grand_prix = "Brazilian grand_prix" | ### Context: CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR) ### Question: What is the make of the car that won the brazilian grand prix? ### Answer: SELECT constructor FROM table_1139087_2 WHERE grand_prix = "Brazilian grand_prix" |
Who drove the fastest lap for round 8? | CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR) | SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8 | ### Context: CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR) ### Question: Who drove the fastest lap for round 8? ### Answer: SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8 |
What day was the grand prix in jerez? | CREATE TABLE table_1139087_2 (date VARCHAR, location VARCHAR) | SELECT date FROM table_1139087_2 WHERE location = "Jerez" | ### Context: CREATE TABLE table_1139087_2 (date VARCHAR, location VARCHAR) ### Question: What day was the grand prix in jerez? ### Answer: SELECT date FROM table_1139087_2 WHERE location = "Jerez" |
What event was in detroit? | CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR) | SELECT grand_prix FROM table_1139087_2 WHERE location = "Detroit" | ### Context: CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR) ### Question: What event was in detroit? ### Answer: SELECT grand_prix FROM table_1139087_2 WHERE location = "Detroit" |
How many events did nigel mansell drive the fastest and a mclaren - honda win? | CREATE TABLE table_1139087_2 (grand_prix VARCHAR, constructor VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(grand_prix) FROM table_1139087_2 WHERE constructor = "McLaren - Honda" AND fastest_lap = "Nigel Mansell" | ### Context: CREATE TABLE table_1139087_2 (grand_prix VARCHAR, constructor VARCHAR, fastest_lap VARCHAR) ### Question: How many events did nigel mansell drive the fastest and a mclaren - honda win? ### Answer: SELECT COUNT(grand_prix) FROM table_1139087_2 WHERE constructor = "McLaren - Honda" AND fastest_lap = "Nigel M... |
What day is the french grand prix | CREATE TABLE table_1139087_2 (date VARCHAR, grand_prix VARCHAR) | SELECT date FROM table_1139087_2 WHERE grand_prix = "French grand_prix" | ### Context: CREATE TABLE table_1139087_2 (date VARCHAR, grand_prix VARCHAR) ### Question: What day is the french grand prix ### Answer: SELECT date FROM table_1139087_2 WHERE grand_prix = "French grand_prix" |
who is the winners where season result is 7th | CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) | SELECT winners FROM table_1139835_3 WHERE season_result = "7th" | ### Context: CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) ### Question: who is the winners where season result is 7th ### Answer: SELECT winners FROM table_1139835_3 WHERE season_result = "7th" |
who is the winners where season result is 9th | CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) | SELECT winners FROM table_1139835_3 WHERE season_result = "9th" | ### Context: CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) ### Question: who is the winners where season result is 9th ### Answer: SELECT winners FROM table_1139835_3 WHERE season_result = "9th" |
what's the grand finalist where winners is collingwood | CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR) | SELECT grand_finalist FROM table_1139835_3 WHERE winners = "Collingwood" | ### Context: CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR) ### Question: what's the grand finalist where winners is collingwood ### Answer: SELECT grand_finalist FROM table_1139835_3 WHERE winners = "Collingwood" |
who is the season result where margin is 51 | CREATE TABLE table_1139835_3 (season_result VARCHAR, margin VARCHAR) | SELECT season_result FROM table_1139835_3 WHERE margin = 51 | ### Context: CREATE TABLE table_1139835_3 (season_result VARCHAR, margin VARCHAR) ### Question: who is the season result where margin is 51 ### Answer: SELECT season_result FROM table_1139835_3 WHERE margin = 51 |
who is the grand finalist where scores is 11.11 (77) – 10.8 (68) | CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR) | SELECT grand_finalist FROM table_1139835_3 WHERE scores = "11.11 (77) – 10.8 (68)" | ### Context: CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR) ### Question: who is the grand finalist where scores is 11.11 (77) – 10.8 (68) ### Answer: SELECT grand_finalist FROM table_1139835_3 WHERE scores = "11.11 (77) – 10.8 (68)" |
who is the grand finalist where scores is 8.9 (57) – 7.12 (54) | CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR) | SELECT grand_finalist FROM table_1139835_3 WHERE scores = "8.9 (57) – 7.12 (54)" | ### Context: CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, scores VARCHAR) ### Question: who is the grand finalist where scores is 8.9 (57) – 7.12 (54) ### Answer: SELECT grand_finalist FROM table_1139835_3 WHERE scores = "8.9 (57) – 7.12 (54)" |
what was the crowd when the scores are 10.12 (72) – 8.11 (59)? | CREATE TABLE table_1139835_1 (crowd INTEGER, scores VARCHAR) | SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = "10.12 (72) – 8.11 (59)" | ### Context: CREATE TABLE table_1139835_1 (crowd INTEGER, scores VARCHAR) ### Question: what was the crowd when the scores are 10.12 (72) – 8.11 (59)? ### Answer: SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = "10.12 (72) – 8.11 (59)" |
what is the venue where the scores are 15.13 (103) – 8.4 (52)? | CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR) | SELECT venue FROM table_1139835_1 WHERE scores = "15.13 (103) – 8.4 (52)" | ### Context: CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR) ### Question: what is the venue where the scores are 15.13 (103) – 8.4 (52)? ### Answer: SELECT venue FROM table_1139835_1 WHERE scores = "15.13 (103) – 8.4 (52)" |
what is the venue where the margin is 4? | CREATE TABLE table_1139835_1 (venue VARCHAR, margin VARCHAR) | SELECT venue FROM table_1139835_1 WHERE margin = 4 | ### Context: CREATE TABLE table_1139835_1 (venue VARCHAR, margin VARCHAR) ### Question: what is the venue where the margin is 4? ### Answer: SELECT venue FROM table_1139835_1 WHERE margin = 4 |
what is the crowd when the grand finalist was south melbourne? | CREATE TABLE table_1139835_1 (crowd VARCHAR, grand_finalist VARCHAR) | SELECT crowd FROM table_1139835_1 WHERE grand_finalist = "South Melbourne" | ### Context: CREATE TABLE table_1139835_1 (crowd VARCHAR, grand_finalist VARCHAR) ### Question: what is the crowd when the grand finalist was south melbourne? ### Answer: SELECT crowd FROM table_1139835_1 WHERE grand_finalist = "South Melbourne" |
What was the date for monaco grand prix? | CREATE TABLE table_1140067_2 (date VARCHAR, race VARCHAR) | SELECT date FROM table_1140067_2 WHERE race = "Monaco Grand Prix" | ### Context: CREATE TABLE table_1140067_2 (date VARCHAR, race VARCHAR) ### Question: What was the date for monaco grand prix? ### Answer: SELECT date FROM table_1140067_2 WHERE race = "Monaco Grand Prix" |
What was the date for the pole position of alain prost? | CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR) | SELECT date FROM table_1140067_2 WHERE pole_position = "Alain Prost" | ### Context: CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR) ### Question: What was the date for the pole position of alain prost? ### Answer: SELECT date FROM table_1140067_2 WHERE pole_position = "Alain Prost" |
What is the race winer of the portuguese grand prix? | CREATE TABLE table_1140067_2 (race VARCHAR) | SELECT race AS Winner FROM table_1140067_2 WHERE race = "Portuguese Grand Prix" | ### Context: CREATE TABLE table_1140067_2 (race VARCHAR) ### Question: What is the race winer of the portuguese grand prix? ### Answer: SELECT race AS Winner FROM table_1140067_2 WHERE race = "Portuguese Grand Prix" |
what's the race winner with date being 12 june | CREATE TABLE table_1140074_2 (race VARCHAR, date VARCHAR) | SELECT race AS Winner FROM table_1140074_2 WHERE date = "12 June" | ### Context: CREATE TABLE table_1140074_2 (race VARCHAR, date VARCHAR) ### Question: what's the race winner with date being 12 june ### Answer: SELECT race AS Winner FROM table_1140074_2 WHERE date = "12 June" |
what's the constructor with location being hockenheimring | CREATE TABLE table_1140074_2 (constructor VARCHAR, location VARCHAR) | SELECT constructor FROM table_1140074_2 WHERE location = "Hockenheimring" | ### Context: CREATE TABLE table_1140074_2 (constructor VARCHAR, location VARCHAR) ### Question: what's the constructor with location being hockenheimring ### Answer: SELECT constructor FROM table_1140074_2 WHERE location = "Hockenheimring" |
what's the race winner with location being jacarepaguá | CREATE TABLE table_1140074_2 (race VARCHAR, location VARCHAR) | SELECT race AS Winner FROM table_1140074_2 WHERE location = "Jacarepaguá" | ### Context: CREATE TABLE table_1140074_2 (race VARCHAR, location VARCHAR) ### Question: what's the race winner with location being jacarepaguá ### Answer: SELECT race AS Winner FROM table_1140074_2 WHERE location = "Jacarepaguá" |
what's the total number of race winner with rnd being 10 | CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR) | SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10 | ### Context: CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR) ### Question: what's the total number of race winner with rnd being 10 ### Answer: SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10 |
what's the pole position with location being hockenheimring | CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR) | SELECT pole_position FROM table_1140074_2 WHERE location = "Hockenheimring" | ### Context: CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR) ### Question: what's the pole position with location being hockenheimring ### Answer: SELECT pole_position FROM table_1140074_2 WHERE location = "Hockenheimring" |
what's the report with rnd being 4 | CREATE TABLE table_1140074_2 (report VARCHAR, rnd VARCHAR) | SELECT report FROM table_1140074_2 WHERE rnd = 4 | ### Context: CREATE TABLE table_1140074_2 (report VARCHAR, rnd VARCHAR) ### Question: what's the report with rnd being 4 ### Answer: SELECT report FROM table_1140074_2 WHERE rnd = 4 |
What venue has an attendance of 30824 at Essendon in 1984? | CREATE TABLE table_1139835_9 (venue VARCHAR, premier VARCHAR, attendance VARCHAR) | SELECT venue FROM table_1139835_9 WHERE premier = "Essendon" AND attendance = 30824 | ### Context: CREATE TABLE table_1139835_9 (venue VARCHAR, premier VARCHAR, attendance VARCHAR) ### Question: What venue has an attendance of 30824 at Essendon in 1984? ### Answer: SELECT venue FROM table_1139835_9 WHERE premier = "Essendon" AND attendance = 30824 |
What other venue was a runner up to Hawthorn? | CREATE TABLE table_1139835_9 (venue VARCHAR, runner_up VARCHAR) | SELECT venue FROM table_1139835_9 WHERE runner_up = "Hawthorn" | ### Context: CREATE TABLE table_1139835_9 (venue VARCHAR, runner_up VARCHAR) ### Question: What other venue was a runner up to Hawthorn? ### Answer: SELECT venue FROM table_1139835_9 WHERE runner_up = "Hawthorn" |
What is the other premiership when the runner up wis Geelong? | CREATE TABLE table_1139835_9 (premiership VARCHAR, runner_up VARCHAR) | SELECT premiership FROM table_1139835_9 WHERE runner_up = "Geelong" | ### Context: CREATE TABLE table_1139835_9 (premiership VARCHAR, runner_up VARCHAR) ### Question: What is the other premiership when the runner up wis Geelong? ### Answer: SELECT premiership FROM table_1139835_9 WHERE runner_up = "Geelong" |
Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)? | CREATE TABLE table_1139835_9 (runner_up VARCHAR, score VARCHAR) | SELECT runner_up FROM table_1139835_9 WHERE score = "9.12 (66) – 5.6 (36)" | ### Context: CREATE TABLE table_1139835_9 (runner_up VARCHAR, score VARCHAR) ### Question: Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)? ### Answer: SELECT runner_up FROM table_1139835_9 WHERE score = "9.12 (66) – 5.6 (36)" |
Who had the fastest lap in the race where Patrick Tambay was on the pole? | CREATE TABLE table_1140073_2 (fastest_lap VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_1140073_2 WHERE pole_position = "Patrick Tambay" | ### Context: CREATE TABLE table_1140073_2 (fastest_lap VARCHAR, pole_position VARCHAR) ### Question: Who had the fastest lap in the race where Patrick Tambay was on the pole? ### Answer: SELECT fastest_lap FROM table_1140073_2 WHERE pole_position = "Patrick Tambay" |
What race had Nelson Piquet on the pole and was in Nürburgring? | CREATE TABLE table_1140073_2 (race VARCHAR, pole_position VARCHAR, location VARCHAR) | SELECT race FROM table_1140073_2 WHERE pole_position = "Nelson Piquet" AND location = "Nürburgring" | ### Context: CREATE TABLE table_1140073_2 (race VARCHAR, pole_position VARCHAR, location VARCHAR) ### Question: What race had Nelson Piquet on the pole and was in Nürburgring? ### Answer: SELECT race FROM table_1140073_2 WHERE pole_position = "Nelson Piquet" AND location = "Nürburgring" |
How many rounds did Patrick Tambay record the fastest lap? | CREATE TABLE table_1140073_2 (rnd VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(rnd) FROM table_1140073_2 WHERE fastest_lap = "Patrick Tambay" | ### Context: CREATE TABLE table_1140073_2 (rnd VARCHAR, fastest_lap VARCHAR) ### Question: How many rounds did Patrick Tambay record the fastest lap? ### Answer: SELECT COUNT(rnd) FROM table_1140073_2 WHERE fastest_lap = "Patrick Tambay" |
Which race is located in kyalami? | CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR) | SELECT race FROM table_1140073_2 WHERE location = "Kyalami" | ### Context: CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR) ### Question: Which race is located in kyalami? ### Answer: SELECT race FROM table_1140073_2 WHERE location = "Kyalami" |
What is the fastest lap with pole position of gilles villeneuve? | CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = "Gilles Villeneuve" | ### Context: CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR) ### Question: What is the fastest lap with pole position of gilles villeneuve? ### Answer: SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = "Gilles Villeneuve" |
Who did the fastest lap in the dutch grand prix? | CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, race VARCHAR) | SELECT fastest_lap FROM table_1140077_2 WHERE race = "Dutch Grand Prix" | ### Context: CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, race VARCHAR) ### Question: Who did the fastest lap in the dutch grand prix? ### Answer: SELECT fastest_lap FROM table_1140077_2 WHERE race = "Dutch Grand Prix" |
What is the constructor for 9 May? | CREATE TABLE table_1140076_2 (constructor VARCHAR, date VARCHAR) | SELECT constructor FROM table_1140076_2 WHERE date = "9 May" | ### Context: CREATE TABLE table_1140076_2 (constructor VARCHAR, date VARCHAR) ### Question: What is the constructor for 9 May? ### Answer: SELECT constructor FROM table_1140076_2 WHERE date = "9 May" |
What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari? | CREATE TABLE table_1140076_2 (pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR) | SELECT pole_position FROM table_1140076_2 WHERE fastest_lap = "Nelson Piquet" AND constructor = "Ferrari" | ### Context: CREATE TABLE table_1140076_2 (pole_position VARCHAR, fastest_lap VARCHAR, constructor VARCHAR) ### Question: What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari? ### Answer: SELECT pole_position FROM table_1140076_2 WHERE fastest_lap = "Nelson Piquet"... |
What is the report listed for the race in San Marino Grand Prix? | CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR) | SELECT report FROM table_1140076_2 WHERE race = "San Marino Grand Prix" | ### Context: CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR) ### Question: What is the report listed for the race in San Marino Grand Prix? ### Answer: SELECT report FROM table_1140076_2 WHERE race = "San Marino Grand Prix" |
Who was the constructor in the location Monza? | CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR) | SELECT constructor FROM table_1140076_2 WHERE location = "Monza" | ### Context: CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR) ### Question: Who was the constructor in the location Monza? ### Answer: SELECT constructor FROM table_1140076_2 WHERE location = "Monza" |
what's the report with location österreichring | CREATE TABLE table_1140080_2 (report VARCHAR, location VARCHAR) | SELECT report FROM table_1140080_2 WHERE location = "Österreichring" | ### Context: CREATE TABLE table_1140080_2 (report VARCHAR, location VARCHAR) ### Question: what's the report with location österreichring ### Answer: SELECT report FROM table_1140080_2 WHERE location = "Österreichring" |
what's the report with race argentine grand prix | CREATE TABLE table_1140080_2 (report VARCHAR, race VARCHAR) | SELECT report FROM table_1140080_2 WHERE race = "Argentine Grand Prix" | ### Context: CREATE TABLE table_1140080_2 (report VARCHAR, race VARCHAR) ### Question: what's the report with race argentine grand prix ### Answer: SELECT report FROM table_1140080_2 WHERE race = "Argentine Grand Prix" |
what's the minimum rnd with race italian grand prix | CREATE TABLE table_1140080_2 (rnd INTEGER, race VARCHAR) | SELECT MIN(rnd) FROM table_1140080_2 WHERE race = "Italian Grand Prix" | ### Context: CREATE TABLE table_1140080_2 (rnd INTEGER, race VARCHAR) ### Question: what's the minimum rnd with race italian grand prix ### Answer: SELECT MIN(rnd) FROM table_1140080_2 WHERE race = "Italian Grand Prix" |
what's the total number of report with date 29 april | CREATE TABLE table_1140080_2 (report VARCHAR, date VARCHAR) | SELECT COUNT(report) FROM table_1140080_2 WHERE date = "29 April" | ### Context: CREATE TABLE table_1140080_2 (report VARCHAR, date VARCHAR) ### Question: what's the total number of report with date 29 april ### Answer: SELECT COUNT(report) FROM table_1140080_2 WHERE date = "29 April" |
what's the race winner with constructor renault | CREATE TABLE table_1140080_2 (race VARCHAR, constructor VARCHAR) | SELECT race AS Winner FROM table_1140080_2 WHERE constructor = "Renault" | ### Context: CREATE TABLE table_1140080_2 (race VARCHAR, constructor VARCHAR) ### Question: what's the race winner with constructor renault ### Answer: SELECT race AS Winner FROM table_1140080_2 WHERE constructor = "Renault" |
what's the date with rnd 1 | CREATE TABLE table_1140080_2 (date VARCHAR, rnd VARCHAR) | SELECT date FROM table_1140080_2 WHERE rnd = 1 | ### Context: CREATE TABLE table_1140080_2 (date VARCHAR, rnd VARCHAR) ### Question: what's the date with rnd 1 ### Answer: SELECT date FROM table_1140080_2 WHERE rnd = 1 |
How many days is the Monaco Grand Prix? | CREATE TABLE table_1140083_2 (date VARCHAR, race VARCHAR) | SELECT COUNT(date) FROM table_1140083_2 WHERE race = "Monaco Grand Prix" | ### Context: CREATE TABLE table_1140083_2 (date VARCHAR, race VARCHAR) ### Question: How many days is the Monaco Grand Prix? ### Answer: SELECT COUNT(date) FROM table_1140083_2 WHERE race = "Monaco Grand Prix" |
How many rounds were won with James Hunt as pole position and John Watson as fastest lap? | CREATE TABLE table_1140083_2 (rnd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(rnd) FROM table_1140083_2 WHERE pole_position = "James Hunt" AND fastest_lap = "John Watson" | ### Context: CREATE TABLE table_1140083_2 (rnd VARCHAR, pole_position VARCHAR, fastest_lap VARCHAR) ### Question: How many rounds were won with James Hunt as pole position and John Watson as fastest lap? ### Answer: SELECT COUNT(rnd) FROM table_1140083_2 WHERE pole_position = "James Hunt" AND fastest_lap = "John Watso... |
The Dijon-prenois had how many fastest laps? | CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT COUNT(fastest_lap) FROM table_1140083_2 WHERE location = "Dijon-Prenois" | ### Context: CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR) ### Question: The Dijon-prenois had how many fastest laps? ### Answer: SELECT COUNT(fastest_lap) FROM table_1140083_2 WHERE location = "Dijon-Prenois" |
What was the constructor for round 15? | CREATE TABLE table_1140083_2 (constructor VARCHAR, rnd VARCHAR) | SELECT constructor FROM table_1140083_2 WHERE rnd = 15 | ### Context: CREATE TABLE table_1140083_2 (constructor VARCHAR, rnd VARCHAR) ### Question: What was the constructor for round 15? ### Answer: SELECT constructor FROM table_1140083_2 WHERE rnd = 15 |
Who won the Brands Hatch circuit? | CREATE TABLE table_1140088_6 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_1140088_6 WHERE circuit = "Brands Hatch" | ### Context: CREATE TABLE table_1140088_6 (winning_driver VARCHAR, circuit VARCHAR) ### Question: Who won the Brands Hatch circuit? ### Answer: SELECT winning_driver FROM table_1140088_6 WHERE circuit = "Brands Hatch" |
Who constructed the I Italian Republic Grand Prix? | CREATE TABLE table_1140088_6 (constructor VARCHAR, race_name VARCHAR) | SELECT constructor FROM table_1140088_6 WHERE race_name = "I Italian Republic Grand Prix" | ### Context: CREATE TABLE table_1140088_6 (constructor VARCHAR, race_name VARCHAR) ### Question: Who constructed the I Italian Republic Grand Prix? ### Answer: SELECT constructor FROM table_1140088_6 WHERE race_name = "I Italian Republic Grand Prix" |
What race was held at Oulton Park? | CREATE TABLE table_1140088_6 (race_name VARCHAR, circuit VARCHAR) | SELECT race_name FROM table_1140088_6 WHERE circuit = "Oulton Park" | ### Context: CREATE TABLE table_1140088_6 (race_name VARCHAR, circuit VARCHAR) ### Question: What race was held at Oulton Park? ### Answer: SELECT race_name FROM table_1140088_6 WHERE circuit = "Oulton Park" |
Did the I Brazilian Grand Prix have a report? | CREATE TABLE table_1140088_6 (report VARCHAR, race_name VARCHAR) | SELECT report FROM table_1140088_6 WHERE race_name = "I Brazilian Grand Prix" | ### Context: CREATE TABLE table_1140088_6 (report VARCHAR, race_name VARCHAR) ### Question: Did the I Brazilian Grand Prix have a report? ### Answer: SELECT report FROM table_1140088_6 WHERE race_name = "I Brazilian Grand Prix" |
what is the race where the pole position is niki lauda and the date is 27 april? | CREATE TABLE table_1140085_2 (race VARCHAR, pole_position VARCHAR, date VARCHAR) | SELECT race FROM table_1140085_2 WHERE pole_position = "Niki Lauda" AND date = "27 April" | ### Context: CREATE TABLE table_1140085_2 (race VARCHAR, pole_position VARCHAR, date VARCHAR) ### Question: what is the race where the pole position is niki lauda and the date is 27 april? ### Answer: SELECT race FROM table_1140085_2 WHERE pole_position = "Niki Lauda" AND date = "27 April" |
what is the date where the constructor is ferrari and the location is anderstorp? | CREATE TABLE table_1140085_2 (date VARCHAR, constructor VARCHAR, location VARCHAR) | SELECT date FROM table_1140085_2 WHERE constructor = "Ferrari" AND location = "Anderstorp" | ### Context: CREATE TABLE table_1140085_2 (date VARCHAR, constructor VARCHAR, location VARCHAR) ### Question: what is the date where the constructor is ferrari and the location is anderstorp? ### Answer: SELECT date FROM table_1140085_2 WHERE constructor = "Ferrari" AND location = "Anderstorp" |
how many times is the pole position niki lauda and the race is monaco grand prix? | CREATE TABLE table_1140085_2 (rnd VARCHAR, pole_position VARCHAR, race VARCHAR) | SELECT COUNT(rnd) FROM table_1140085_2 WHERE pole_position = "Niki Lauda" AND race = "Monaco Grand Prix" | ### Context: CREATE TABLE table_1140085_2 (rnd VARCHAR, pole_position VARCHAR, race VARCHAR) ### Question: how many times is the pole position niki lauda and the race is monaco grand prix? ### Answer: SELECT COUNT(rnd) FROM table_1140085_2 WHERE pole_position = "Niki Lauda" AND race = "Monaco Grand Prix" |
what is the report where the location is kyalami? | CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR) | SELECT report FROM table_1140085_2 WHERE location = "Kyalami" | ### Context: CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR) ### Question: what is the report where the location is kyalami? ### Answer: SELECT report FROM table_1140085_2 WHERE location = "Kyalami" |
who is the pole position for the rnd 3 | CREATE TABLE table_1140085_2 (pole_position VARCHAR, rnd VARCHAR) | SELECT pole_position FROM table_1140085_2 WHERE rnd = 3 | ### Context: CREATE TABLE table_1140085_2 (pole_position VARCHAR, rnd VARCHAR) ### Question: who is the pole position for the rnd 3 ### Answer: SELECT pole_position FROM table_1140085_2 WHERE rnd = 3 |
what is the race where the fastest lap is by jean-pierre jarier? | CREATE TABLE table_1140085_2 (race VARCHAR, fastest_lap VARCHAR) | SELECT race FROM table_1140085_2 WHERE fastest_lap = "Jean-Pierre Jarier" | ### Context: CREATE TABLE table_1140085_2 (race VARCHAR, fastest_lap VARCHAR) ### Question: what is the race where the fastest lap is by jean-pierre jarier? ### Answer: SELECT race FROM table_1140085_2 WHERE fastest_lap = "Jean-Pierre Jarier" |
What circuit did Clay Regazzoni win? | CREATE TABLE table_1140090_6 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_1140090_6 WHERE winning_driver = "Clay Regazzoni" | ### Context: CREATE TABLE table_1140090_6 (circuit VARCHAR, winning_driver VARCHAR) ### Question: What circuit did Clay Regazzoni win? ### Answer: SELECT circuit FROM table_1140090_6 WHERE winning_driver = "Clay Regazzoni" |
What was the date when Chris Amon won? | CREATE TABLE table_1140090_6 (date VARCHAR, winning_driver VARCHAR) | SELECT date FROM table_1140090_6 WHERE winning_driver = "Chris Amon" | ### Context: CREATE TABLE table_1140090_6 (date VARCHAR, winning_driver VARCHAR) ### Question: What was the date when Chris Amon won? ### Answer: SELECT date FROM table_1140090_6 WHERE winning_driver = "Chris Amon" |
What circuit is the Vi Rhein-Pokalrennen race in? | CREATE TABLE table_1140090_6 (circuit VARCHAR, race_name VARCHAR) | SELECT circuit FROM table_1140090_6 WHERE race_name = "VI Rhein-Pokalrennen" | ### Context: CREATE TABLE table_1140090_6 (circuit VARCHAR, race_name VARCHAR) ### Question: What circuit is the Vi Rhein-Pokalrennen race in? ### Answer: SELECT circuit FROM table_1140090_6 WHERE race_name = "VI Rhein-Pokalrennen" |
What date is listed at place 13 | CREATE TABLE table_1140103_6 (date VARCHAR, _number VARCHAR) | SELECT date FROM table_1140103_6 WHERE _number = 13 | ### Context: CREATE TABLE table_1140103_6 (date VARCHAR, _number VARCHAR) ### Question: What date is listed at place 13 ### Answer: SELECT date FROM table_1140103_6 WHERE _number = 13 |
What date has a solitudering circuit | CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_1140103_6 WHERE circuit = "Solitudering" | ### Context: CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) ### Question: What date has a solitudering circuit ### Answer: SELECT date FROM table_1140103_6 WHERE circuit = "Solitudering" |
How many dates have silverstone circuit | CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | SELECT COUNT(date) FROM table_1140103_6 WHERE circuit = "Silverstone" | ### Context: CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) ### Question: How many dates have silverstone circuit ### Answer: SELECT COUNT(date) FROM table_1140103_6 WHERE circuit = "Silverstone" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.