Unnamed: 0 int64 0 60k | input stringlengths 76 562 | answer stringlengths 18 557 |
|---|---|---|
27,600 | <question>: What is the group a winner for modena? <context>: 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" |
27,601 | <question>: What is the group a winner for vis pesaro? <context>: 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" |
27,602 | <question>: What group a winner was for nocerina? <context>: 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" |
27,603 | <question>: What was the group d winner for modena? <context>: 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" |
27,604 | <question>: Who had the fastest lap at the brazilian grand prix? <context>: CREATE TABLE table_1137695_3 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1137695_3 WHERE grand_prix = "Brazilian grand_prix" |
27,605 | <question>: Who was on the pole position at the monaco grand prix? <context>: CREATE TABLE table_1137695_3 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1137695_3 WHERE grand_prix = "Monaco grand_prix" |
27,606 | <question>: Who was the winning driver when Michael Schumacher had the pole and the fastest lap? <context>: 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" |
27,607 | <question>: what are all the location where date is 5 april <context>: CREATE TABLE table_1137704_2 (location VARCHAR, date VARCHAR) | SELECT location FROM table_1137704_2 WHERE date = "5 April" |
27,608 | <question>: what are all the pole position where date is 26 july <context>: CREATE TABLE table_1137704_2 (pole_position VARCHAR, date VARCHAR) | SELECT pole_position FROM table_1137704_2 WHERE date = "26 July" |
27,609 | <question>: who are all the winning constructors where fastest lap is riccardo patrese and location is interlagos <context>: 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" |
27,610 | <question>: what are all the report where winning constructor is williams - renault and grand prix is south african grand prix <context>: 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" |
27,611 | <question>: whatthe minimum round where grand prix is german grand prix <context>: CREATE TABLE table_1137704_2 (round INTEGER, grand_prix VARCHAR) | SELECT MIN(round) FROM table_1137704_2 WHERE grand_prix = "German grand_prix" |
27,612 | <question>: what of the total number of date where grand prix is portuguese grand prix <context>: CREATE TABLE table_1137704_2 (date VARCHAR, grand_prix VARCHAR) | SELECT COUNT(date) FROM table_1137704_2 WHERE grand_prix = "Portuguese grand_prix" |
27,613 | <question>: What is the number of pole position with a round of 15? <context>: CREATE TABLE table_1137707_2 (pole_position VARCHAR, round VARCHAR) | SELECT COUNT(pole_position) FROM table_1137707_2 WHERE round = 15 |
27,614 | <question>: What is the date of the circuit gilles villeneuve? <context>: CREATE TABLE table_1137707_2 (date VARCHAR, location VARCHAR) | SELECT date FROM table_1137707_2 WHERE location = "Circuit Gilles Villeneuve" |
27,615 | <question>: What is the location of thierry boutsen? <context>: CREATE TABLE table_1137707_2 (location VARCHAR, fastest_lap VARCHAR) | SELECT location FROM table_1137707_2 WHERE fastest_lap = "Thierry Boutsen" |
27,616 | <question>: Who had the pole position at the German Grand Prix? <context>: CREATE TABLE table_1137718_2 (pole_position VARCHAR, grand_prix VARCHAR) | SELECT pole_position FROM table_1137718_2 WHERE grand_prix = "German grand_prix" |
27,617 | <question>: Which rd. occurred on 22 October? <context>: CREATE TABLE table_1137718_2 (rd INTEGER, date VARCHAR) | SELECT MIN(rd) FROM table_1137718_2 WHERE date = "22 October" |
27,618 | <question>: Who was the winning driver on 13 August? <context>: CREATE TABLE table_1137718_2 (winning_driver VARCHAR, date VARCHAR) | SELECT winning_driver FROM table_1137718_2 WHERE date = "13 August" |
27,619 | <question>: What was the fastest lap at the Mexican Grand Prix? <context>: CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, grand_prix VARCHAR) | SELECT fastest_lap FROM table_1137718_2 WHERE grand_prix = "Mexican grand_prix" |
27,620 | <question>: Which rd. took place at Hockenheimring? <context>: CREATE TABLE table_1137718_2 (rd INTEGER, location VARCHAR) | SELECT MIN(rd) FROM table_1137718_2 WHERE location = "Hockenheimring" |
27,621 | <question>: How many drivers had the fastest lap at Silverstone? <context>: CREATE TABLE table_1137718_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT COUNT(fastest_lap) FROM table_1137718_2 WHERE location = "Silverstone" |
27,622 | <question>: What is the percentage of Android use when Windows is 1.15%? <context>: CREATE TABLE table_11381701_3 (android VARCHAR, windows VARCHAR) | SELECT android FROM table_11381701_3 WHERE windows = "1.15%" |
27,623 | <question>: On which dates was the value of Bada 0.05%? <context>: CREATE TABLE table_11381701_3 (date VARCHAR, bada VARCHAR) | SELECT date FROM table_11381701_3 WHERE bada = "0.05%" |
27,624 | <question>: When the value of "other" is 0.7%, what is the percentage for Windows? <context>: CREATE TABLE table_11381701_3 (windows VARCHAR, other VARCHAR) | SELECT windows FROM table_11381701_3 WHERE other = "0.7%" |
27,625 | <question>: When Symbian/Series 40 is 0.40%, what is the percentage of "other"? <context>: CREATE TABLE table_11381701_3 (other VARCHAR, symbian___series_40 VARCHAR) | SELECT other FROM table_11381701_3 WHERE symbian___series_40 = "0.40%" |
27,626 | <question>: Which source shows Blackberry at 2.9%? <context>: CREATE TABLE table_11381701_3 (source VARCHAR, blackberry VARCHAR) | SELECT source FROM table_11381701_3 WHERE blackberry = "2.9%" |
27,627 | <question>: Which colleges have the english abbreviation MTC? <context>: CREATE TABLE table_11390711_4 (english_name VARCHAR, abbreviation VARCHAR) | SELECT english_name FROM table_11390711_4 WHERE abbreviation = "MTC" |
27,628 | <question>: What is the Japanese orthography for the English name National Farmers Academy? <context>: CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) | SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Farmers Academy" |
27,629 | <question>: What is the abbreviation for the college pronounced "kōkū daigakkō"? <context>: CREATE TABLE table_11390711_4 (abbreviation VARCHAR, pronouciation VARCHAR) | SELECT abbreviation FROM table_11390711_4 WHERE pronouciation = "Kōkū Daigakkō" |
27,630 | <question>: How many providers were founded in 1964? <context>: CREATE TABLE table_11390711_4 (provider_iai_ VARCHAR, foundation VARCHAR) | SELECT COUNT(provider_iai_) FROM table_11390711_4 WHERE foundation = 1964 |
27,631 | <question>: What is the Japanese orthography for National Fisheries University? <context>: CREATE TABLE table_11390711_4 (japanese_orthography VARCHAR, english_name VARCHAR) | SELECT japanese_orthography FROM table_11390711_4 WHERE english_name = "National Fisheries University" |
27,632 | <question>: What is the minimum number for the half marathon (womens)? <context>: CREATE TABLE table_11391954_3 (Half INTEGER) | SELECT MIN(Half) AS marathon__womens_ FROM table_11391954_3 |
27,633 | <question>: Whatis the total number of half marathon (mens) that represented kazakhstan? <context>: CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) | SELECT COUNT(Half) AS marathon__mens_ FROM table_11391954_3 WHERE country = "Kazakhstan" |
27,634 | <question>: How many times is Moldova the winner of half marathon (womens)? <context>: CREATE TABLE table_11391954_3 (Half VARCHAR, country VARCHAR) | SELECT COUNT(Half) AS marathon__womens_ FROM table_11391954_3 WHERE country = "Moldova" |
27,635 | <question>: What is the make of the car that won the brazilian grand prix? <context>: CREATE TABLE table_1139087_2 (constructor VARCHAR, grand_prix VARCHAR) | SELECT constructor FROM table_1139087_2 WHERE grand_prix = "Brazilian grand_prix" |
27,636 | <question>: Who drove the fastest lap for round 8? <context>: CREATE TABLE table_1139087_2 (fastest_lap VARCHAR, rd VARCHAR) | SELECT fastest_lap FROM table_1139087_2 WHERE rd = 8 |
27,637 | <question>: What day was the grand prix in jerez? <context>: CREATE TABLE table_1139087_2 (date VARCHAR, location VARCHAR) | SELECT date FROM table_1139087_2 WHERE location = "Jerez" |
27,638 | <question>: What event was in detroit? <context>: CREATE TABLE table_1139087_2 (grand_prix VARCHAR, location VARCHAR) | SELECT grand_prix FROM table_1139087_2 WHERE location = "Detroit" |
27,639 | <question>: How many events did nigel mansell drive the fastest and a mclaren - honda win? <context>: 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" |
27,640 | <question>: What day is the french grand prix <context>: CREATE TABLE table_1139087_2 (date VARCHAR, grand_prix VARCHAR) | SELECT date FROM table_1139087_2 WHERE grand_prix = "French grand_prix" |
27,641 | <question>: who is the winners where season result is 7th <context>: CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) | SELECT winners FROM table_1139835_3 WHERE season_result = "7th" |
27,642 | <question>: who is the winners where season result is 9th <context>: CREATE TABLE table_1139835_3 (winners VARCHAR, season_result VARCHAR) | SELECT winners FROM table_1139835_3 WHERE season_result = "9th" |
27,643 | <question>: what's the grand finalist where winners is collingwood <context>: CREATE TABLE table_1139835_3 (grand_finalist VARCHAR, winners VARCHAR) | SELECT grand_finalist FROM table_1139835_3 WHERE winners = "Collingwood" |
27,644 | <question>: who is the season result where margin is 51 <context>: CREATE TABLE table_1139835_3 (season_result VARCHAR, margin VARCHAR) | SELECT season_result FROM table_1139835_3 WHERE margin = 51 |
27,645 | <question>: who is the grand finalist where scores is 11.11 (77) – 10.8 (68) <context>: 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)" |
27,646 | <question>: who is the grand finalist where scores is 8.9 (57) – 7.12 (54) <context>: 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)" |
27,647 | <question>: what was the crowd when the scores are 10.12 (72) – 8.11 (59)? <context>: CREATE TABLE table_1139835_1 (crowd INTEGER, scores VARCHAR) | SELECT MAX(crowd) FROM table_1139835_1 WHERE scores = "10.12 (72) – 8.11 (59)" |
27,648 | <question>: what is the venue where the scores are 15.13 (103) – 8.4 (52)? <context>: CREATE TABLE table_1139835_1 (venue VARCHAR, scores VARCHAR) | SELECT venue FROM table_1139835_1 WHERE scores = "15.13 (103) – 8.4 (52)" |
27,649 | <question>: what is the venue where the margin is 4? <context>: CREATE TABLE table_1139835_1 (venue VARCHAR, margin VARCHAR) | SELECT venue FROM table_1139835_1 WHERE margin = 4 |
27,650 | <question>: what is the crowd when the grand finalist was south melbourne? <context>: CREATE TABLE table_1139835_1 (crowd VARCHAR, grand_finalist VARCHAR) | SELECT crowd FROM table_1139835_1 WHERE grand_finalist = "South Melbourne" |
27,651 | <question>: What was the date for monaco grand prix? <context>: CREATE TABLE table_1140067_2 (date VARCHAR, race VARCHAR) | SELECT date FROM table_1140067_2 WHERE race = "Monaco Grand Prix" |
27,652 | <question>: What was the date for the pole position of alain prost? <context>: CREATE TABLE table_1140067_2 (date VARCHAR, pole_position VARCHAR) | SELECT date FROM table_1140067_2 WHERE pole_position = "Alain Prost" |
27,653 | <question>: What is the race winer of the portuguese grand prix? <context>: CREATE TABLE table_1140067_2 (race VARCHAR) | SELECT race AS Winner FROM table_1140067_2 WHERE race = "Portuguese Grand Prix" |
27,654 | <question>: what's the race winner with date being 12 june <context>: CREATE TABLE table_1140074_2 (race VARCHAR, date VARCHAR) | SELECT race AS Winner FROM table_1140074_2 WHERE date = "12 June" |
27,655 | <question>: what's the constructor with location being hockenheimring <context>: CREATE TABLE table_1140074_2 (constructor VARCHAR, location VARCHAR) | SELECT constructor FROM table_1140074_2 WHERE location = "Hockenheimring" |
27,656 | <question>: what's the race winner with location being jacarepaguá <context>: CREATE TABLE table_1140074_2 (race VARCHAR, location VARCHAR) | SELECT race AS Winner FROM table_1140074_2 WHERE location = "Jacarepaguá" |
27,657 | <question>: what's the total number of race winner with rnd being 10 <context>: CREATE TABLE table_1140074_2 (race VARCHAR, rnd VARCHAR) | SELECT COUNT(race) AS Winner FROM table_1140074_2 WHERE rnd = 10 |
27,658 | <question>: what's the pole position with location being hockenheimring <context>: CREATE TABLE table_1140074_2 (pole_position VARCHAR, location VARCHAR) | SELECT pole_position FROM table_1140074_2 WHERE location = "Hockenheimring" |
27,659 | <question>: what's the report with rnd being 4 <context>: CREATE TABLE table_1140074_2 (report VARCHAR, rnd VARCHAR) | SELECT report FROM table_1140074_2 WHERE rnd = 4 |
27,660 | <question>: What venue has an attendance of 30824 at Essendon in 1984? <context>: CREATE TABLE table_1139835_9 (venue VARCHAR, premier VARCHAR, attendance VARCHAR) | SELECT venue FROM table_1139835_9 WHERE premier = "Essendon" AND attendance = 30824 |
27,661 | <question>: What other venue was a runner up to Hawthorn? <context>: CREATE TABLE table_1139835_9 (venue VARCHAR, runner_up VARCHAR) | SELECT venue FROM table_1139835_9 WHERE runner_up = "Hawthorn" |
27,662 | <question>: What is the other premiership when the runner up wis Geelong? <context>: CREATE TABLE table_1139835_9 (premiership VARCHAR, runner_up VARCHAR) | SELECT premiership FROM table_1139835_9 WHERE runner_up = "Geelong" |
27,663 | <question>: Who are all the runner ups when the score is 9.12 (66) – 5.6 (36)? <context>: 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)" |
27,664 | <question>: Who had the fastest lap in the race where Patrick Tambay was on the pole? <context>: CREATE TABLE table_1140073_2 (fastest_lap VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_1140073_2 WHERE pole_position = "Patrick Tambay" |
27,665 | <question>: What race had Nelson Piquet on the pole and was in Nürburgring? <context>: 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" |
27,666 | <question>: How many rounds did Patrick Tambay record the fastest lap? <context>: CREATE TABLE table_1140073_2 (rnd VARCHAR, fastest_lap VARCHAR) | SELECT COUNT(rnd) FROM table_1140073_2 WHERE fastest_lap = "Patrick Tambay" |
27,667 | <question>: Which race is located in kyalami? <context>: CREATE TABLE table_1140073_2 (race VARCHAR, location VARCHAR) | SELECT race FROM table_1140073_2 WHERE location = "Kyalami" |
27,668 | <question>: What is the fastest lap with pole position of gilles villeneuve? <context>: CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, pole_position VARCHAR) | SELECT fastest_lap FROM table_1140077_2 WHERE pole_position = "Gilles Villeneuve" |
27,669 | <question>: Who did the fastest lap in the dutch grand prix? <context>: CREATE TABLE table_1140077_2 (fastest_lap VARCHAR, race VARCHAR) | SELECT fastest_lap FROM table_1140077_2 WHERE race = "Dutch Grand Prix" |
27,670 | <question>: What is the constructor for 9 May? <context>: CREATE TABLE table_1140076_2 (constructor VARCHAR, date VARCHAR) | SELECT constructor FROM table_1140076_2 WHERE date = "9 May" |
27,671 | <question>: What is the pole position for the race with the fastest lap by Nelson Piquet and the constructor is Ferrari? <context>: 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" |
27,672 | <question>: What is the report listed for the race in San Marino Grand Prix? <context>: CREATE TABLE table_1140076_2 (report VARCHAR, race VARCHAR) | SELECT report FROM table_1140076_2 WHERE race = "San Marino Grand Prix" |
27,673 | <question>: Who was the constructor in the location Monza? <context>: CREATE TABLE table_1140076_2 (constructor VARCHAR, location VARCHAR) | SELECT constructor FROM table_1140076_2 WHERE location = "Monza" |
27,674 | <question>: what's the report with location österreichring <context>: CREATE TABLE table_1140080_2 (report VARCHAR, location VARCHAR) | SELECT report FROM table_1140080_2 WHERE location = "Österreichring" |
27,675 | <question>: what's the report with race argentine grand prix <context>: CREATE TABLE table_1140080_2 (report VARCHAR, race VARCHAR) | SELECT report FROM table_1140080_2 WHERE race = "Argentine Grand Prix" |
27,676 | <question>: what's the minimum rnd with race italian grand prix <context>: CREATE TABLE table_1140080_2 (rnd INTEGER, race VARCHAR) | SELECT MIN(rnd) FROM table_1140080_2 WHERE race = "Italian Grand Prix" |
27,677 | <question>: what's the total number of report with date 29 april <context>: CREATE TABLE table_1140080_2 (report VARCHAR, date VARCHAR) | SELECT COUNT(report) FROM table_1140080_2 WHERE date = "29 April" |
27,678 | <question>: what's the race winner with constructor renault <context>: CREATE TABLE table_1140080_2 (race VARCHAR, constructor VARCHAR) | SELECT race AS Winner FROM table_1140080_2 WHERE constructor = "Renault" |
27,679 | <question>: what's the date with rnd 1 <context>: CREATE TABLE table_1140080_2 (date VARCHAR, rnd VARCHAR) | SELECT date FROM table_1140080_2 WHERE rnd = 1 |
27,680 | <question>: How many days is the Monaco Grand Prix? <context>: CREATE TABLE table_1140083_2 (date VARCHAR, race VARCHAR) | SELECT COUNT(date) FROM table_1140083_2 WHERE race = "Monaco Grand Prix" |
27,681 | <question>: How many rounds were won with James Hunt as pole position and John Watson as fastest lap? <context>: 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" |
27,682 | <question>: The Dijon-prenois had how many fastest laps? <context>: CREATE TABLE table_1140083_2 (fastest_lap VARCHAR, location VARCHAR) | SELECT COUNT(fastest_lap) FROM table_1140083_2 WHERE location = "Dijon-Prenois" |
27,683 | <question>: What was the constructor for round 15? <context>: CREATE TABLE table_1140083_2 (constructor VARCHAR, rnd VARCHAR) | SELECT constructor FROM table_1140083_2 WHERE rnd = 15 |
27,684 | <question>: Who won the Brands Hatch circuit? <context>: CREATE TABLE table_1140088_6 (winning_driver VARCHAR, circuit VARCHAR) | SELECT winning_driver FROM table_1140088_6 WHERE circuit = "Brands Hatch" |
27,685 | <question>: Who constructed the I Italian Republic Grand Prix? <context>: CREATE TABLE table_1140088_6 (constructor VARCHAR, race_name VARCHAR) | SELECT constructor FROM table_1140088_6 WHERE race_name = "I Italian Republic Grand Prix" |
27,686 | <question>: What race was held at Oulton Park? <context>: CREATE TABLE table_1140088_6 (race_name VARCHAR, circuit VARCHAR) | SELECT race_name FROM table_1140088_6 WHERE circuit = "Oulton Park" |
27,687 | <question>: Did the I Brazilian Grand Prix have a report? <context>: CREATE TABLE table_1140088_6 (report VARCHAR, race_name VARCHAR) | SELECT report FROM table_1140088_6 WHERE race_name = "I Brazilian Grand Prix" |
27,688 | <question>: what is the race where the pole position is niki lauda and the date is 27 april? <context>: 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" |
27,689 | <question>: what is the date where the constructor is ferrari and the location is anderstorp? <context>: CREATE TABLE table_1140085_2 (date VARCHAR, constructor VARCHAR, location VARCHAR) | SELECT date FROM table_1140085_2 WHERE constructor = "Ferrari" AND location = "Anderstorp" |
27,690 | <question>: how many times is the pole position niki lauda and the race is monaco grand prix? <context>: 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" |
27,691 | <question>: what is the report where the location is kyalami? <context>: CREATE TABLE table_1140085_2 (report VARCHAR, location VARCHAR) | SELECT report FROM table_1140085_2 WHERE location = "Kyalami" |
27,692 | <question>: who is the pole position for the rnd 3 <context>: CREATE TABLE table_1140085_2 (pole_position VARCHAR, rnd VARCHAR) | SELECT pole_position FROM table_1140085_2 WHERE rnd = 3 |
27,693 | <question>: what is the race where the fastest lap is by jean-pierre jarier? <context>: CREATE TABLE table_1140085_2 (race VARCHAR, fastest_lap VARCHAR) | SELECT race FROM table_1140085_2 WHERE fastest_lap = "Jean-Pierre Jarier" |
27,694 | <question>: What circuit did Clay Regazzoni win? <context>: CREATE TABLE table_1140090_6 (circuit VARCHAR, winning_driver VARCHAR) | SELECT circuit FROM table_1140090_6 WHERE winning_driver = "Clay Regazzoni" |
27,695 | <question>: What was the date when Chris Amon won? <context>: CREATE TABLE table_1140090_6 (date VARCHAR, winning_driver VARCHAR) | SELECT date FROM table_1140090_6 WHERE winning_driver = "Chris Amon" |
27,696 | <question>: What circuit is the Vi Rhein-Pokalrennen race in? <context>: CREATE TABLE table_1140090_6 (circuit VARCHAR, race_name VARCHAR) | SELECT circuit FROM table_1140090_6 WHERE race_name = "VI Rhein-Pokalrennen" |
27,697 | <question>: What date is listed at place 13 <context>: CREATE TABLE table_1140103_6 (date VARCHAR, _number VARCHAR) | SELECT date FROM table_1140103_6 WHERE _number = 13 |
27,698 | <question>: What date has a solitudering circuit <context>: CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | SELECT date FROM table_1140103_6 WHERE circuit = "Solitudering" |
27,699 | <question>: How many dates have silverstone circuit <context>: CREATE TABLE table_1140103_6 (date VARCHAR, circuit VARCHAR) | 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.