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