question stringlengths 12 244 | context stringlengths 27 489 | answer stringlengths 18 557 | text stringlengths 114 1.06k |
|---|---|---|---|
What is the rank of player Jason Dunstall? | CREATE TABLE table_name_55 (rank VARCHAR, player VARCHAR) | SELECT rank FROM table_name_55 WHERE player = "jason dunstall" | ### Context: CREATE TABLE table_name_55 (rank VARCHAR, player VARCHAR) ### Question: What is the rank of player Jason Dunstall? ### Answer: SELECT rank FROM table_name_55 WHERE player = "jason dunstall" |
Which player has 1299 goals? | CREATE TABLE table_name_6 (player VARCHAR, goals VARCHAR) | SELECT player FROM table_name_6 WHERE goals = "1299" | ### Context: CREATE TABLE table_name_6 (player VARCHAR, goals VARCHAR) ### Question: Which player has 1299 goals? ### Answer: SELECT player FROM table_name_6 WHERE goals = "1299" |
In what club(s) does Tony Lockett play? | CREATE TABLE table_name_11 (club_clubs VARCHAR, player VARCHAR) | SELECT club_clubs FROM table_name_11 WHERE player = "tony lockett" | ### Context: CREATE TABLE table_name_11 (club_clubs VARCHAR, player VARCHAR) ### Question: In what club(s) does Tony Lockett play? ### Answer: SELECT club_clubs FROM table_name_11 WHERE player = "tony lockett" |
Which manager has Manchester City as the team? | CREATE TABLE table_name_14 (manager VARCHAR, team VARCHAR) | SELECT manager FROM table_name_14 WHERE team = "manchester city" | ### Context: CREATE TABLE table_name_14 (manager VARCHAR, team VARCHAR) ### Question: Which manager has Manchester City as the team? ### Answer: SELECT manager FROM table_name_14 WHERE team = "manchester city" |
Which manager has sheffield wednesday as the team? | CREATE TABLE table_name_7 (manager VARCHAR, team VARCHAR) | SELECT manager FROM table_name_7 WHERE team = "sheffield wednesday" | ### Context: CREATE TABLE table_name_7 (manager VARCHAR, team VARCHAR) ### Question: Which manager has sheffield wednesday as the team? ### Answer: SELECT manager FROM table_name_7 WHERE team = "sheffield wednesday" |
Which team has george graham as the manager? | CREATE TABLE table_name_77 (team VARCHAR, manager VARCHAR) | SELECT team FROM table_name_77 WHERE manager = "george graham" | ### Context: CREATE TABLE table_name_77 (team VARCHAR, manager VARCHAR) ### Question: Which team has george graham as the manager? ### Answer: SELECT team FROM table_name_77 WHERE manager = "george graham" |
What is the kit manufacturer that has billy bonds as the manager? | CREATE TABLE table_name_36 (kit_manufacturer VARCHAR, manager VARCHAR) | SELECT kit_manufacturer FROM table_name_36 WHERE manager = "billy bonds" | ### Context: CREATE TABLE table_name_36 (kit_manufacturer VARCHAR, manager VARCHAR) ### Question: What is the kit manufacturer that has billy bonds as the manager? ### Answer: SELECT kit_manufacturer FROM table_name_36 WHERE manager = "billy bonds" |
Which captain has billy bonds as the manager? | CREATE TABLE table_name_34 (captain VARCHAR, manager VARCHAR) | SELECT captain FROM table_name_34 WHERE manager = "billy bonds" | ### Context: CREATE TABLE table_name_34 (captain VARCHAR, manager VARCHAR) ### Question: Which captain has billy bonds as the manager? ### Answer: SELECT captain FROM table_name_34 WHERE manager = "billy bonds" |
Which captain has howard wilkinson as the manager? | CREATE TABLE table_name_52 (captain VARCHAR, manager VARCHAR) | SELECT captain FROM table_name_52 WHERE manager = "howard wilkinson" | ### Context: CREATE TABLE table_name_52 (captain VARCHAR, manager VARCHAR) ### Question: Which captain has howard wilkinson as the manager? ### Answer: SELECT captain FROM table_name_52 WHERE manager = "howard wilkinson" |
What was the loss of the Brewers game when the record was 46-48? | CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR) | SELECT loss FROM table_name_90 WHERE record = "46-48" | ### Context: CREATE TABLE table_name_90 (loss VARCHAR, record VARCHAR) ### Question: What was the loss of the Brewers game when the record was 46-48? ### Answer: SELECT loss FROM table_name_90 WHERE record = "46-48" |
What was the record at the game that had a score of 7-10? | CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR) | SELECT record FROM table_name_76 WHERE score = "7-10" | ### Context: CREATE TABLE table_name_76 (record VARCHAR, score VARCHAR) ### Question: What was the record at the game that had a score of 7-10? ### Answer: SELECT record FROM table_name_76 WHERE score = "7-10" |
Which chassis is more recent than 1972 and has more than 0 Pts. ? | CREATE TABLE table_name_53 (chassis VARCHAR, year VARCHAR, pts VARCHAR) | SELECT chassis FROM table_name_53 WHERE year > 1972 AND pts > 0 | ### Context: CREATE TABLE table_name_53 (chassis VARCHAR, year VARCHAR, pts VARCHAR) ### Question: Which chassis is more recent than 1972 and has more than 0 Pts. ? ### Answer: SELECT chassis FROM table_name_53 WHERE year > 1972 AND pts > 0 |
Which engine from 1973 has a Brabham bt37 chassis? | CREATE TABLE table_name_92 (engine VARCHAR, year VARCHAR, chassis VARCHAR) | SELECT engine FROM table_name_92 WHERE year = 1973 AND chassis = "brabham bt37" | ### Context: CREATE TABLE table_name_92 (engine VARCHAR, year VARCHAR, chassis VARCHAR) ### Question: Which engine from 1973 has a Brabham bt37 chassis? ### Answer: SELECT engine FROM table_name_92 WHERE year = 1973 AND chassis = "brabham bt37" |
What score to highest to par did Mike Weir achieve? | CREATE TABLE table_name_33 (to_par INTEGER, player VARCHAR) | SELECT MAX(to_par) FROM table_name_33 WHERE player = "mike weir" | ### Context: CREATE TABLE table_name_33 (to_par INTEGER, player VARCHAR) ### Question: What score to highest to par did Mike Weir achieve? ### Answer: SELECT MAX(to_par) FROM table_name_33 WHERE player = "mike weir" |
Who had a score of 70-73-69=212? | CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR) | SELECT player FROM table_name_91 WHERE score = 70 - 73 - 69 = 212 | ### Context: CREATE TABLE table_name_91 (player VARCHAR, score VARCHAR) ### Question: Who had a score of 70-73-69=212? ### Answer: SELECT player FROM table_name_91 WHERE score = 70 - 73 - 69 = 212 |
What player was place of t1 in To Par and had a score of 70-73-69=212? | CREATE TABLE table_name_81 (to_par VARCHAR, place VARCHAR, score VARCHAR) | SELECT to_par FROM table_name_81 WHERE place = "t1" AND score = 70 - 73 - 69 = 212 | ### Context: CREATE TABLE table_name_81 (to_par VARCHAR, place VARCHAR, score VARCHAR) ### Question: What player was place of t1 in To Par and had a score of 70-73-69=212? ### Answer: SELECT to_par FROM table_name_81 WHERE place = "t1" AND score = 70 - 73 - 69 = 212 |
What score to par did Mike Weir have? | CREATE TABLE table_name_69 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_69 WHERE player = "mike weir" | ### Context: CREATE TABLE table_name_69 (to_par VARCHAR, player VARCHAR) ### Question: What score to par did Mike Weir have? ### Answer: SELECT to_par FROM table_name_69 WHERE player = "mike weir" |
What place was the scorer of 67-74-73=214? | CREATE TABLE table_name_92 (place VARCHAR, score VARCHAR) | SELECT place FROM table_name_92 WHERE score = 67 - 74 - 73 = 214 | ### Context: CREATE TABLE table_name_92 (place VARCHAR, score VARCHAR) ### Question: What place was the scorer of 67-74-73=214? ### Answer: SELECT place FROM table_name_92 WHERE score = 67 - 74 - 73 = 214 |
What country does Rocco Mediate play for? | CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_77 WHERE player = "rocco mediate" | ### Context: CREATE TABLE table_name_77 (country VARCHAR, player VARCHAR) ### Question: What country does Rocco Mediate play for? ### Answer: SELECT country FROM table_name_77 WHERE player = "rocco mediate" |
What is Rocco Mediate's par? | CREATE TABLE table_name_17 (to_par VARCHAR, player VARCHAR) | SELECT to_par FROM table_name_17 WHERE player = "rocco mediate" | ### Context: CREATE TABLE table_name_17 (to_par VARCHAR, player VARCHAR) ### Question: What is Rocco Mediate's par? ### Answer: SELECT to_par FROM table_name_17 WHERE player = "rocco mediate" |
What country is Chad Campbell from? | CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_49 WHERE player = "chad campbell" | ### Context: CREATE TABLE table_name_49 (country VARCHAR, player VARCHAR) ### Question: What country is Chad Campbell from? ### Answer: SELECT country FROM table_name_49 WHERE player = "chad campbell" |
What was the score for Spain? | CREATE TABLE table_name_28 (score VARCHAR, country VARCHAR) | SELECT score FROM table_name_28 WHERE country = "spain" | ### Context: CREATE TABLE table_name_28 (score VARCHAR, country VARCHAR) ### Question: What was the score for Spain? ### Answer: SELECT score FROM table_name_28 WHERE country = "spain" |
Where is Fred Couples from? | CREATE TABLE table_name_71 (country VARCHAR, player VARCHAR) | SELECT country FROM table_name_71 WHERE player = "fred couples" | ### Context: CREATE TABLE table_name_71 (country VARCHAR, player VARCHAR) ### Question: Where is Fred Couples from? ### Answer: SELECT country FROM table_name_71 WHERE player = "fred couples" |
what's the record on july 10? | CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_65 WHERE date = "july 10" | ### Context: CREATE TABLE table_name_65 (record VARCHAR, date VARCHAR) ### Question: what's the record on july 10? ### Answer: SELECT record FROM table_name_65 WHERE date = "july 10" |
Which kingdom has Suin as its capital? | CREATE TABLE table_name_65 (name_of_kingdom VARCHAR, capital VARCHAR) | SELECT name_of_kingdom FROM table_name_65 WHERE capital = "suin" | ### Context: CREATE TABLE table_name_65 (name_of_kingdom VARCHAR, capital VARCHAR) ### Question: Which kingdom has Suin as its capital? ### Answer: SELECT name_of_kingdom FROM table_name_65 WHERE capital = "suin" |
What week did the September 9, 1967 game occur on? | CREATE TABLE table_name_25 (week INTEGER, date VARCHAR) | SELECT MIN(week) FROM table_name_25 WHERE date = "september 9, 1967" | ### Context: CREATE TABLE table_name_25 (week INTEGER, date VARCHAR) ### Question: What week did the September 9, 1967 game occur on? ### Answer: SELECT MIN(week) FROM table_name_25 WHERE date = "september 9, 1967" |
What was the date of the game after week 5 against the Houston Oilers? | CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR) | SELECT date FROM table_name_87 WHERE week > 5 AND opponent = "houston oilers" | ### Context: CREATE TABLE table_name_87 (date VARCHAR, week VARCHAR, opponent VARCHAR) ### Question: What was the date of the game after week 5 against the Houston Oilers? ### Answer: SELECT date FROM table_name_87 WHERE week > 5 AND opponent = "houston oilers" |
Which week was the game on December 14, 1967? | CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR) | SELECT week FROM table_name_27 WHERE date = "december 14, 1967" | ### Context: CREATE TABLE table_name_27 (week VARCHAR, date VARCHAR) ### Question: Which week was the game on December 14, 1967? ### Answer: SELECT week FROM table_name_27 WHERE date = "december 14, 1967" |
Who was the opponent after week 9 with an attendance of 44,020? | CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) | SELECT opponent FROM table_name_96 WHERE week > 9 AND attendance = "44,020" | ### Context: CREATE TABLE table_name_96 (opponent VARCHAR, week VARCHAR, attendance VARCHAR) ### Question: Who was the opponent after week 9 with an attendance of 44,020? ### Answer: SELECT opponent FROM table_name_96 WHERE week > 9 AND attendance = "44,020" |
What team played against Al-Ismaily (team 1)? | CREATE TABLE table_name_79 (team_2 VARCHAR, team_1 VARCHAR) | SELECT team_2 FROM table_name_79 WHERE team_1 = "al-ismaily" | ### Context: CREATE TABLE table_name_79 (team_2 VARCHAR, team_1 VARCHAR) ### Question: What team played against Al-Ismaily (team 1)? ### Answer: SELECT team_2 FROM table_name_79 WHERE team_1 = "al-ismaily" |
When Kabwe Warriors (team 1) played, what was the result of the 1st leg? | CREATE TABLE table_name_66 (team_1 VARCHAR) | SELECT 1 AS st_leg FROM table_name_66 WHERE team_1 = "kabwe warriors" | ### Context: CREATE TABLE table_name_66 (team_1 VARCHAR) ### Question: When Kabwe Warriors (team 1) played, what was the result of the 1st leg? ### Answer: SELECT 1 AS st_leg FROM table_name_66 WHERE team_1 = "kabwe warriors" |
What team played against Hafia FC (team 2)? | CREATE TABLE table_name_36 (team_1 VARCHAR, team_2 VARCHAR) | SELECT team_1 FROM table_name_36 WHERE team_2 = "hafia fc" | ### Context: CREATE TABLE table_name_36 (team_1 VARCHAR, team_2 VARCHAR) ### Question: What team played against Hafia FC (team 2)? ### Answer: SELECT team_1 FROM table_name_36 WHERE team_2 = "hafia fc" |
For the game that was played on week 2, what is the record? | CREATE TABLE table_name_24 (record VARCHAR, week VARCHAR) | SELECT record FROM table_name_24 WHERE week = 2 | ### Context: CREATE TABLE table_name_24 (record VARCHAR, week VARCHAR) ### Question: For the game that was played on week 2, what is the record? ### Answer: SELECT record FROM table_name_24 WHERE week = 2 |
What was the result of the game that was played on week 15? | CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR) | SELECT result FROM table_name_95 WHERE week = 15 | ### Context: CREATE TABLE table_name_95 (result VARCHAR, week VARCHAR) ### Question: What was the result of the game that was played on week 15? ### Answer: SELECT result FROM table_name_95 WHERE week = 15 |
How many carries have an average under 8.7 and touchdowns of 72? | CREATE TABLE table_name_37 (carries VARCHAR, average VARCHAR, touchdowns VARCHAR) | SELECT COUNT(carries) FROM table_name_37 WHERE average < 8.7 AND touchdowns = 72 | ### Context: CREATE TABLE table_name_37 (carries VARCHAR, average VARCHAR, touchdowns VARCHAR) ### Question: How many carries have an average under 8.7 and touchdowns of 72? ### Answer: SELECT COUNT(carries) FROM table_name_37 WHERE average < 8.7 AND touchdowns = 72 |
What is the average number of carries that have more than 72 touchdowns? | CREATE TABLE table_name_36 (carries INTEGER, touchdowns INTEGER) | SELECT AVG(carries) FROM table_name_36 WHERE touchdowns > 72 | ### Context: CREATE TABLE table_name_36 (carries INTEGER, touchdowns INTEGER) ### Question: What is the average number of carries that have more than 72 touchdowns? ### Answer: SELECT AVG(carries) FROM table_name_36 WHERE touchdowns > 72 |
What is the most number of touchdowns that have fewer than 105 points, averages over 4.7, and fewer than 487 rushing yards? | CREATE TABLE table_name_77 (touchdowns INTEGER, rushing_yards VARCHAR, points VARCHAR, average VARCHAR) | SELECT MAX(touchdowns) FROM table_name_77 WHERE points < 105 AND average > 4.7 AND rushing_yards < 487 | ### Context: CREATE TABLE table_name_77 (touchdowns INTEGER, rushing_yards VARCHAR, points VARCHAR, average VARCHAR) ### Question: What is the most number of touchdowns that have fewer than 105 points, averages over 4.7, and fewer than 487 rushing yards? ### Answer: SELECT MAX(touchdowns) FROM table_name_77 WHERE point... |
What is the sum of carries associated with 80 points and fewer than 16 touchdowns? | CREATE TABLE table_name_98 (carries INTEGER, points VARCHAR, touchdowns VARCHAR) | SELECT SUM(carries) FROM table_name_98 WHERE points = 80 AND touchdowns < 16 | ### Context: CREATE TABLE table_name_98 (carries INTEGER, points VARCHAR, touchdowns VARCHAR) ### Question: What is the sum of carries associated with 80 points and fewer than 16 touchdowns? ### Answer: SELECT SUM(carries) FROM table_name_98 WHERE points = 80 AND touchdowns < 16 |
What is the total number of rushing yards associated with averages over 8.4 and fewer than 54 carries? | CREATE TABLE table_name_27 (rushing_yards VARCHAR, average VARCHAR, carries VARCHAR) | SELECT COUNT(rushing_yards) FROM table_name_27 WHERE average > 8.4 AND carries < 54 | ### Context: CREATE TABLE table_name_27 (rushing_yards VARCHAR, average VARCHAR, carries VARCHAR) ### Question: What is the total number of rushing yards associated with averages over 8.4 and fewer than 54 carries? ### Answer: SELECT COUNT(rushing_yards) FROM table_name_27 WHERE average > 8.4 AND carries < 54 |
Which record is dated April 8? | CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR) | SELECT record FROM table_name_60 WHERE date = "april 8" | ### Context: CREATE TABLE table_name_60 (record VARCHAR, date VARCHAR) ### Question: Which record is dated April 8? ### Answer: SELECT record FROM table_name_60 WHERE date = "april 8" |
What is the score for the game that has an attendance of 5,298? | CREATE TABLE table_name_9 (score VARCHAR, attendance VARCHAR) | SELECT score FROM table_name_9 WHERE attendance = "5,298" | ### Context: CREATE TABLE table_name_9 (score VARCHAR, attendance VARCHAR) ### Question: What is the score for the game that has an attendance of 5,298? ### Answer: SELECT score FROM table_name_9 WHERE attendance = "5,298" |
What was the date for the game that had an attendance of 10,101? | CREATE TABLE table_name_45 (date VARCHAR, attendance VARCHAR) | SELECT date FROM table_name_45 WHERE attendance = "10,101" | ### Context: CREATE TABLE table_name_45 (date VARCHAR, attendance VARCHAR) ### Question: What was the date for the game that had an attendance of 10,101? ### Answer: SELECT date FROM table_name_45 WHERE attendance = "10,101" |
What is the record for the game with an attendance of 11,141? | CREATE TABLE table_name_26 (record VARCHAR, attendance VARCHAR) | SELECT record FROM table_name_26 WHERE attendance = "11,141" | ### Context: CREATE TABLE table_name_26 (record VARCHAR, attendance VARCHAR) ### Question: What is the record for the game with an attendance of 11,141? ### Answer: SELECT record FROM table_name_26 WHERE attendance = "11,141" |
What's the lowest number of points with fewer than 8 losses and fewer than 24 games for the vancouver burrards? | CREATE TABLE table_name_66 (points INTEGER, games VARCHAR, losses VARCHAR, team_name VARCHAR) | SELECT MIN(points) FROM table_name_66 WHERE losses < 8 AND team_name = "vancouver burrards" AND games < 24 | ### Context: CREATE TABLE table_name_66 (points INTEGER, games VARCHAR, losses VARCHAR, team_name VARCHAR) ### Question: What's the lowest number of points with fewer than 8 losses and fewer than 24 games for the vancouver burrards? ### Answer: SELECT MIN(points) FROM table_name_66 WHERE losses < 8 AND team_name = "van... |
What's the total number of points when the vancouver carlings have fewer than 12 losses and more than 32 games? | CREATE TABLE table_name_1 (points VARCHAR, games VARCHAR, losses VARCHAR, team_name VARCHAR) | SELECT COUNT(points) FROM table_name_1 WHERE losses < 12 AND team_name = "vancouver carlings" AND games > 32 | ### Context: CREATE TABLE table_name_1 (points VARCHAR, games VARCHAR, losses VARCHAR, team_name VARCHAR) ### Question: What's the total number of points when the vancouver carlings have fewer than 12 losses and more than 32 games? ### Answer: SELECT COUNT(points) FROM table_name_1 WHERE losses < 12 AND team_name = "va... |
What's the total number of points when the vancouver burrards have fewer than 9 losses and more than 24 games? | CREATE TABLE table_name_18 (points VARCHAR, team_name VARCHAR, losses VARCHAR, games VARCHAR) | SELECT COUNT(points) FROM table_name_18 WHERE losses < 9 AND games > 24 AND team_name = "vancouver burrards" | ### Context: CREATE TABLE table_name_18 (points VARCHAR, team_name VARCHAR, losses VARCHAR, games VARCHAR) ### Question: What's the total number of points when the vancouver burrards have fewer than 9 losses and more than 24 games? ### Answer: SELECT COUNT(points) FROM table_name_18 WHERE losses < 9 AND games > 24 AND ... |
What's the sum of points for the 1963 season when there are more than 30 games? | CREATE TABLE table_name_8 (points INTEGER, season VARCHAR, games VARCHAR) | SELECT SUM(points) FROM table_name_8 WHERE season = "1963" AND games > 30 | ### Context: CREATE TABLE table_name_8 (points INTEGER, season VARCHAR, games VARCHAR) ### Question: What's the sum of points for the 1963 season when there are more than 30 games? ### Answer: SELECT SUM(points) FROM table_name_8 WHERE season = "1963" AND games > 30 |
What's the total number of games with more than 20 points for the 1976 season? | CREATE TABLE table_name_89 (games VARCHAR, season VARCHAR, points VARCHAR) | SELECT COUNT(games) FROM table_name_89 WHERE season = "1976" AND points > 20 | ### Context: CREATE TABLE table_name_89 (games VARCHAR, season VARCHAR, points VARCHAR) ### Question: What's the total number of games with more than 20 points for the 1976 season? ### Answer: SELECT COUNT(games) FROM table_name_89 WHERE season = "1976" AND points > 20 |
What's the total losses for the vancouver burrards in the 1947 season with fewer than 24 games? | CREATE TABLE table_name_8 (losses VARCHAR, games VARCHAR, team_name VARCHAR, season VARCHAR) | SELECT COUNT(losses) FROM table_name_8 WHERE team_name = "vancouver burrards" AND season = "1947" AND games < 24 | ### Context: CREATE TABLE table_name_8 (losses VARCHAR, games VARCHAR, team_name VARCHAR, season VARCHAR) ### Question: What's the total losses for the vancouver burrards in the 1947 season with fewer than 24 games? ### Answer: SELECT COUNT(losses) FROM table_name_8 WHERE team_name = "vancouver burrards" AND season = "... |
How many tries against did the club with 1 drawn and 41 points have? | CREATE TABLE table_name_19 (tries_against VARCHAR, drawn VARCHAR, points VARCHAR) | SELECT tries_against FROM table_name_19 WHERE drawn = "1" AND points = "41" | ### Context: CREATE TABLE table_name_19 (tries_against VARCHAR, drawn VARCHAR, points VARCHAR) ### Question: How many tries against did the club with 1 drawn and 41 points have? ### Answer: SELECT tries_against FROM table_name_19 WHERE drawn = "1" AND points = "41" |
Which club has 275 points? | CREATE TABLE table_name_16 (club VARCHAR, points_for VARCHAR) | SELECT club FROM table_name_16 WHERE points_for = "275" | ### Context: CREATE TABLE table_name_16 (club VARCHAR, points_for VARCHAR) ### Question: Which club has 275 points? ### Answer: SELECT club FROM table_name_16 WHERE points_for = "275" |
How many points against did the club with a losing bonus of 3 and 84 tries have? | CREATE TABLE table_name_68 (points_against VARCHAR, losing_bonus VARCHAR, tries_for VARCHAR) | SELECT points_against FROM table_name_68 WHERE losing_bonus = "3" AND tries_for = "84" | ### Context: CREATE TABLE table_name_68 (points_against VARCHAR, losing_bonus VARCHAR, tries_for VARCHAR) ### Question: How many points against did the club with a losing bonus of 3 and 84 tries have? ### Answer: SELECT points_against FROM table_name_68 WHERE losing_bonus = "3" AND tries_for = "84" |
Which club has 40 tries for? | CREATE TABLE table_name_2 (club VARCHAR, tries_for VARCHAR) | SELECT club FROM table_name_2 WHERE tries_for = "40" | ### Context: CREATE TABLE table_name_2 (club VARCHAR, tries_for VARCHAR) ### Question: Which club has 40 tries for? ### Answer: SELECT club FROM table_name_2 WHERE tries_for = "40" |
How many tries did the club with a try bonus of correct as of 2 June 2009 have? | CREATE TABLE table_name_45 (tries_for VARCHAR, try_bonus VARCHAR) | SELECT tries_for FROM table_name_45 WHERE try_bonus = "correct as of 2 june 2009" | ### Context: CREATE TABLE table_name_45 (tries_for VARCHAR, try_bonus VARCHAR) ### Question: How many tries did the club with a try bonus of correct as of 2 June 2009 have? ### Answer: SELECT tries_for FROM table_name_45 WHERE try_bonus = "correct as of 2 june 2009" |
How many tries did the club Croesyceiliog rfc have? | CREATE TABLE table_name_24 (tries_for VARCHAR, club VARCHAR) | SELECT tries_for FROM table_name_24 WHERE club = "croesyceiliog rfc" | ### Context: CREATE TABLE table_name_24 (tries_for VARCHAR, club VARCHAR) ### Question: How many tries did the club Croesyceiliog rfc have? ### Answer: SELECT tries_for FROM table_name_24 WHERE club = "croesyceiliog rfc" |
What is the value of D 42 β, when the value of D 45 O is d 32 β? | CREATE TABLE table_name_47 (d_42_β VARCHAR, d_45_o VARCHAR) | SELECT d_42_β FROM table_name_47 WHERE d_45_o = "d 32 β" | ### Context: CREATE TABLE table_name_47 (d_42_β VARCHAR, d_45_o VARCHAR) ### Question: What is the value of D 42 β, when the value of D 45 O is d 32 β? ### Answer: SELECT d_42_β FROM table_name_47 WHERE d_45_o = "d 32 β" |
What is the value of D 45 O when the value of D 44 O is β majority? | CREATE TABLE table_name_67 (d_45_o VARCHAR, d_44_o VARCHAR) | SELECT d_45_o FROM table_name_67 WHERE d_44_o = "β majority" | ### Context: CREATE TABLE table_name_67 (d_45_o VARCHAR, d_44_o VARCHAR) ### Question: What is the value of D 45 O when the value of D 44 O is β majority? ### Answer: SELECT d_45_o FROM table_name_67 WHERE d_44_o = "β majority" |
What is the value of D 43 β when the value of D 42 β is d 42 β? | CREATE TABLE table_name_58 (d_43_β VARCHAR, d_42_β VARCHAR) | SELECT d_43_β FROM table_name_58 WHERE d_42_β = "d 42 β" | ### Context: CREATE TABLE table_name_58 (d_43_β VARCHAR, d_42_β VARCHAR) ### Question: What is the value of D 43 β when the value of D 42 β is d 42 β? ### Answer: SELECT d_43_β FROM table_name_58 WHERE d_42_β = "d 42 β" |
What is the value of D 45 O, when the value of D 41 β is r 41 β? | CREATE TABLE table_name_60 (d_45_o VARCHAR, d_41_β VARCHAR) | SELECT d_45_o FROM table_name_60 WHERE d_41_β = "r 41 β" | ### Context: CREATE TABLE table_name_60 (d_45_o VARCHAR, d_41_β VARCHAR) ### Question: What is the value of D 45 O, when the value of D 41 β is r 41 β? ### Answer: SELECT d_45_o FROM table_name_60 WHERE d_41_β = "r 41 β" |
What is the average number of wins of drivers from Sweden? | CREATE TABLE table_name_51 (driver_wins INTEGER, nation VARCHAR) | SELECT AVG(driver_wins) FROM table_name_51 WHERE nation = "sweden" | ### Context: CREATE TABLE table_name_51 (driver_wins INTEGER, nation VARCHAR) ### Question: What is the average number of wins of drivers from Sweden? ### Answer: SELECT AVG(driver_wins) FROM table_name_51 WHERE nation = "sweden" |
How many gold are a rank 1 and larger than 16? | CREATE TABLE table_name_56 (gold VARCHAR, rank VARCHAR, total VARCHAR) | SELECT COUNT(gold) FROM table_name_56 WHERE rank = "1" AND total > 16 | ### Context: CREATE TABLE table_name_56 (gold VARCHAR, rank VARCHAR, total VARCHAR) ### Question: How many gold are a rank 1 and larger than 16? ### Answer: SELECT COUNT(gold) FROM table_name_56 WHERE rank = "1" AND total > 16 |
How many total gold are less than 4? | CREATE TABLE table_name_14 (gold VARCHAR, total INTEGER) | SELECT COUNT(gold) FROM table_name_14 WHERE total < 4 | ### Context: CREATE TABLE table_name_14 (gold VARCHAR, total INTEGER) ### Question: How many total gold are less than 4? ### Answer: SELECT COUNT(gold) FROM table_name_14 WHERE total < 4 |
What is the total gold that has bronze less than 2, a silver of 1 and total more than 4? | CREATE TABLE table_name_32 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR) | SELECT SUM(gold) FROM table_name_32 WHERE bronze < 2 AND silver = 1 AND total > 4 | ### Context: CREATE TABLE table_name_32 (gold INTEGER, total VARCHAR, bronze VARCHAR, silver VARCHAR) ### Question: What is the total gold that has bronze less than 2, a silver of 1 and total more than 4? ### Answer: SELECT SUM(gold) FROM table_name_32 WHERE bronze < 2 AND silver = 1 AND total > 4 |
Name the least runners with dist of 10.5 | CREATE TABLE table_name_34 (runners INTEGER, dist__f_ VARCHAR) | SELECT MIN(runners) FROM table_name_34 WHERE dist__f_ = 10.5 | ### Context: CREATE TABLE table_name_34 (runners INTEGER, dist__f_ VARCHAR) ### Question: Name the least runners with dist of 10.5 ### Answer: SELECT MIN(runners) FROM table_name_34 WHERE dist__f_ = 10.5 |
Name the runners for longchamp | CREATE TABLE table_name_88 (runners VARCHAR, course VARCHAR) | SELECT runners FROM table_name_88 WHERE course = "longchamp" | ### Context: CREATE TABLE table_name_88 (runners VARCHAR, course VARCHAR) ### Question: Name the runners for longchamp ### Answer: SELECT runners FROM table_name_88 WHERE course = "longchamp" |
What is the year with 116 laps? | CREATE TABLE table_name_48 (year VARCHAR, laps VARCHAR) | SELECT year FROM table_name_48 WHERE laps = 116 | ### Context: CREATE TABLE table_name_48 (year VARCHAR, laps VARCHAR) ### Question: What is the year with 116 laps? ### Answer: SELECT year FROM table_name_48 WHERE laps = 116 |
What year has a finish of 19? | CREATE TABLE table_name_92 (year VARCHAR, finish VARCHAR) | SELECT year FROM table_name_92 WHERE finish = "19" | ### Context: CREATE TABLE table_name_92 (year VARCHAR, finish VARCHAR) ### Question: What year has a finish of 19? ### Answer: SELECT year FROM table_name_92 WHERE finish = "19" |
How many Silver medals were won in total by all those with more than 3 bronze and exactly 16 gold? | CREATE TABLE table_name_50 (silver INTEGER, bronze VARCHAR, gold VARCHAR) | SELECT SUM(silver) FROM table_name_50 WHERE bronze > 3 AND gold = 16 | ### Context: CREATE TABLE table_name_50 (silver INTEGER, bronze VARCHAR, gold VARCHAR) ### Question: How many Silver medals were won in total by all those with more than 3 bronze and exactly 16 gold? ### Answer: SELECT SUM(silver) FROM table_name_50 WHERE bronze > 3 AND gold = 16 |
Which opponent has a loss of wells (1-3)? | CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR) | SELECT opponent FROM table_name_95 WHERE loss = "wells (1-3)" | ### Context: CREATE TABLE table_name_95 (opponent VARCHAR, loss VARCHAR) ### Question: Which opponent has a loss of wells (1-3)? ### Answer: SELECT opponent FROM table_name_95 WHERE loss = "wells (1-3)" |
What is the largest attendance that has tigers as the opponent and a loss of leiter (0-1)? | CREATE TABLE table_name_75 (attendance INTEGER, opponent VARCHAR, loss VARCHAR) | SELECT MAX(attendance) FROM table_name_75 WHERE opponent = "tigers" AND loss = "leiter (0-1)" | ### Context: CREATE TABLE table_name_75 (attendance INTEGER, opponent VARCHAR, loss VARCHAR) ### Question: What is the largest attendance that has tigers as the opponent and a loss of leiter (0-1)? ### Answer: SELECT MAX(attendance) FROM table_name_75 WHERE opponent = "tigers" AND loss = "leiter (0-1)" |
Which party has Peter A. Quinn as a representative? | CREATE TABLE table_name_44 (party VARCHAR, representative VARCHAR) | SELECT party FROM table_name_44 WHERE representative = "peter a. quinn" | ### Context: CREATE TABLE table_name_44 (party VARCHAR, representative VARCHAR) ### Question: Which party has Peter A. Quinn as a representative? ### Answer: SELECT party FROM table_name_44 WHERE representative = "peter a. quinn" |
Which state does Jimmy Quillen represent? | CREATE TABLE table_name_32 (state VARCHAR, representative VARCHAR) | SELECT state FROM table_name_32 WHERE representative = "jimmy quillen" | ### Context: CREATE TABLE table_name_32 (state VARCHAR, representative VARCHAR) ### Question: Which state does Jimmy Quillen represent? ### Answer: SELECT state FROM table_name_32 WHERE representative = "jimmy quillen" |
What is the lifespan of the democratic party in New York, for which Terence J. Quinn is a representative? | CREATE TABLE table_name_21 (lifespan VARCHAR, representative VARCHAR, party VARCHAR, state VARCHAR) | SELECT lifespan FROM table_name_21 WHERE party = "democratic" AND state = "new york" AND representative = "terence j. quinn" | ### Context: CREATE TABLE table_name_21 (lifespan VARCHAR, representative VARCHAR, party VARCHAR, state VARCHAR) ### Question: What is the lifespan of the democratic party in New York, for which Terence J. Quinn is a representative? ### Answer: SELECT lifespan FROM table_name_21 WHERE party = "democratic" AND state = "... |
Tell me what the notes are for South Australia | CREATE TABLE table_1000181_1 (notes VARCHAR, current_slogan VARCHAR) | SELECT notes FROM table_1000181_1 WHERE current_slogan = "SOUTH AUSTRALIA" | ### Context: CREATE TABLE table_1000181_1 (notes VARCHAR, current_slogan VARCHAR) ### Question: Tell me what the notes are for South Australia ### Answer: SELECT notes FROM table_1000181_1 WHERE current_slogan = "SOUTH AUSTRALIA" |
What is the current series where the new series began in June 2011? | CREATE TABLE table_1000181_1 (current_series VARCHAR, notes VARCHAR) | SELECT current_series FROM table_1000181_1 WHERE notes = "New series began in June 2011" | ### Context: CREATE TABLE table_1000181_1 (current_series VARCHAR, notes VARCHAR) ### Question: What is the current series where the new series began in June 2011? ### Answer: SELECT current_series FROM table_1000181_1 WHERE notes = "New series began in June 2011" |
What is the format for South Australia? | CREATE TABLE table_1000181_1 (format VARCHAR, state_territory VARCHAR) | SELECT format FROM table_1000181_1 WHERE state_territory = "South Australia" | ### Context: CREATE TABLE table_1000181_1 (format VARCHAR, state_territory VARCHAR) ### Question: What is the format for South Australia? ### Answer: SELECT format FROM table_1000181_1 WHERE state_territory = "South Australia" |
Name the background colour for the Australian Capital Territory | CREATE TABLE table_1000181_1 (text_background_colour VARCHAR, state_territory VARCHAR) | SELECT text_background_colour FROM table_1000181_1 WHERE state_territory = "Australian Capital Territory" | ### Context: CREATE TABLE table_1000181_1 (text_background_colour VARCHAR, state_territory VARCHAR) ### Question: Name the background colour for the Australian Capital Territory ### Answer: SELECT text_background_colour FROM table_1000181_1 WHERE state_territory = "Australian Capital Territory" |
how many times is the fuel propulsion is cng? | CREATE TABLE table_10007452_3 (fleet_series__quantity_ VARCHAR, fuel_propulsion VARCHAR) | SELECT COUNT(fleet_series__quantity_) FROM table_10007452_3 WHERE fuel_propulsion = "CNG" | ### Context: CREATE TABLE table_10007452_3 (fleet_series__quantity_ VARCHAR, fuel_propulsion VARCHAR) ### Question: how many times is the fuel propulsion is cng? ### Answer: SELECT COUNT(fleet_series__quantity_) FROM table_10007452_3 WHERE fuel_propulsion = "CNG" |
what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)? | CREATE TABLE table_10007452_3 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR) | SELECT fuel_propulsion FROM table_10007452_3 WHERE fleet_series__quantity_ = "310-329 (20)" | ### Context: CREATE TABLE table_10007452_3 (fuel_propulsion VARCHAR, fleet_series__quantity_ VARCHAR) ### Question: what is the fuel propulsion where the fleet series (quantity) is 310-329 (20)? ### Answer: SELECT fuel_propulsion FROM table_10007452_3 WHERE fleet_series__quantity_ = "310-329 (20)" |
who is the manufacturer for the order year 1998? | CREATE TABLE table_10007452_3 (manufacturer VARCHAR, order_year VARCHAR) | SELECT manufacturer FROM table_10007452_3 WHERE order_year = "1998" | ### Context: CREATE TABLE table_10007452_3 (manufacturer VARCHAR, order_year VARCHAR) ### Question: who is the manufacturer for the order year 1998? ### Answer: SELECT manufacturer FROM table_10007452_3 WHERE order_year = "1998" |
how many times is the model ge40lfr? | CREATE TABLE table_10007452_3 (manufacturer VARCHAR, model VARCHAR) | SELECT COUNT(manufacturer) FROM table_10007452_3 WHERE model = "GE40LFR" | ### Context: CREATE TABLE table_10007452_3 (manufacturer VARCHAR, model VARCHAR) ### Question: how many times is the model ge40lfr? ### Answer: SELECT COUNT(manufacturer) FROM table_10007452_3 WHERE model = "GE40LFR" |
how many times is the fleet series (quantity) is 468-473 (6)? | CREATE TABLE table_10007452_3 (order_year VARCHAR, fleet_series__quantity_ VARCHAR) | SELECT COUNT(order_year) FROM table_10007452_3 WHERE fleet_series__quantity_ = "468-473 (6)" | ### Context: CREATE TABLE table_10007452_3 (order_year VARCHAR, fleet_series__quantity_ VARCHAR) ### Question: how many times is the fleet series (quantity) is 468-473 (6)? ### Answer: SELECT COUNT(order_year) FROM table_10007452_3 WHERE fleet_series__quantity_ = "468-473 (6)" |
what is the powertrain (engine/transmission) when the order year is 2000? | CREATE TABLE table_10007452_3 (powertrain__engine_transmission_ VARCHAR, order_year VARCHAR) | SELECT powertrain__engine_transmission_ FROM table_10007452_3 WHERE order_year = "2000" | ### Context: CREATE TABLE table_10007452_3 (powertrain__engine_transmission_ VARCHAR, order_year VARCHAR) ### Question: what is the powertrain (engine/transmission) when the order year is 2000? ### Answer: SELECT powertrain__engine_transmission_ FROM table_10007452_3 WHERE order_year = "2000" |
What if the description of a ch-47d chinook? | CREATE TABLE table_10006830_1 (description VARCHAR, aircraft VARCHAR) | SELECT description FROM table_10006830_1 WHERE aircraft = "CH-47D Chinook" | ### Context: CREATE TABLE table_10006830_1 (description VARCHAR, aircraft VARCHAR) ### Question: What if the description of a ch-47d chinook? ### Answer: SELECT description FROM table_10006830_1 WHERE aircraft = "CH-47D Chinook" |
What is the max gross weight of the Robinson R-22? | CREATE TABLE table_10006830_1 (max_gross_weight VARCHAR, aircraft VARCHAR) | SELECT max_gross_weight FROM table_10006830_1 WHERE aircraft = "Robinson R-22" | ### Context: CREATE TABLE table_10006830_1 (max_gross_weight VARCHAR, aircraft VARCHAR) ### Question: What is the max gross weight of the Robinson R-22? ### Answer: SELECT max_gross_weight FROM table_10006830_1 WHERE aircraft = "Robinson R-22" |
What school did player number 6 come from? | CREATE TABLE table_10015132_1 (school_club_team VARCHAR, no VARCHAR) | SELECT school_club_team FROM table_10015132_1 WHERE no = "6" | ### Context: CREATE TABLE table_10015132_1 (school_club_team VARCHAR, no VARCHAR) ### Question: What school did player number 6 come from? ### Answer: SELECT school_club_team FROM table_10015132_1 WHERE no = "6" |
What school did the player that has been in Toronto from 2012-present come from? | CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR) | SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = "2012-present" | ### Context: CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR) ### Question: What school did the player that has been in Toronto from 2012-present come from? ### Answer: SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = "2012-present" |
What school did the player that has been in Toronto from 2010-2012 go to? | CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR) | SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = "2010-2012" | ### Context: CREATE TABLE table_10015132_1 (school_club_team VARCHAR, years_in_toronto VARCHAR) ### Question: What school did the player that has been in Toronto from 2010-2012 go to? ### Answer: SELECT school_club_team FROM table_10015132_1 WHERE years_in_toronto = "2010-2012" |
What position did the player from Baylor play? | CREATE TABLE table_10015132_1 (position VARCHAR, school_club_team VARCHAR) | SELECT position FROM table_10015132_1 WHERE school_club_team = "Baylor" | ### Context: CREATE TABLE table_10015132_1 (position VARCHAR, school_club_team VARCHAR) ### Question: What position did the player from Baylor play? ### Answer: SELECT position FROM table_10015132_1 WHERE school_club_team = "Baylor" |
Who played in the Toronto Raptors from 1995-96? | CREATE TABLE table_10015132_14 (player VARCHAR, years_in_toronto VARCHAR) | SELECT player FROM table_10015132_14 WHERE years_in_toronto = "1995-96" | ### Context: CREATE TABLE table_10015132_14 (player VARCHAR, years_in_toronto VARCHAR) ### Question: Who played in the Toronto Raptors from 1995-96? ### Answer: SELECT player FROM table_10015132_14 WHERE years_in_toronto = "1995-96" |
Which number was Patrick O'Bryant? | CREATE TABLE table_10015132_14 (no VARCHAR, player VARCHAR) | SELECT no FROM table_10015132_14 WHERE player = "Patrick O'Bryant" | ### Context: CREATE TABLE table_10015132_14 (no VARCHAR, player VARCHAR) ### Question: Which number was Patrick O'Bryant? ### Answer: SELECT no FROM table_10015132_14 WHERE player = "Patrick O'Bryant" |
What school did Patrick O'Bryant play for? | CREATE TABLE table_10015132_14 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_10015132_14 WHERE player = "Patrick O'Bryant" | ### Context: CREATE TABLE table_10015132_14 (school_club_team VARCHAR, player VARCHAR) ### Question: What school did Patrick O'Bryant play for? ### Answer: SELECT school_club_team FROM table_10015132_14 WHERE player = "Patrick O'Bryant" |
How many number does Fordham school have? | CREATE TABLE table_10015132_14 (no VARCHAR, school_club_team VARCHAR) | SELECT COUNT(no) FROM table_10015132_14 WHERE school_club_team = "Fordham" | ### Context: CREATE TABLE table_10015132_14 (no VARCHAR, school_club_team VARCHAR) ### Question: How many number does Fordham school have? ### Answer: SELECT COUNT(no) FROM table_10015132_14 WHERE school_club_team = "Fordham" |
Which school was in Toronto in 2001-02? | CREATE TABLE table_10015132_14 (school_club_team VARCHAR, years_in_toronto VARCHAR) | SELECT school_club_team FROM table_10015132_14 WHERE years_in_toronto = "2001-02" | ### Context: CREATE TABLE table_10015132_14 (school_club_team VARCHAR, years_in_toronto VARCHAR) ### Question: Which school was in Toronto in 2001-02? ### Answer: SELECT school_club_team FROM table_10015132_14 WHERE years_in_toronto = "2001-02" |
Which school did the player that played 2004-05 attend? | CREATE TABLE table_10015132_21 (school_club_team VARCHAR, years_in_toronto VARCHAR) | SELECT school_club_team FROM table_10015132_21 WHERE years_in_toronto = "2004-05" | ### Context: CREATE TABLE table_10015132_21 (school_club_team VARCHAR, years_in_toronto VARCHAR) ### Question: Which school did the player that played 2004-05 attend? ### Answer: SELECT school_club_team FROM table_10015132_21 WHERE years_in_toronto = "2004-05" |
Which position does Loren Woods play? | CREATE TABLE table_10015132_21 (position VARCHAR, player VARCHAR) | SELECT position FROM table_10015132_21 WHERE player = "Loren Woods" | ### Context: CREATE TABLE table_10015132_21 (position VARCHAR, player VARCHAR) ### Question: Which position does Loren Woods play? ### Answer: SELECT position FROM table_10015132_21 WHERE player = "Loren Woods" |
What number is the player that played 1998-2001 | CREATE TABLE table_10015132_21 (no INTEGER, years_in_toronto VARCHAR) | SELECT MIN(no) FROM table_10015132_21 WHERE years_in_toronto = "1998-2001" | ### Context: CREATE TABLE table_10015132_21 (no INTEGER, years_in_toronto VARCHAR) ### Question: What number is the player that played 1998-2001 ### Answer: SELECT MIN(no) FROM table_10015132_21 WHERE years_in_toronto = "1998-2001" |
Which country is the player that went to Georgetown from? | CREATE TABLE table_10015132_21 (nationality VARCHAR, school_club_team VARCHAR) | SELECT nationality FROM table_10015132_21 WHERE school_club_team = "Georgetown" | ### Context: CREATE TABLE table_10015132_21 (nationality VARCHAR, school_club_team VARCHAR) ### Question: Which country is the player that went to Georgetown from? ### Answer: SELECT nationality FROM table_10015132_21 WHERE school_club_team = "Georgetown" |
Which school did Herb Williams go to? | CREATE TABLE table_10015132_21 (school_club_team VARCHAR, player VARCHAR) | SELECT school_club_team FROM table_10015132_21 WHERE player = "Herb Williams" | ### Context: CREATE TABLE table_10015132_21 (school_club_team VARCHAR, player VARCHAR) ### Question: Which school did Herb Williams go to? ### Answer: SELECT school_club_team FROM table_10015132_21 WHERE player = "Herb Williams" |
When did the player from Hawaii play for Toronto? | CREATE TABLE table_10015132_3 (years_in_toronto VARCHAR, school_club_team VARCHAR) | SELECT years_in_toronto FROM table_10015132_3 WHERE school_club_team = "Hawaii" | ### Context: CREATE TABLE table_10015132_3 (years_in_toronto VARCHAR, school_club_team VARCHAR) ### Question: When did the player from Hawaii play for Toronto? ### Answer: SELECT years_in_toronto FROM table_10015132_3 WHERE school_club_team = "Hawaii" |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.