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