training_input
stringlengths
118
1.06k
###context:CREATE TABLE table_name_24 (to_par INTEGER, total INTEGER) ###human: When the total was smaller than 290, what was the highest To par? ###assistant: SELECT MAX(to_par) FROM table_name_24 WHERE total < 290
###context:CREATE TABLE table_name_4 (to_par VARCHAR, player VARCHAR) ###human: What is the total number of To par for Lee Trevino? ###assistant: SELECT COUNT(to_par) FROM table_name_4 WHERE player = "lee trevino"
###context:CREATE TABLE table_name_59 (to_par INTEGER, finish VARCHAR) ###human: What is the sum of To par when the Finish is t11? ###assistant: SELECT SUM(to_par) FROM table_name_59 WHERE finish = "t11"
###context:CREATE TABLE table_name_21 (runs INTEGER, player VARCHAR) ###human: What was Donald Bradman's average runs? ###assistant: SELECT AVG(runs) FROM table_name_21 WHERE player = "donald bradman"
###context:CREATE TABLE table_name_45 (runs INTEGER, matches INTEGER) ###human: What was the highest amount of runs for more than 5 matches? ###assistant: SELECT MAX(runs) FROM table_name_45 WHERE matches > 5
###context:CREATE TABLE table_name_2 (shot_pct INTEGER, blank_ends INTEGER) ###human: What is the lowest Shot Pct., when Blank Ends is greater than 6? ###assistant: SELECT MIN(shot_pct) FROM table_name_2 WHERE blank_ends > 6
###context:CREATE TABLE table_name_67 (shot_pct VARCHAR, stolen_ends VARCHAR) ###human: What is Shot Pct., when Stolen Ends is 2? ###assistant: SELECT shot_pct FROM table_name_67 WHERE stolen_ends = 2
###context:CREATE TABLE table_name_92 (ends_won VARCHAR, province VARCHAR, stolen_ends VARCHAR) ###human: What is the total number of Ends Won, when Province is "Saskatchewan", and when Stolen Ends is less than 6? ###assistant: SELECT COUNT(ends_won) FROM table_name_92 WHERE province = "saskatchewan" AND stolen_ends < 6
###context:CREATE TABLE table_name_28 (date VARCHAR, away_team VARCHAR) ###human: On what date were Perth Wildcats the away team? ###assistant: SELECT date FROM table_name_28 WHERE away_team = "perth wildcats"
###context:CREATE TABLE table_name_84 (date VARCHAR, score VARCHAR) ###human: On what date was the score 121-113? ###assistant: SELECT date FROM table_name_84 WHERE score = "121-113"
###context:CREATE TABLE table_name_64 (date VARCHAR, home_team VARCHAR) ###human: On what date was Adelaide 36ers the home team? ###assistant: SELECT date FROM table_name_64 WHERE home_team = "adelaide 36ers"
###context:CREATE TABLE table_name_6 (report VARCHAR, venue VARCHAR) ###human: Which report is for Townsville Entertainment Centre? ###assistant: SELECT report FROM table_name_6 WHERE venue = "townsville entertainment centre"
###context:CREATE TABLE table_name_7 (home_team VARCHAR, score VARCHAR) ###human: Which home team had a score of 85-101? ###assistant: SELECT home_team FROM table_name_7 WHERE score = "85-101"
###context:CREATE TABLE table_name_21 (Box VARCHAR, home_team VARCHAR) ###human: What was the box core for the Melbourne Tigers? ###assistant: SELECT Box AS score FROM table_name_21 WHERE home_team = "melbourne tigers"
###context:CREATE TABLE table_name_42 (author VARCHAR, featuring VARCHAR) ###human: who is the author when featuring is leela, the master, kraals? ###assistant: SELECT author FROM table_name_42 WHERE featuring = "leela, the master, kraals"
###context:CREATE TABLE table_name_73 (author VARCHAR, title VARCHAR) ###human: who is the author when the title is destination: nerva? ###assistant: SELECT author FROM table_name_73 WHERE title = "destination: nerva"
###context:CREATE TABLE table_name_18 (featuring VARCHAR, title VARCHAR) ###human: who is featuring when the title is energy of the daleks? ###assistant: SELECT featuring FROM table_name_18 WHERE title = "energy of the daleks"
###context:CREATE TABLE table_name_71 (title VARCHAR, featuring VARCHAR, series_sorted VARCHAR) ###human: what is the title when the featuring is leela and series sorted is 4s/b? ###assistant: SELECT title FROM table_name_71 WHERE featuring = "leela" AND series_sorted = "4s/b"
###context:CREATE TABLE table_name_52 (opponent VARCHAR, december VARCHAR) ###human: Can you tell me the Opponent that has the December of 2? ###assistant: SELECT opponent FROM table_name_52 WHERE december = 2
###context:CREATE TABLE table_name_18 (december INTEGER, opponent VARCHAR) ###human: Can you tell me the average December rhat has the Opponent of @ toronto maple leafs? ###assistant: SELECT AVG(december) FROM table_name_18 WHERE opponent = "@ toronto maple leafs"
###context:CREATE TABLE table_name_55 (score VARCHAR, december VARCHAR) ###human: Can you tell me the Score that has the December of 10? ###assistant: SELECT score FROM table_name_55 WHERE december = 10
###context:CREATE TABLE table_name_89 (score VARCHAR, tie_no VARCHAR) ###human: What was the score when the Tie no was 6? ###assistant: SELECT score FROM table_name_89 WHERE tie_no = 6
###context:CREATE TABLE table_name_11 (score VARCHAR, tie_no INTEGER) ###human: What was the score when the Tie no less than 2? ###assistant: SELECT score FROM table_name_11 WHERE tie_no < 2
###context:CREATE TABLE table_name_48 (away_team VARCHAR, home_team VARCHAR) ###human: Who was the away team when the home team was Sunderland? ###assistant: SELECT away_team FROM table_name_48 WHERE home_team = "sunderland"
###context:CREATE TABLE table_name_75 (winning_team VARCHAR, winning_driver VARCHAR, circuit VARCHAR, fastest_lap VARCHAR, pole_position VARCHAR) ###human: Which Winning Team has the Fastest Lap of brendon hartley, and a Pole Position of oliver turvey, and a Circuit of spa-francorchamps, and the Winning Driver of brendon hartley? ###assistant: SELECT winning_team FROM table_name_75 WHERE fastest_lap = "brendon hartley" AND pole_position = "oliver turvey" AND circuit = "spa-francorchamps" AND winning_driver = "brendon hartley"
###context:CREATE TABLE table_name_93 (circuit VARCHAR, date VARCHAR, winning_team VARCHAR, winning_driver VARCHAR) ###human: Which Circuit has the Winning Team of carlin motorsport, and the Winning Driver of oliver turvey, and a Date of 24 march? ###assistant: SELECT circuit FROM table_name_93 WHERE winning_team = "carlin motorsport" AND winning_driver = "oliver turvey" AND date = "24 march"
###context:CREATE TABLE table_name_56 (round INTEGER, winning_driver VARCHAR, date VARCHAR) ###human: Which Round has the Winning Driver of brendon hartley, and a Date of 27 april? ###assistant: SELECT MIN(round) FROM table_name_56 WHERE winning_driver = "brendon hartley" AND date = "27 april"
###context:CREATE TABLE table_name_94 (date VARCHAR, pole_position VARCHAR) ###human: Which Date has a Pole Position of michael devaney? ###assistant: SELECT date FROM table_name_94 WHERE pole_position = "michael devaney"
###context:CREATE TABLE table_name_61 (report VARCHAR, winning_driver VARCHAR) ###human: Which Report has a Winning driver of emerson fittipaldi? ###assistant: SELECT report FROM table_name_61 WHERE winning_driver = "emerson fittipaldi"
###context:CREATE TABLE table_name_97 (circuit VARCHAR, pole_position VARCHAR) ###human: Which Circuit has a Pole position of andré ribeiro? ###assistant: SELECT circuit FROM table_name_97 WHERE pole_position = "andré ribeiro"
###context:CREATE TABLE table_name_15 (circuit VARCHAR, winning_driver VARCHAR) ###human: Which Circuit has a Winning driver of scott pruett? ###assistant: SELECT circuit FROM table_name_15 WHERE winning_driver = "scott pruett"
###context:CREATE TABLE table_name_46 (winning_driver VARCHAR, pole_position VARCHAR) ###human: Who's the Winning driver with a Pole position of bryan herta? ###assistant: SELECT winning_driver FROM table_name_46 WHERE pole_position = "bryan herta"
###context:CREATE TABLE table_name_65 (date VARCHAR, city_location VARCHAR) ###human: Which Date had a City/Location of vancouver, british columbia? ###assistant: SELECT date FROM table_name_65 WHERE city_location = "vancouver, british columbia"
###context:CREATE TABLE table_name_81 (winning_team VARCHAR, pole_position VARCHAR, date VARCHAR) ###human: Who's the Winning team with a Pole position of robby gordon, and a Date of june 11? ###assistant: SELECT winning_team FROM table_name_81 WHERE pole_position = "robby gordon" AND date = "june 11"
###context:CREATE TABLE table_name_56 (subject INTEGER, plural VARCHAR) ###human: What subject has a plural of am(ô)ra (we)? ###assistant: SELECT AVG(subject) FROM table_name_56 WHERE plural = "am(ô)ra (we)"
###context:CREATE TABLE table_name_83 (round VARCHAR, college VARCHAR) ###human: What round was the player drafted from mississippi valley state? ###assistant: SELECT round FROM table_name_83 WHERE college = "mississippi valley state"
###context:CREATE TABLE table_name_13 (college VARCHAR, position VARCHAR) ###human: What college was the draft pick from who plays center position? ###assistant: SELECT college FROM table_name_13 WHERE position = "center"
###context:CREATE TABLE table_name_39 (record VARCHAR, opponent VARCHAR) ###human: What is the record of the game with the toronto huskies as the opponent? ###assistant: SELECT record FROM table_name_39 WHERE opponent = "toronto huskies"
###context:CREATE TABLE table_name_53 (opponent VARCHAR, date VARCHAR) ###human: Who is the opponent on November 14? ###assistant: SELECT opponent FROM table_name_53 WHERE date = "november 14"
###context:CREATE TABLE table_name_46 (record VARCHAR, opponent VARCHAR, game VARCHAR, location VARCHAR) ###human: What is the record of the game with a game number greater than 7 at boston garden with the providence steam rollers as the opponent? ###assistant: SELECT record FROM table_name_46 WHERE game > 7 AND location = "boston garden" AND opponent = "providence steam rollers"
###context:CREATE TABLE table_name_69 (pick INTEGER, player VARCHAR, round VARCHAR) ###human: What pick in round 5 did the 49ers pick Jim Pilot? ###assistant: SELECT SUM(pick) FROM table_name_69 WHERE player = "jim pilot" AND round > 5
###context:CREATE TABLE table_name_64 (pick VARCHAR, round VARCHAR, school_club_team VARCHAR) ###human: What pick in a round earlier than 4 did UCLA choose their pick? ###assistant: SELECT pick FROM table_name_64 WHERE round < 4 AND school_club_team = "ucla"
###context:CREATE TABLE table_name_45 (position VARCHAR, pick VARCHAR) ###human: What position did pick 36 play? ###assistant: SELECT position FROM table_name_45 WHERE pick = 36
###context:CREATE TABLE table_name_40 (owner VARCHAR, winner VARCHAR) ###human: Who is the owner of Miss Terrible? ###assistant: SELECT owner FROM table_name_40 WHERE winner = "miss terrible"
###context:CREATE TABLE table_name_82 (year INTEGER, time VARCHAR) ###human: What is the most recent year that had a time of 1:36.69? ###assistant: SELECT MAX(year) FROM table_name_82 WHERE time = "1:36.69"
###context:CREATE TABLE table_name_63 (time VARCHAR, trainer VARCHAR) ###human: What time does the trainer, Todd Pletcher have? ###assistant: SELECT time FROM table_name_63 WHERE trainer = "todd pletcher"
###context:CREATE TABLE table_name_68 (year INTEGER, winner VARCHAR) ###human: What is the most recent year that Iftiraas was the winner? ###assistant: SELECT MAX(year) FROM table_name_68 WHERE winner = "iftiraas"
###context:CREATE TABLE table_name_25 (sport VARCHAR, venue VARCHAR) ###human: What sport was played at the bosse field? ###assistant: SELECT sport FROM table_name_25 WHERE venue = "bosse field"
###context:CREATE TABLE table_name_26 (sport VARCHAR, played VARCHAR) ###human: What sport was played between the years of 2008-2010? ###assistant: SELECT sport FROM table_name_26 WHERE played = "2008-2010"
###context:CREATE TABLE table_name_17 (venue VARCHAR, team VARCHAR) ###human: What venue did the team, evansville bluecats play on? ###assistant: SELECT venue FROM table_name_17 WHERE team = "evansville bluecats"
###context:CREATE TABLE table_name_75 (team VARCHAR, played VARCHAR) ###human: What team played between the years of 2008-2010? ###assistant: SELECT team FROM table_name_75 WHERE played = "2008-2010"
###context:CREATE TABLE table_name_33 (score VARCHAR, player VARCHAR) ###human: Name the Score of craig stadler? ###assistant: SELECT score FROM table_name_33 WHERE player = "craig stadler"
###context:CREATE TABLE table_name_45 (score VARCHAR, place VARCHAR, player VARCHAR) ###human: Name the Score that has a Place of t5 of tom watson? ###assistant: SELECT score FROM table_name_45 WHERE place = "t5" AND player = "tom watson"
###context:CREATE TABLE table_name_83 (place VARCHAR, score VARCHAR) ###human: Name the Place with a Score of 72-68=140? ###assistant: SELECT place FROM table_name_83 WHERE score = 72 - 68 = 140
###context:CREATE TABLE table_name_13 (score VARCHAR, country VARCHAR, player VARCHAR) ###human: Name the Score of jack nicklaus, united states, ? ###assistant: SELECT score FROM table_name_13 WHERE country = "united states" AND player = "jack nicklaus"
###context:CREATE TABLE table_name_35 (place VARCHAR, player VARCHAR) ###human: Name the Place of seve ballesteros? ###assistant: SELECT place FROM table_name_35 WHERE player = "seve ballesteros"
###context:CREATE TABLE table_name_37 (no_9 VARCHAR, no_4 VARCHAR, no_6 VARCHAR) ###human: Who was No. 9 when Ava was No. 4 and Addison was No. 6? ###assistant: SELECT no_9 FROM table_name_37 WHERE no_4 = "ava" AND no_6 = "addison"
###context:CREATE TABLE table_name_78 (no_6 VARCHAR, no_2 VARCHAR, no_3 VARCHAR) ###human: What was the No. 6 name when Emma was No. 2 and Sophia was No. 3? ###assistant: SELECT no_6 FROM table_name_78 WHERE no_2 = "emma" AND no_3 = "sophia"
###context:CREATE TABLE table_name_64 (no_8 VARCHAR, no_9 VARCHAR, no_7 VARCHAR) ###human: What was the No. 8 name when Chloe was No. 9 and Abigail was No. 7? ###assistant: SELECT no_8 FROM table_name_64 WHERE no_9 = "chloe" AND no_7 = "abigail"
###context:CREATE TABLE table_name_83 (no_4 VARCHAR, no_5 VARCHAR, no_9 VARCHAR) ###human: What was the No. 4 name when Madison was No. 5 and Abigail was No. 9? ###assistant: SELECT no_4 FROM table_name_83 WHERE no_5 = "madison" AND no_9 = "abigail"
###context:CREATE TABLE table_name_66 (player VARCHAR, to_par VARCHAR) ###human: Which player had a to par score of +2? ###assistant: SELECT player FROM table_name_66 WHERE to_par = "+2"
###context:CREATE TABLE table_name_24 (code INTEGER, density__inh_km²_ VARCHAR, land_area__hectares_ VARCHAR) ###human: How many codes have a density of 621.68, and a Land area (hectares) larger than 75.28? ###assistant: SELECT SUM(code) FROM table_name_24 WHERE density__inh_km²_ = 621.68 AND land_area__hectares_ > 75.28
###context:CREATE TABLE table_name_33 (density__inh_km²_ INTEGER, land_area__hectares_ VARCHAR, code VARCHAR) ###human: What is the average density with a land area of 123.02, and a Code larger than 2356? ###assistant: SELECT AVG(density__inh_km²_) FROM table_name_33 WHERE land_area__hectares_ = 123.02 AND code > 2356
###context:CREATE TABLE table_name_29 (land_area__hectares_ INTEGER, density__inh_km²_ VARCHAR, population VARCHAR) ###human: What is the average land area with a density of 815.48, and a Population larger than 411? ###assistant: SELECT AVG(land_area__hectares_) FROM table_name_29 WHERE density__inh_km²_ = 815.48 AND population > 411
###context:CREATE TABLE table_name_10 (date VARCHAR, partnering VARCHAR, opponent_in_final VARCHAR) ###human: What is the Date, when Partnering is "Francesca Lubiani", and when Opponent in Final is "Yuliya Beygelzimer / Jennifer Hopkins"? ###assistant: SELECT date FROM table_name_10 WHERE partnering = "francesca lubiani" AND opponent_in_final = "yuliya beygelzimer / jennifer hopkins"
###context:CREATE TABLE table_name_50 (score VARCHAR, opponent_in_final VARCHAR, outcome VARCHAR, partnering VARCHAR) ###human: What is Score, when Outcome is "winner", when Partnering is "Nicole Sewell", and when Opponent in Final is "Victoria Davies / Kate Warne-Holland"? ###assistant: SELECT score FROM table_name_50 WHERE outcome = "winner" AND partnering = "nicole sewell" AND opponent_in_final = "victoria davies / kate warne-holland"
###context:CREATE TABLE table_name_32 (tie_no VARCHAR, away_team VARCHAR) ###human: What is Tie No., when Away Team is "Manchester United"? ###assistant: SELECT tie_no FROM table_name_32 WHERE away_team = "manchester united"
###context:CREATE TABLE table_name_90 (away_team VARCHAR, home_team VARCHAR, date VARCHAR) ###human: What is Away Team, when Home Team is "Ipswich Town", and when Date is "6 February 1986"? ###assistant: SELECT away_team FROM table_name_90 WHERE home_team = "ipswich town" AND date = "6 february 1986"
###context:CREATE TABLE table_name_53 (date VARCHAR, home_team VARCHAR) ###human: What is Date, when Home Team is "Luton Town"? ###assistant: SELECT date FROM table_name_53 WHERE home_team = "luton town"
###context:CREATE TABLE table_name_64 (away_team VARCHAR, date VARCHAR, tie_no VARCHAR) ###human: What is Away Team, when Date is "25 January 1986", and when Tie No is "6"? ###assistant: SELECT away_team FROM table_name_64 WHERE date = "25 january 1986" AND tie_no = "6"
###context:CREATE TABLE table_name_82 (college_junior_club_team__league_ VARCHAR, round INTEGER) ###human: WHAT IS THE LEAGUE WITH A ROUND LARGER THAN 6? ###assistant: SELECT college_junior_club_team__league_ FROM table_name_82 WHERE round > 6
###context:CREATE TABLE table_name_6 (round VARCHAR, player VARCHAR) ###human: WHAT IS THE ROUND FOR ZACH BOYCHUK? ###assistant: SELECT COUNT(round) FROM table_name_6 WHERE player = "zach boychuk"
###context:CREATE TABLE table_name_4 (position VARCHAR, player VARCHAR, nationality VARCHAR, round VARCHAR) ###human: WHAT IS THE POSITION FOR CANADA, ROUND SMALLER THAN 7, PLAYER ZACH BOYCHUK? ###assistant: SELECT position FROM table_name_4 WHERE nationality = "canada" AND round < 7 AND player = "zach boychuk"
###context:CREATE TABLE table_name_27 (date VARCHAR, week VARCHAR) ###human: What was the date of week 8? ###assistant: SELECT date FROM table_name_27 WHERE week = 8
###context:CREATE TABLE table_name_3 (result VARCHAR, date VARCHAR) ###human: What was the result of the September 8, 1985 game? ###assistant: SELECT result FROM table_name_3 WHERE date = "september 8, 1985"
###context:CREATE TABLE table_name_76 (date VARCHAR, bills_first_downs VARCHAR, opponent VARCHAR) ###human: Which date did the oakland raiders play as the opponent when the Bills first downs were under 28? ###assistant: SELECT date FROM table_name_76 WHERE bills_first_downs < 28 AND opponent = "oakland raiders"
###context:CREATE TABLE table_name_1 (paraguay_scorers VARCHAR, date VARCHAR) ###human: Who were the Paraguay scorers on June 15, 2008? ###assistant: SELECT paraguay_scorers FROM table_name_1 WHERE date = "june 15, 2008"
###context:CREATE TABLE table_name_56 (to_par VARCHAR, finish VARCHAR) ###human: What is the To par of the player with a t14 Finish? ###assistant: SELECT to_par FROM table_name_56 WHERE finish = "t14"
###context:CREATE TABLE table_name_35 (country VARCHAR, player VARCHAR) ###human: What country is player Raymond Floyd from? ###assistant: SELECT country FROM table_name_35 WHERE player = "raymond floyd"
###context:CREATE TABLE table_name_21 (year_s__won VARCHAR, country VARCHAR, to_par VARCHAR) ###human: What is the Year(s) won from the United States as country with a To Par of +4? ###assistant: SELECT year_s__won FROM table_name_21 WHERE country = "united states" AND to_par = "+4"
###context:CREATE TABLE table_name_10 (player VARCHAR, country VARCHAR, place VARCHAR) ###human: Who is the player from the United States and a place of t2? ###assistant: SELECT player FROM table_name_10 WHERE country = "united states" AND place = "t2"
###context:CREATE TABLE table_name_89 (category_1 INTEGER, category_3 VARCHAR) ###human: What's the sum of all values in category 1 when category 3 is equal to 300? ###assistant: SELECT SUM(category_1) FROM table_name_89 WHERE category_3 = "300"
###context:CREATE TABLE table_name_77 (category_3 VARCHAR, category_1 VARCHAR) ###human: If category 1 is 0.05, what is category 3? ###assistant: SELECT category_3 FROM table_name_77 WHERE category_1 = 0.05
###context:CREATE TABLE table_name_53 (player VARCHAR, average VARCHAR) ###human: Which player has an average of 38.22? ###assistant: SELECT player FROM table_name_53 WHERE average = 38.22
###context:CREATE TABLE table_name_35 (matches INTEGER, average VARCHAR, best_bowling VARCHAR, wickets VARCHAR, team VARCHAR) ###human: What is the highest number of matches for Australia when the wickets are more than 13, the average is less than 23.33, and the best bowling is 5/36? ###assistant: SELECT MAX(matches) FROM table_name_35 WHERE wickets > 13 AND team = "australia" AND best_bowling = "5/36" AND average < 23.33
###context:CREATE TABLE table_name_57 (average VARCHAR, matches VARCHAR, best_bowling VARCHAR, team VARCHAR, wickets VARCHAR) ###human: What is the total average for the England team when the wickets are less than 18, the best bowling is 4/138, and there are less than 3 matches? ###assistant: SELECT COUNT(average) FROM table_name_57 WHERE team = "england" AND wickets < 18 AND best_bowling = "4/138" AND matches < 3
###context:CREATE TABLE table_name_48 (to_par VARCHAR, money___$__ INTEGER) ###human: Which To par has a Money ($) larger than 5,500? ###assistant: SELECT to_par FROM table_name_48 WHERE money___$__ > 5 OFFSET 500
###context:CREATE TABLE table_name_78 (score VARCHAR, place VARCHAR) ###human: Which Score has a Place of 4? ###assistant: SELECT score FROM table_name_78 WHERE place = "4"
###context:CREATE TABLE table_name_98 (ethnic_group VARCHAR, other VARCHAR) ###human: Which ethnic group has 5% of people categorizing religion as other? ###assistant: SELECT ethnic_group FROM table_name_98 WHERE other = "5%"
###context:CREATE TABLE table_name_58 (ethnic_group VARCHAR, muslims VARCHAR) ###human: Which ehtinc group consists of 93% muslims? ###assistant: SELECT ethnic_group FROM table_name_58 WHERE muslims = "93%"
###context:CREATE TABLE table_name_87 (venue VARCHAR, score VARCHAR, result VARCHAR) ###human: What is the Venue when the score was 1 – 1, and the result was 2 – 2? ###assistant: SELECT venue FROM table_name_87 WHERE score = "1 – 1" AND result = "2 – 2"
###context:CREATE TABLE table_name_85 (score VARCHAR, competition VARCHAR) ###human: What is the score of the 2006 Fifa World Cup Qualification? ###assistant: SELECT score FROM table_name_85 WHERE competition = "2006 fifa world cup qualification"
###context:CREATE TABLE table_name_66 (venue VARCHAR, score VARCHAR) ###human: What venue was the game held at when the Score was 3 – 0? ###assistant: SELECT venue FROM table_name_66 WHERE score = "3 – 0"
###context:CREATE TABLE table_name_65 (result VARCHAR, competition VARCHAR, score VARCHAR) ###human: What is the result of the game when the competition was a friendly match, and the Score was 1 – 1? ###assistant: SELECT result FROM table_name_65 WHERE competition = "friendly match" AND score = "1 – 1"
###context:CREATE TABLE table_name_85 (race_1 VARCHAR, race_4 VARCHAR) ###human: What is Race 1, when Race 4 is 1? ###assistant: SELECT race_1 FROM table_name_85 WHERE race_4 = "1"
###context:CREATE TABLE table_name_6 (race_2 VARCHAR, race_1 VARCHAR) ###human: What is Race 2, when Race 1 is 30? ###assistant: SELECT race_2 FROM table_name_6 WHERE race_1 = "30"
###context:CREATE TABLE table_name_2 (race_2 VARCHAR, driver VARCHAR) ###human: What is Race 2, when Driver is John Faulkner? ###assistant: SELECT race_2 FROM table_name_2 WHERE driver = "john faulkner"
###context:CREATE TABLE table_name_48 (driver VARCHAR, race_2 VARCHAR) ###human: What is Driver, when Race 2 is 14? ###assistant: SELECT driver FROM table_name_48 WHERE race_2 = "14"
###context:CREATE TABLE table_name_51 (race_4 VARCHAR, race_1 VARCHAR) ###human: What is Race 4, when Race 1 is 28? ###assistant: SELECT race_4 FROM table_name_51 WHERE race_1 = "28"
###context:CREATE TABLE table_name_40 (race_2 VARCHAR, race_4 VARCHAR) ###human: What is Race 2, when Race 4 is 28? ###assistant: SELECT race_2 FROM table_name_40 WHERE race_4 = "28"