question
stringlengths
12
244
context
stringlengths
27
489
answer
dict
What is the rank of player Jason Dunstall?
CREATE TABLE table_name_55 (rank VARCHAR, player VARCHAR)
{ "SQL_Query": "SELECT rank FROM table_name_55 WHERE player = \"jason dunstall\"" }
Which player has 1299 goals?
CREATE TABLE table_name_6 (player VARCHAR, goals VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT score FROM table_name_28 WHERE country = \"spain\"" }
Where is Fred Couples from?
CREATE TABLE table_name_71 (country VARCHAR, player VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MAX(touchdowns) FROM table_name_77 WHERE points < 105 AND average > 4.7 AND rushing_yards < 487" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT MIN(points) FROM table_name_66 WHERE losses < 8 AND team_name = \"vancouver burrards\" AND games < 24" }
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)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_1 WHERE losses < 12 AND team_name = \"vancouver carlings\" AND games > 32" }
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)
{ "SQL_Query": "SELECT COUNT(points) FROM table_name_18 WHERE losses < 9 AND games > 24 AND team_name = \"vancouver burrards\"" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT COUNT(losses) FROM table_name_8 WHERE team_name = \"vancouver burrards\" AND season = \"1947\" AND games < 24" }
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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT lifespan FROM table_name_21 WHERE party = \"democratic\" AND state = \"new york\" AND representative = \"terence j. quinn\"" }
Tell me what the notes are for South Australia
CREATE TABLE table_1000181_1 (notes VARCHAR, current_slogan VARCHAR)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "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)
{ "SQL_Query": "SELECT years_in_toronto FROM table_10015132_3 WHERE school_club_team = \"Hawaii\"" }