question stringlengths 12 244 | context stringlengths 27 489 | answer dict |
|---|---|---|
What is the group a winner for modena? | CREATE TABLE table_1137142_1 (group_a_winner VARCHAR, group_b_winner VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT winning_driver FROM table_1137695_3 WHERE fastest_lap = \"Michael Schumacher\" AND pole_position = \"Michael Schumacher\""
} |
what are all the location where date is 5 april | CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT winning_constructor FROM table_1137704_2 WHERE fastest_lap = \"Riccardo Patrese\" AND location = \"Interlagos\""
} |
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) | {
"SQL_Query": "SELECT report FROM table_1137704_2 WHERE winning_constructor = \"Williams - Renault\" AND grand_prix = \"South African grand_prix\""
} |
whatthe minimum round where grand prix is german grand prix | CREATE TABLE table_1137704_2 (round INTEGER, grand_prix VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT date FROM table_1139087_2 WHERE location = \"Jerez\""
} |
What event was in detroit? | CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT COUNT(grand_prix) FROM table_1139087_2 WHERE constructor = \"McLaren - Honda\" AND fastest_lap = \"Nigel Mansell\""
} |
What day is the french grand prix | CREATE TABLE table_1139087_2 (date VARCHAR, grand_prix VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT pole_position FROM table_1140076_2 WHERE fastest_lap = \"Nelson Piquet\" AND constructor = \"Ferrari\""
} |
What is the report listed for the race in San Marino Grand Prix? | CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT COUNT(rnd) FROM table_1140083_2 WHERE pole_position = \"James Hunt\" AND fastest_lap = \"John Watson\""
} |
The Dijon-prenois had how many fastest laps? | CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "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) | {
"SQL_Query": "SELECT date FROM table_1140103_6 WHERE _number = 13"
} |
What date has a solitudering circuit | CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | {
"SQL_Query": "SELECT date FROM table_1140103_6 WHERE circuit = \"Solitudering\""
} |
How many dates have silverstone circuit | CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | {
"SQL_Query": "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.